Skip to content

Instantly share code, notes, and snippets.

@Trafitto
Created September 24, 2019 17:33
Show Gist options
  • Save Trafitto/e8844b0346f7594028cb630d7c4b405a to your computer and use it in GitHub Desktop.
Save Trafitto/e8844b0346f7594028cb630d7c4b405a to your computer and use it in GitHub Desktop.
'''
Response example:
{
"bestemmia": "DIO CANE",
"count": 2
}
'''
response = requests.get(BASE_URL.format(endpoint="random"))
response.raise_for_status()
print(response.json())
'''
{'count': 1, 'bestemmia': u'DIO CANE'}
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment