Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 633 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 633 Bytes

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