Pyperclip is a cross-platform Python module for copy and paste clipboard functions. It works with Python 2 and 3. >>> import pyperclip >>> pyperclip.copy('The text to be copied to the clipboard.') >>> ...
I wrote a program to convert copied text (html) into Python-processable characters, e.g. converting " to ": I am not sure, but I think it's possible that this is not a pyperclip issue, but any ...