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 sent to the system clipboard rather than STDOUT
.
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
You can use an external program,
xsel
:With
xsel
, you can set the clipboard you want to work on.-p
works with thePRIMARY
selection. That's the middle click one.-s
works with theSECONDARY
selection. I don't know if this is used anymore.-b
works with theCLIPBOARD
selection. That's yourCtrl + V
one.Read more about X's clipboards here and here.
A quick and dirty function I created to handle this:
You can also try pyGTK's
clipboard
:This works with the
Ctrl + V
selection for me.As others have pointed out this is not "Python and batteries" as it involves GUI operations. So It is platform dependent. If you are on windows you can use win32 Python Module and Access win32 clipboard operations. My suggestion though would be picking up one GUI toolkit (PyQT/PySide for QT, PyGTK for GTK+ or wxPython for wxWidgets). Then use the clipboard operations. If you don’t need the heavy weight things of toolkits then make your wrapper which will use win32 package on windows and whatever is available on other platform and switch accordingly!
For wxPython here are some helpful links:
http://www.wxpython.org/docs/api/wx.Clipboard-class.html
http://wiki.wxpython.org/ClipBoard
http://www.python-forum.org/pythonforum/viewtopic.php?f=1&t=25549
As it was posted in another answer, if you want to solve that within python, you can use Pyperclip which has the added benefit of being cross-platform.
This is not really a Python question but a shell question. You already can send the output of a Python script (or any command) to the clipboard instead of standard out, by piping the output of the Python script into the
xclip
command.If
xclip
is not already installed on your system (it isn't by default), this is how you get it:If you wanted to do it directly from your Python script I guess you could shell out and run the xclip command using
os.system()
which is simple but deprecated. There are a number of ways to do this (see thesubprocess
module for the current official way). The command you'd want to execute is something like:Bonus: Under Mac OS X, you can do the same thing by piping into
pbcopy
.