I am trying to get the data from this website: http://www.boursorama.com/includes/cours/last_transactions.phtml?symbole=1xEURUS
It seems like urlopen don\'t get the
I have tested your URL with the httplib2 and on the terminal with curl. Both work fine:
URL = "http://www.boursorama.com/includes/cours/last_transactions.phtml?symbole=1xEURUS"
h = httplib2.Http()
resp, content = h.request(URL, "GET")
print(content)
So to me, either there is a bug in urllib.request or there is really weird client-server interaction happening.