blob: f24b18ae6a8cb51b6950fe51814580b8e703b679 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|