Skip to content

Instantly share code, notes, and snippets.

@octaflop
Created January 1, 2019 20:28
Show Gist options
  • Save octaflop/fac878462e202d3902db6acd9421598f to your computer and use it in GitHub Desktop.
Save octaflop/fac878462e202d3902db6acd9421598f to your computer and use it in GitHub Desktop.
Scratchpad for SLCPython Jan 2019: Learn Python Meetup
import requests
import pprint
pp = pprint.PrettyPrinter(indent=2)
url = "https://pokeapi.co/api/v2/pokemon/ditto"
r = requests.get(url)
pp.pprint(r.json())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment