How do I read text from the (windows) clipboard from python?
|
1
|
|
|
|
|
|
You can use the module called win32clipboard (see documentation at http://docs.activestate.com/activepython/2.5/pywin32/win32clipboard.html) some Examples:
|
||
|
|
|
|
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/ |
||
|
|
