An open API service indexing awesome lists of open source software.

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.

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()