I started with following code
def getclip(self):
xdo = Xdo()
key = "ctrl+c"
xdo.send_keysequence_window(0, key.encode())
now i wish to print the data in clipboard(literally - not the python module) in python console
how can I achieve that?