enthought/chaco

HTTP 404 error when running chaco/examples/demo/world_map.py

Closed this issue · 6 comments

Problem Description:
HTTP 404 error when running the demo

Reproduction Steps:
python chaco/examples/demo/world_map.py

Expected behavior:
image gets downloaded and demo success

OS, Python version: [MacOS, Python3.8 or Python3.11]

dpinte commented

@homosapien-lcy

In [1]: import requests
In [2]: requests.get('https://neo.gsfc.nasa.gov/servlet/RenderData?si=1845687&cs=rgb&format=JPEG&width=720&height=360')
Out[2]: <Response [200]>

https://neo.gsfc.nasa.gov/servlet/RenderData?si=1845687&cs=rgb&format=JPEG&width=720&height=360

Yeah, if you use requests it will work, but here is what I get if placing it in the world_map demo:

Downloading map image
Traceback (most recent call last):
File "examples/demo/world_map.py", line 132, in
demo = WorldMapPlot()
File "examples/demo/world_map.py", line 64, in init
self._download_map_image()
File "examples/demo/world_map.py", line 126, in _download_map_image
request.urlretrieve(self.image_url, self.image_path)
File "/Users/cyliu/.edm/envs/test_edm_py38/lib/python3.8/urllib/request.py", line 247, in urlretrieve
with contextlib.closing(urlopen(url, data)) as fp:
File "/Users/cyliu/.edm/envs/test_edm_py38/lib/python3.8/urllib/request.py", line 222, in urlopen
return opener.open(url, data, timeout)
File "/Users/cyliu/.edm/envs/test_edm_py38/lib/python3.8/urllib/request.py", line 531, in open
response = meth(req, response)
File "/Users/cyliu/.edm/envs/test_edm_py38/lib/python3.8/urllib/request.py", line 640, in http_response
response = self.parent.error(
File "/Users/cyliu/.edm/envs/test_edm_py38/lib/python3.8/urllib/request.py", line 569, in error
return self._call_chain(*args)
File "/Users/cyliu/.edm/envs/test_edm_py38/lib/python3.8/urllib/request.py", line 502, in _call_chain
result = func(*args)
File "/Users/cyliu/.edm/envs/test_edm_py38/lib/python3.8/urllib/request.py", line 649, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 403: Forbidden

image_url = Str( "https://neo.gsfc.nasa.gov/servlet/RenderData?si=1845687&cs=rgb&format=JPEG&width=720&height=360" )

Fixed in PR #864