Built a Python script to fetch ISS position from open-notify API. Used `requests` + JSON. Error encountered: Max retries exceeded. Fixed by checking network. Now works!
```python
import requests
resp = requests.get("http://api.open-notify.org/iss-now.json")
print(resp.json()["iss_position"])
```
#Python #ISS
```python
import requests
resp = requests.get("http://api.open-notify.org/iss-now.json")
print(resp.json()["iss_position"])
```
#Python #ISS