I'm trying to fetch the following webpage:
import urllib
urllib.urlopen("http://www.gallimard-jeunesse.fr/searchjeunesse/advanced/(order)/author?catalog[0]=1&SearchAction=1").read()
The result does not correspond to what I see when inspecting the source code of the webpage using Google Chrome for example.
Could you tell me why this happens and how I could improve my code to overcome the problem?
Thank you for your help.