diff options
Diffstat (limited to 'python/pyperclip/README')
-rw-r--r-- | python/pyperclip/README | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/python/pyperclip/README b/python/pyperclip/README new file mode 100644 index 0000000000..f24b18ae6a --- /dev/null +++ b/python/pyperclip/README @@ -0,0 +1,16 @@ +Pyperclip is a cross-platform Python module for copy and paste clipboard +functions. It works with Python 2 and 3. It currently only handles +plaintext. + +Example Usage: + +>>> import pyperclip +>>> pyperclip.copy('The text to be copied to the clipboard.') +>>> pyperclip.paste() +'The text to be copied to the clipboard.' + +PDF documentation included in /usr/doc/pyperclip-$VERSION + +Optional Dependencies: +- xclip +- xsel |