Advertisement
dereksir

Untitled

Jul 23rd, 2023
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. import cloudscraper
  2.  
  3. url = "https://author.today/"
  4. scraper = cloudscraper.create_scraper()
  5. info = scraper.get(url)
  6. print("the status code is ", info.status_code)
  7. print(info.text)
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement