I am trying to pull a specific URL using the the python by using raw_html = urlopen(url).read().
When I inspect 'raw_htm' I find that the expected HTML/text has been replaced with some text that essentially tells me that I cannot crawl the site.
However, when I pull the same url using 'curl -O' from UNIX/python the page is downloaded just fine.
What is the reason for the discrepancy and what method should I use within python so that I can get the html as I do with the curl command in unix?
Thanks in advance for any thoughts!