Python Как получить доступ к буферу обмена
import clipboard
clipboard.copy("abc") # now the clipboard content will be string "abc"
text = clipboard.paste() # text will have the content of clipboard
Unsightly Unicorn