I'm trying to use urllib2 to fetch webpage from a website. After I managed to log on and retrieve the page, I found out the page has some <script>.....</script> inside. How can I save the rendered the output (the complete content of the webpage, not the script)?
| |||||||
feedback
|
|
I'd also like to mention pywebkitgtk (which I've been using a lot lately as an embedded browser), and Selenium. | |||
feedback
|
|
Javascript can't be easily handled if you are using urllib. What you need is a headless browser, for ex. WebKit. A simple example can be found here. If you don't want yourself to be limited to python, try Phantomjs | |||
|
feedback
|