2

Is it posible to copy a web page (whatever I see, not the source) onto a clipboard automatically (without using ctrl+c), using python / javascript.

Thanks in advance :)

Kevin Bedell
  • 13,254
  • 10
  • 78
  • 114

1 Answers1

1

If you just want to extract the usable text from a web page, you can use something like BeautifulSoup. If you want to copy it to the clipboard, you can use pyperclip.

Community
  • 1
  • 1
Ari
  • 2,311
  • 1
  • 17
  • 17