News

Pyperclip is a cross-platform Python module for copy and paste clipboard functions. It works with Python 2 and 3.
# pyperclip.copy('The text to be copied to the clipboard.') # spam = pyperclip.paste() # On Mac, this module makes use of the pbcopy and pbpaste commands, which should come with the os. # On Linux, ...
Pyperclip: Python now has cross-platform copy-pasting, which was previously not possible. The copy () and paste () functions of the pyperclip module allow you to send and receive text to and from your ...