| Author |
Wget-like for Perl
|
|
| Penguin_X 2005-07-26, 10:03 pm |
| Hi All ! First of all, sorry for my poor English. I'm still working on that.
I'm looking to build a program in Perl that download HTML code from many
web pages. I'm looking for something like "wget" that may GET a html
page and save in onto my HD. Everything else is fine, except that.
The goal is to build a SMS-News Sender via SMTP protocol. You know that
you can't send more than 128 characters at the same time with SMS, so I
can't have my news on cellular. I want to wrote something that will
extract only important stuff from many websites and send only one e-mail
via SMS. A Maximum 120 characters per e-mail.
Thanks a lot !
Truly.
| |
| Josef Moellers 2005-07-27, 4:02 am |
| Penguin_X wrote:
> Hi All ! First of all, sorry for my poor English. I'm still working on =
> that.
>=20
> I'm looking to build a program in Perl that download HTML code from man=
y=20
> web pages. I'm looking for something like "wget" that may GET a html =
> page and save in onto my HD. Everything else is fine, except that.
Have a look at the LWP modules on a CPAN mirror near you.
--=20
Josef M=F6llers (Pinguinpfleger bei FSC)
If failure had no penalty success would not be a prize
-- T. Pratchett
| |
| Penguin_X 2005-07-27, 9:03 am |
| Josef Moellers wrote:
> Penguin_X wrote:
>
> Have a look at the LWP modules on a CPAN mirror near you.
>
Thank, i'm looking for that :)
| |
| Tad McClellan 2005-07-27, 5:05 pm |
| Penguin_X <penguin_x@phreaker.net> wrote:
> I'm looking for something like "wget" that may GET a html
> page and save in onto my HD.
perldoc -q HTML
How do I remove HTML from a string?
How do I fetch an HTML file?
How do I automate an HTML form submission?
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
| |
| Penguin_X 2005-07-28, 9:09 am |
| Tad McClellan wrote:
> Penguin_X <penguin_x@phreaker.net> wrote:
>
>
>
> perldoc -q HTML
>
> How do I remove HTML from a string?
>
> How do I fetch an HTML file?
>
> How do I automate an HTML form submission?
>
>
This way works fine. Thanks.
|
|
|
|