mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
e754ebb72e
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
16 lines
414 B
Text
16 lines
414 B
Text
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
|