The following simple python script that uses requests.get
to execute a GET request does not return on my computer:
import requests
print(requests.get('https://api.openstreetmap.org/api/0.6/node/1894790125'))
However, I am able to get the same url with curl
.
Why is this?