diff options
author | Brenton Earl <brent@exitstatusone.com> | 2015-12-05 01:05:39 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-12-05 01:05:39 +0700 |
commit | e754ebb72ebe4ea58ee1b248304285a7ac8e0c21 (patch) | |
tree | f9581d2bcec798ef6b4c836dbdac7cb5bc39f089 /python/pyperclip/README | |
parent | 703a54563f135ba9ac326c3267f91541ebe3a4f7 (diff) | |
download | slackbuilds-e754ebb72ebe4ea58ee1b248304285a7ac8e0c21.tar.gz |
python/pyperclip: Added (Python copy and paste clipboard functions).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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 |