Created
May 10, 2017 14:12
-
-
Save ur0n2/e589a449fa0c7bba0766fa5561b7a573 to your computer and use it in GitHub Desktop.
Clipboard copy & paste with python
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
import sys | |
import ctypes | |
OpenClipboard = ctypes.windll.user32.OpenClipboard | |
EmptyClipboard = ctypes.windll.user32.EmptyClipboard | |
GetClipboardData = ctypes.windll.user32.GetClipboardData | |
SetClipboardData = ctypes.windll.user32.SetClipboardData | |
CloseClipboard = ctypes.windll.user32.CloseClipboard | |
CF_UNICODETEXT = 13 | |
GlobalAlloc = ctypes.windll.kernel32.GlobalAlloc | |
GlobalLock = ctypes.windll.kernel32.GlobalLock | |
GlobalUnlock = ctypes.windll.kernel32.GlobalUnlock | |
GlobalSize = ctypes.windll.kernel32.GlobalSize | |
GMEM_MOVEABLE = 0x0002 | |
GMEM_ZEROINIT = 0x0040 | |
unicode_type = type(u'') | |
def get(): | |
text = None | |
OpenClipboard(None) | |
handle = GetClipboardData(CF_UNICODETEXT) | |
pcontents = GlobalLock(handle) | |
size = GlobalSize(handle) | |
if pcontents and size: | |
raw_data = ctypes.create_string_buffer(size) | |
ctypes.memmove(raw_data, pcontents, size) | |
text = raw_data.raw.decode('utf-16le').rstrip(u'\0') | |
GlobalUnlock(handle) | |
CloseClipboard() | |
return text | |
def put(s): | |
if not isinstance(s, unicode_type): | |
s = s.decode('mbcs') | |
data = s.encode('utf-16le') | |
OpenClipboard(None) | |
EmptyClipboard() | |
handle = GlobalAlloc(GMEM_MOVEABLE | GMEM_ZEROINIT, len(data) + 2) | |
pcontents = GlobalLock(handle) | |
ctypes.memmove(pcontents, data, len(data)) | |
GlobalUnlock(handle) | |
SetClipboardData(CF_UNICODETEXT, handle) | |
CloseClipboard() | |
paste = get | |
copy = put | |
put("87640050-29534130") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment