vote up 4 vote down star
1

How do I read text from the (windows) clipboard from python?

flag

2 Answers

vote up 6 vote down check

You can use the module called win32clipboard (see documentation at http://docs.activestate.com/activepython/2.5/pywin32/win32clipboard.html)

some Examples:

import win32clipboard

win32clipboard.OpenClipboard()
win32clipboard.EmptyClipboard()
data = win32clipboard.GetClipboardData()
win32clipboard.SetClipboardText(text)
win32clipboard.CloseClipboard()
link|flag
vote up 0 vote down

Try win32clipboard from the win32all package (that's probably installed if you're on ActiveState Python).

See sample here: http://code.activestate.com/recipes/474121/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.