https://github.com/noahfx/yanky
Easy and Simple copy and paste Python module for GNU/Linux systems.
https://github.com/noahfx/yanky
clipboard copy paste python xclip xcopy xsel yank
Last synced: 14 days ago
JSON representation
Easy and Simple copy and paste Python module for GNU/Linux systems.
- Host: GitHub
- URL: https://github.com/noahfx/yanky
- Owner: noahfx
- License: mit
- Created: 2017-07-19T01:02:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-08-03T08:42:11.000Z (almost 8 years ago)
- Last Synced: 2025-09-23T00:21:22.917Z (8 months ago)
- Topics: clipboard, copy, paste, python, xclip, xcopy, xsel, yank
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
yanky -- Easy and Simple copy and paste module for GNU/Linux systems
In order to get yanky fully functional either one of the following software
needs to be installed in your system:
-xsel: http://www.vergenet.net/~conrad/software/xsel
-xclip: https://sourceforge.net/projects/xclip
Usage:
from yanky import copy, paste
#Copy text to OS clipboard
copy('Text to be copied to clipboard')
#Paste from OS clipboard
text_from_cb = paste()