๐Ÿ“กMaking Requests & Parsing JSON ResponsesWORKSHOP
1
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.

โŒ˜ Enter (Mac) ยท Ctrl+Enter (Win/Linux)