The only clipboard library for Python that supports text on all three major platforms plus HTML on MacOS and HTML and images on Windows.
Similar to pyperclip and clipboard and xerox except attempts to support more formats than just text.
This library is just a thin wrapper around the best platform implementations:
- pyperclip for Linux
- richxerox for MacOS
- jaraco.windows for Windows
jaraco.clipboard
supplies several functions in the clipboard module.
The most common are the copy and paste functions:
from jaraco import clipboard
clipboard.copy('some text')
clipboard.paste() == 'some text'
Other functions include copy/paste
html
and image
.
If not implemented on your platform, the functions will raise NotImplementedError.