|
|
|
|
|
by goostavos
4935 days ago
|
|
In general, if you're going the mechanize route, .retrieve() is the function your looking for. e.g. br = mechanize.Browser()
br.retrieve("https://www.google.com/images/srpr/logo3w.png, google_logo.png)[0]
Mechanize doesn't really have a proper doc, but just about everything you'd need could be figured out from the very lengthy examples page on their site. |
|