Html Data Is Hidden From Urllib
How do I get the real content from this page: http://kursuskatalog.au.dk/da/course/74960/105E17-Demokrati-og-diktatur-i-komparativt-perspektiv All I get from the code below is som
Solution 1:
Content in this URL is created with JavaScript after page is loaded.
Solution 2:
What is printed is the 'real' content. If you wanted to see the output of that JavaScript code you would need to fetch all the JavaScript through the <script></script>
tags and external script and then use a JavaScript Parser to read it. You would not need the CSS scripts for just reading the content as they are just used to style the page.
Unfortunately I can think of no alternative.
I hope I was helpful.
Post a Comment for "Html Data Is Hidden From Urllib"