Skip to content

Instantly share code, notes, and snippets.

@diogommartins
Last active April 22, 2017 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diogommartins/c4740c880df26537da3123928ed0aa38 to your computer and use it in GitHub Desktop.
Save diogommartins/c4740c880df26537da3123928ed0aa38 to your computer and use it in GitHub Desktop.
import requests
urls = (
'http://www.americanas.com',
'http://www.submarino.com',
'http://www.shoptime.com',
'http://www.soubarato.com',
)
for url in urls:
response = requests.get(url)
print(response.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment