Created
August 24, 2010 18:14
-
-
Save sri/548021 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How to access Clipboard data in Windows from Python 3 | |
def win32_clipboard(): | |
import ctypes | |
ctypes.windll.user32.OpenClipboard(None) | |
pc = ctypes.windll.user32.GetClipboardData(1) | |
return ctypes.c_char_p(pc).value | |
def win32_clipboard_paste(txt): | |
import ctypes | |
ctypes.windll.user32.OpenClipboard(None) | |
ctypes.windll.user32.EmptyClipboard() | |
hcd = ctypes.windll.kernel32.GlobalAlloc(0x2000, len(bytes(txt, 'ascii'))+1) | |
pd = ctypes.windll.kernel32.GlobalLock(hcd) | |
ctypes.cdll.msvcrt.strcpy(ctypes.c_char_p(pd), bytes(txt,"ascii")) | |
ctypes.windll.kernel32.GlobalUnlock(hcd) | |
ctypes.windll.user32.SetClipboardData(1, hcd) | |
ctypes.windll.user32.CloseClipboard(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to access Clipboard data in Windows from Python 3