Skip to content

Instantly share code, notes, and snippets.

@sri
Created August 24, 2010 18:14
Show Gist options
  • Save sri/548021 to your computer and use it in GitHub Desktop.
Save sri/548021 to your computer and use it in GitHub Desktop.
# 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();
@sri
Copy link
Author

sri commented Aug 24, 2010

How to access Clipboard data in Windows from Python 3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment