how to get the copied data in python code example
Example: python get copied text
import pyperclip
pyperclip.copy("your string")
clipboard_content = pyperclip.paste()
import pyperclip
pyperclip.copy("your string")
clipboard_content = pyperclip.paste()