๐Ÿ“กMaking Requests & Parsing JSON ResponsesWORKSHOP
2
3
4
5

Step 1

Make a GET request to `https://httpbin.org/get` using `urllib.request.urlopen`. Read the response body, decode it as UTF-8, parse the JSON with `json.loads`, and print the `url` field from the response.

Ctrl+Enter to run