Skip to content

Instantly share code, notes, and snippets.

@thejungwon
Created March 26, 2020 15:11
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 thejungwon/373d0365b05b53378771dccaca1eeb3f to your computer and use it in GitHub Desktop.
Save thejungwon/373d0365b05b53378771dccaca1eeb3f to your computer and use it in GitHub Desktop.
import requests
def get_url(url):
return requests.get(url)
list_of_urls = ["https://postman-echo.com/get?foo1=bar1&foo2=bar2"]*10
for url in list_of_urls:
print(get_url(url))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment