Is there any way that i could download all the webpages in a website using perl ?
download website pages using perl
Collapse
X
-
Tags: None
-
If you are just wanting to download a specific web page (that is accessible as Kevin mentioned), then use LWP::Simple module. It has a get() function that will do that. If you are wanting to do something a little more complex, then check out the WWW::Mechanize module then.Originally posted by karthikeyanckIs there any way that i could download all the webpages in a website using perl ?
Regards,
JeffComment
-
Thanks a ton for the inputs, i need to download the whole website coz i've a project on itOriginally posted by numberwhunIf you are just wanting to download a specific web page (that is accessible as Kevin mentioned), then use LWP::Simple module. It has a get() function that will do that. If you are wanting to do something a little more complex, then check out the WWW::Mechanize module then.
Regards,
JeffComment
Comment