When I try to run this sequence of commands (using python):
url = "http://www.bom.gov.au/fwo/IDV60701/IDV60701.9536.json"
response = urllib.urlopen(url)
print response.read()
I get the following output:
<HTML><HEAD>
<TITLE>Access Denied</TITLE>
</HEAD><BODY>
<H1>Access Denied</H1>
You don't have permission to access
"http://www.bom.gov.au&#
47;fwo/IDV60701/IDV60701.95936.json" on this server.
<P>
Reference #18.d4c2ce17.1533360576.56049f8
</BODY>
</HTML>
But when I access this url http://www.bom.gov.au/fwo/IDV60701/IDV60701.95936.json from a browser the json file displays correctly. How can I read this json file from my python script?