Skip to content

Instantly share code, notes, and snippets.

@saurabh-hirani
Last active March 17, 2019 16:01
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 saurabh-hirani/6c904e3e6866c9c26e5f51d4883803dc to your computer and use it in GitHub Desktop.
Save saurabh-hirani/6c904e3e6866c9c26e5f51d4883803dc to your computer and use it in GitHub Desktop.
from __future__ import print_function
import requests
url = "https://google.com"
url_count = 10
for i in range(url_count):
print(requests.get(url, params={'page': i}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment