Skip to content

Instantly share code, notes, and snippets.

@abhirama
Created March 31, 2020 07:15
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 abhirama/8297a9079057c3106698f9f68e9b398c to your computer and use it in GitHub Desktop.
Save abhirama/8297a9079057c3106698f9f68e9b398c to your computer and use it in GitHub Desktop.
import requests
from timeit import default_timer as timer
from requests import exceptions as e
start = timer()
r = requests.get("https://httpbin.org/drip?duration=30&delay=0", timeout=(6.4, 6))
end = timer()
print("Time spent waiting for the response - ", end - start, "Seconds")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment