Skip to content

Instantly share code, notes, and snippets.

@dgtlctzn
Created December 3, 2021 16:57
Show Gist options
  • Save dgtlctzn/a4c7a0a2ac63e1f9ed0a05f9a56c620a to your computer and use it in GitHub Desktop.
Save dgtlctzn/a4c7a0a2ac63e1f9ed0a05f9a56c620a to your computer and use it in GitHub Desktop.
Time Test
from time import time
responses: List[Dict] = []
start_time: float = time()
for url in URLS:
responses.append(requests.get(url).json())
end_time: float = time()
print(end_time - start_time)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment