clippy
Easy Python clipboard management.
copy to
>>> clip.set('nice meme') # accepts unicode/str/bytesget from
>>> clip.get() # returns unicode string or None
'nice meme'clear
>>> clip.clear()
>>> clip.get()
Nonesupported
>>> clip.supported() # supports Windows, OS X and X11-based systems
Trueself-test
$ python -m clip
testing ASCII... success
testing Unicode... success
testing clear... successLicense
Do What the Fuck You Want to Public License.