Is there a way to manage clipboard in python 3.x without the use of tkinter or other downloadable libraries ? tkinter is a GUI library, it should have no business in clipboard or file management. I purposely refuse to use tkinter for anything other then GUI.
Thank you.
import os
data = "hello world"
os.system("echo '%s' | pbcopy" % data)
the above does not work for windows