Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
What are the differences? – Hans Then Sep 17 '12 at 20:50
Hello, urllib.urlopen.read() gives me for example in the body: <body>\n<div id="contenu"><script language="JavaScript" type="text/javascript">Album1.EcritElement(0);</script></div>\n</html> which is too small information regarding what is on the page. – Nikolay Nikolov Sep 17 '12 at 20:59
See Srikar's answer. The page is generated dynamically using javascript. The key is in "Album1.EcritElement(0)". – Hans Then Sep 17 '12 at 21:12

2 Answers

up vote 3 down vote accepted

What you are getting from urlopen is the raw webpage meaning no javascript is executed css is not used; where as what you get from Chrome (or other browsers) is final webpage which included executable javascript (which might alter the HTML), css rendering etc. all of which does not happen in urlopen...

Hence the difference, hope this is clear

share|improve this answer
Does Chrome's source view change when the DOM is manipulated? The Firefox one doesn't. – delnan Sep 17 '12 at 20:56
1  
@delnan the OP doesn't explicitly say he is using View Source (which doesn't change) rather than Inspect Element (which does). – Daniel Roseman Sep 17 '12 at 20:58
@SrikarThanks what should I use instead of urlopen to have the final webpage parsed then? – Nikolay Nikolov Sep 17 '12 at 21:05
oh well thats a big task.browser rendering engines have been maturing for more than a decade to deal with broken HTML, wrong syntaxes etc. You would need to use a javascript engine for sure V8 or others. That aside i would like to know what are you exactly doing that warrants this? – Srikar Appal Sep 18 '12 at 4:24

Also, some websites have a so called browser switch which might lead to different source being shown when using different browsers (e.g. show a light version for mobile browsers).

Have a look at http://www.diveintopython.net/http_web_services/user_agent.html on how to change the User-Agent to something like "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1" (which is actually my User-Agent).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.