Tagged Questions
1
vote
1answer
41 views
Is it possible to queue sendkey commands in Windows?
We are writing a Python application that relies on copying and pasting content from the top windows.
To do that we issue sendkey commands:
Ctrl-Esc for going to the previous windows
Ctrl-A followed ...
1
vote
1answer
25 views
Curly brackets when using clipboard_append
So I was writing a program that converts MM to inches, RA surface finishes to MM, and can also convert tolerances for dimensions from MM to inches. This is actually my first project I took on in ...
0
votes
2answers
104 views
Using tkinter to watch for clipboard,what's wrong with my code?
Some description about the code:
This is part of my program and I only put the related lines here
What I hope these code could do,is to watch for my clipboard.If I copy "http:xxx" to my clipboard,it ...
0
votes
0answers
73 views
copy image to clipboard in python
the question is:
i have a JPG file. i want to use python to copy that image to clip board. how ?
if you give me a link about image objects in python , it would be appreciated.
thanks
p.s. : system ...
0
votes
1answer
48 views
Effect of PyGTK clipboard set_text persists only while process is running
I have the following script clip-test.py:
#!/usr/bin/python
import gtk
gtk.Clipboard().set_text("exciting clipboard contents")
gtk.Clipboard().set_can_store(None) # not sure if these last two lines ...
0
votes
0answers
75 views
Python: Copy vector image to the clipboard
I'm trying to use the win32all package to copy a vector image (a plot generated using matplotlib) to the Windows clipboard. It looks like you should do it like this:
s = StringIO.StringIO()
f = ...
1
vote
2answers
180 views
Trigger an event when clipboard content changes
I'm trying to get the clipboard content using a Python script on my Mac Lion.
I'm searching for an event or something similar, because if I use a loop, my application spends all its time watching the ...
0
votes
0answers
67 views
Why the image is not in the clipboard
I used this Python script (inspired here)
#! /usr/bin/python
import pygtk
pygtk.require('2.0')
import gtk
import os
import sys
def copy_image(f):
assert os.path.exists(f), "file does not exist"
...
2
votes
0answers
66 views
pd.read_clipboard() seg fault
I cannot seem to use read_clipboard(). I have tried copying some of my data, the example data in the docs, and finally just the number 1. As you can see:
In [1]: %paste
1
## -- End pasted text --
...
0
votes
0answers
68 views
Can Python figure out (access some sort of trigger) when I 'paste' in Windows?
I want to be able to do the following: when I paste, i want the clipboard values to be changed for the next paste. I want to use Python.
Example:
Let's say I append to clipboard:
...
0
votes
2answers
131 views
Python win32clipboard data being truncated
I am using a Python module called ObjectListView as an addition to wxPython. I'm using python2.7 and wxPython 2.8.1.2.1
My problem is copying information to the windows clipboard. The module ...
4
votes
1answer
127 views
python and gtk3 clipboard onChange
With PyGTK 2 I could attach a function to be executed when the contents of the clipboard was changed. Browsing through the documentation of GTK3's python bindings I can not find any description of ...
1
vote
1answer
152 views
Copy Webpage to Clipboard automatically
Is it posible to copy a web page (whatever I see, not the source) onto a clipboard automatically (without using ctrl+c), using python / javascript.
Thanks in advance :)
2
votes
2answers
1k views
Python script to copy text to clipboard
I just need a python script that copies text to the clipboard.
After the script gets executed i need the output of the text to be pasted to another source.
Is it possible to write a python script ...
5
votes
2answers
368 views
Storing a file in the clipboard in python
Is there a way to use the win32clipboard module to store a reference to a file in the windows clipboard in python. My goal is to paste an image in a way that allows transparency. If I drag and drop ...
1
vote
2answers
302 views
python Gtk.Clipboard.get() gtk3 return value differs
I want to convert Gtk.Clipboard.get() return value to utf-8.
gtk3
from gi.repository import Gtk, Gdk
def main():
clip = Gtk.Clipboard.get (Gdk.SELECTION_PRIMARY)
text=clip.wait_for_text ()
...
1
vote
1answer
113 views
Clipboard.Flush() always fails in wxpython app
In the EVT_CLOSE handler of a wxpython app, I'm trying to flush the clipboard to leave the copied text available to other applications. However, the Flush() method always returns false.
Example:
cp ...
0
votes
1answer
312 views
Is there a way in python or vbscript or .bat to copy text from clipboard and write to a file in utf-8 encoding? [duplicate]
Possible Duplicate:
How do I read text from the (windows) clipboard from python?
Is there a way in python or vb or .bat to copy text from clipboard and write to a file in utf-8 encoding?
1
vote
2answers
215 views
How to get content with format from clipboard
guys.
When i copy some words from internet using Chrome and paste to the Office Words, Words remind me that I can paste the words keeping source format.
That means clipboard can contain both the ...
1
vote
2answers
432 views
Clear Clipboard?
Is it possible for python to clear the clipboard? If so ... how can I do it?
I need this so in my quiz program, students can't copy paste answers from the internet and other files.
EDIT: Im using ...
1
vote
1answer
428 views
Troubles with clipboard in Python
I'm learning Python right now and I want to write some script that will helps me with work. The idea is: while True: read some string from clipboard, modify it then return it into the clipboard then ...
1
vote
1answer
126 views
Writing a clipboard manager using wxpython?
Current state: I have a tray icon, two context menus - one for about/options/exit/etc. on right-click and one on left-click for clipboard management.
One thing I'm not sure of is how to sync ...
3
votes
1answer
125 views
How to checking if windows clipboard completed the operation of copying, pasting.
Our python program on Windows needs to know when copying or pasting is complete.
The time depends on the amount of data and the state of computer, etc.
We want our program to sleep until copying or ...
2
votes
4answers
893 views
Copy data from the clipboard on Linux, Mac and Windows with a single Python script
I am trying to create a script in Python that will collect data put in the clipboard by the user and preferably save it as a list or in a text file or string/array/variable to work with later on.
...
5
votes
3answers
2k views
Is there a way to directly send a python output to clipboard?
For example, if a python script will spit out a string giving the path of a newly written file that I'm going to edit immediately after running the script, it would be very nice to have it directly ...
1
vote
1answer
399 views
How to get selected text with xsel - Python
I need a python script, which will get selected text in an other application with xsel, and then store it in a var.
Thanks
4
votes
4answers
1k views
Python get mac clipboard contents
How can I, using Python (2.7) get the contents of the Mac clipboard. Is there a better way than making a wrapper around pbpaste?
Thanks!
0
votes
0answers
247 views
Python get selected text
How would I, using Python "catch" text that a user has selecting in, for example, a web browser? The script would idle in the background, and when a certain key combination is pressed, it "gets" the ...
2
votes
2answers
139 views
Is it OK to pass complex data structures through the clipboard with wxPython?
I'd like my wxPython application to support cut/copy/paste operations between different running instances of the application. Is it OK to simply pickle a data structure, copy it to clipboard as text, ...
0
votes
2answers
179 views
How to put an image from python to klipper?
Using python, one can read in an image:
from PIL import Image, ImageTk
image = Image.open("test.jpg")
Then one can write to klipper in the following way:
import dbus
bus = dbus.SessionBus()
proxy ...
1
vote
2answers
408 views
get selected text in an other application
I want to have a python script, which will "idle" until some text is selected in an other desktop app, and then store it in a var. Eg:
User goes into Safari
User selects a block of text
In the ...
0
votes
1answer
256 views
Please suggest how to write a text from webpage text box to clipboard
I have a text box in the webpage, a text in that text box i need that to be sent to the clipboard of ubuntu how do i do that? I'm using python CGI, Please suggest me a link or Idea to proceed.
Thank ...
2
votes
4answers
912 views
Access clipboard Windows (7) 64-bit
Is there a way to access (set, read etc.) the clipboard on Windows 7 64-bit in Python? I have seen PyWin32 but as far as I could see that was only 32-bit.
1
vote
1answer
408 views
Why does this valid Tkinter code crash when mixed with a bit of PyWin32?
So I'm making a very small program for personal use in tkinter, and I've run into a really strange wall. I'm mixing tkinter with the pywin32 bindings because I really hate everything to do with the ...
8
votes
2answers
4k views
Python Copy text to clipboard [Platform Independent]
I am trying to write a function that copies a string parameter to the clipboard. I intend to use this in a python shell script I've been working on. This is what I have so far (Found most this snippet ...
0
votes
2answers
486 views
Python/Tkinter: Building a toolbar that provides edit cut, copy, paste commands
I'm looking for suggestions on how one might implement a toolbar that provides edit cut, copy, paste commands using the Tkinter framework. I understand how to build a toolbar and bind the toolbar ...
3
votes
3answers
1k views
How can Python access the X11 clipboard?
I want my Python script to be able to copy and paste to/from the clipboard via x11 (so that it will work on Linux). Can anyone point me to specific resources I can look at, or the concepts I would ...
1
vote
1answer
457 views
why does my pygtk application crash when copying text on a clipboard?
I'm writing a python application using pygtk. I have a main thread who occasionally calls another thread that is supposed to build a string and then copy it on the clipboard before dying. My "slave" ...
5
votes
1answer
873 views
How to make a simple clipboard monitor in python
I was wondering how to make a simple Clipboard Monitor in python, for GUI I'm using PyGTK.
I found gtk.clipboard class and all that but I couldn't find any solution to get the "signals" to trigger the ...
3
votes
4answers
3k views
Copy string - Python
Ok guys I imagine this is easy but I can't seem to find how to copy a string. Simply COPY to the system like CTRL+C on a text.
Basically I want to copy a string so I can for example, lets say, ...
3
votes
1answer
794 views
Handling spreadsheet data through the clipboard in GTK
I'm using a GtkSheet widget in PyGTK to power my application's spreadsheet, and it gives me an API to pull and push data out of cells. (I looked at using GtkTreeView, but it seemed to be too much ...
2
votes
1answer
511 views
How can I disable clear of clipboard on exit of PyQt4 application?
I have a simple PyQt4 application (see the code below) that reveals next problem: if I select the text from QLineEdit and copy it to clipboard then I can paste it to another application only while my ...
2
votes
4answers
341 views
Send selected text to a command line argument
I found this utility, pytranslate, which translates a variety of languages into each other using Google's translation API. It works exactly as described.
However I've gotten sick of selecting a word ...
9
votes
4answers
2k views
Can python send text to the Mac clipboard
I'd like my python program to place some text in the Mac clipboard.
Is this possible?
0
votes
1answer
745 views
How can I access the iphone / ipod clipboard using python?
I want to modify a python application written for the ipod/iphone.
It should copy a string into the clipboard so that I can use it in another application.
Is it possible to access the iphone clipboard ...
0
votes
1answer
844 views
Accessing Clipboard in Python version 3.1
I want to access the clipboard using Python 3.1. I've obviously come across win32clipboard, but it requires pywin32 and in its site I only found download versions for up to Python 2.13 or so.
Bottom ...
4
votes
2answers
2k views
PyQt clipboard doesn't copy to system clipboard
The following snippet of code doesn't seem to affect the system clipboard at all:
clipboard = QtGui.QApplication.clipboard()
clipboard.setText(text)
According to the Qt documentation, this is how ...
1
vote
1answer
193 views
What signals should I catch for clipboard pasting and character insertion in GTK?
I have a Window with a TextView, and I would like to perform some actions when the user pastes some text.
I would also like to know what signal(s) should I catch in order to perform something when ...
30
votes
5answers
16k views
How do I copy a string to the clipboard on Windows using Python?
Hey there, I'm kind of new to Python and I'm trying to make a basic application that builds a string out of user input then adds it to the win32 clipboard. I'm having a problem passing the string to ...
3
votes
2answers
1k views
How to copy a picture from canvas to clipboard?
I have some Tkinter canvas and some picture of lines and text on it. Is there an easy way to copy it to a clipboard?
