Skip to content

Instantly share code, notes, and snippets.

@mlshv
Created June 22, 2017 07:03
Show Gist options
  • Select an option

  • Save mlshv/77e62142031334eda346db9ebd3d8fdf to your computer and use it in GitHub Desktop.

Select an option

Save mlshv/77e62142031334eda346db9ebd3d8fdf to your computer and use it in GitHub Desktop.
Python set clipboard with win32clipboard (unicode support)
import win32clipboard
def set_clipboard(text):
win32clipboard.OpenClipboard()
win32clipboard.EmptyClipboard()
win32clipboard.SetClipboardText(text, win32clipboard.CF_UNICODETEXT)
win32clipboard.CloseClipboard()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment