We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit be2a832Copy full SHA for be2a832
learning.py
@@ -0,0 +1,7 @@
1
+import requests
2
+import pprint
3
+
4
+pp = pprint.PrettyPrinter(indent=2)
5
+url = "https://pokeapi.co/api/v2/pokemon/pikachu"
6
+r = requests.get(url)
7
+pp.pprint(r.json())
0 commit comments