-1

I am looking forward to copy data from a website to clipboard and pasting it into the Google sheet using python. Is there anyway to do that? I am not using web scraping since the website does not allow scraping, but it does allow to copy data to clipboard.

Anvita
  • 1
  • 1

1 Answers1

0
from pyperclip import paste
    
s = paste()
print(s)
MichaelT572
  • 178
  • 1
  • 9