Skip to content

Instantly share code, notes, and snippets.

@Hidenmy
Last active June 8, 2021 14:22
Show Gist options
  • Save Hidenmy/115c640e94b985c4def32d72886ddfae to your computer and use it in GitHub Desktop.
Save Hidenmy/115c640e94b985c4def32d72886ddfae to your computer and use it in GitHub Desktop.
requests trips
import requests
USER_AGENT = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:81.0) Gecko/20100101 Firefox/81.0'
url = 'https://www.google.com/'
content = requests.get(url, headers={'User-Agent': USER_AGENT}).content
print(content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment