-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
5 lines (3 loc) · 762 Bytes
/
README
File metadata and controls
5 lines (3 loc) · 762 Bytes
1
2
3
4
This is a Perl module which has been created to allow you to easily get a web page's content.
This tool uses the CURL library which has been deisgned to allow you to get content from various sources including the net.
I have implemented the WWW:Curl:Easy function and simplified the process a bit for you by allowing you to simply call my function with the URL you would like to retrieve as the sole parameter. My function will return the web page as a string that can you can then parse however you deem necessary. To augment the performance when using my code I would recommend that any calls you make to my function be references so that you do not have a few variables floating around memory with the same information (the content of the web page we got).