Skip to content

Instantly share code, notes, and snippets.

@sithu
Created August 31, 2017 03:35
Show Gist options
  • Save sithu/62ef886bf23cf02b28280b194d7161d6 to your computer and use it in GitHub Desktop.
Save sithu/62ef886bf23cf02b28280b194d7161d6 to your computer and use it in GitHub Desktop.
Quizz 2 Baseline
import requests
def http_call_sync():
r = requests.get('https://httpbin.org/status/200')
print(r.status_code)
r = requests.get('https://httpbin.org/status/204')
print(r.status_code)
def http_call_async():
"""
TODO
"""
http_call_sync()
http_call_async()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment