So I understand that mechanize can make python script behave exactly like a browser.
With a browser, I can save a loaded page into local disk, including the images in the page
How can I do this with mechanize ?
It doesn’t seem to be able to save images on the page
I’m using example from This page
Thanks in advance
There isn’t a direct way to do this however here are the steps you’ll need to take
In this situation mechanize doesn’t really offer you anything over urllib2 if you only want to deal with one page and you don’t need to login to get to it. You might find requests useful for this task.