I normally use WGET to download an image or two from some web-page, I do something like this from the command prompt: wget 'webpage-url' -P 'directory to where I wanna save it'. Now how do I automate it in Perl and Python? That is what command shall enable me to simulate as if I am entering the command at the command-prompt? In Python there are so many similar looking modules like subprocess, os, etc that I am quite confused.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
If you want to read URL and process the response:
How to extract images from the html you can read here on SO |
|||||||||||||
|
|
In Perl, the easiest way is to use
|
|||
|
|
|
in Perl, also, you can use so, in your example: But, as s0me0ne said, using If you have a list of urls in a file, you can use this code:
|
|||
|
|
