Skip to content
/ yanky Public

Easy and Simple copy and paste Python module for GNU/Linux systems.

License

Notifications You must be signed in to change notification settings

noahfx/yanky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yanky -- Easy and Simple copy and paste Python 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:

In Debian based systems they can be installed via the package manager.

Installation

$ sudo pip install yanky

Package available for Python 3 only.

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