Re: copying a webpage and pasting to a text file

2008-12-26 Thread Octavian Rasnita
e: copying a webpage and pasting to a text file I seem to remember that Yahoo Finance has a Web-Services interface that may alloy you to get financial data. The current figured are lagged by about ten minutes or so. Take a look at the Yahoo Developer Network (http://developer.yahoo.com/) for more

Re: copying a webpage and pasting to a text file

2008-12-25 Thread Bob goolsby
I seem to remember that Yahoo Finance has a Web-Services interface that may alloy you to get financial data. The current figured are lagged by about ten minutes or so. Take a look at the Yahoo Developer Network (http://developer.yahoo.com/) for more detail. B On Tue, Dec 23, 2008 at 7:13 PM, C

Re: copying a webpage and pasting to a text file

2008-12-25 Thread Gunnar Hjalmarsson
Collaborate wrote: On Dec 23, 3:34 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote: Collaborate wrote: I am wondering if there is a way to copy a webpage to a text file using Perl. use LWP::Simple; my $url = 'http://www.example.com/'; open my $fh, '>', 'webpage.txt' or die $!;

Re: copying a webpage and pasting to a text file

2008-12-25 Thread Chas. Owens
On Wed, Dec 24, 2008 at 22:09, Collaborate wrote: > On Dec 23, 3:34 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote: >> Collaborate wrote: >> > I am wondering if there is a way to copy a webpage to a text file >> > using Perl. >> >> use LWP::Simple; >> my $url = 'http://www.example.com/

Re: copying a webpage and pasting to a text file

2008-12-24 Thread Collaborate
On Dec 23, 3:34 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote: > Collaborate wrote: > > I am wondering if there is a way to copy a webpage to a text file > > using Perl. > >      use LWP::Simple; >      my $url = 'http://www.example.com/'; >      open my $fh, '>', 'webpage.txt' or die $!; >    

Re: copying a webpage and pasting to a text file

2008-12-24 Thread Jenda Krynicky
From: "Chas. Owens" > On Tue, Dec 23, 2008 at 11:30, Collaborate wrote: > > I am wondering if there is a way to copy a webpage to a text file > > using Perl. All I need is to copy as unformatted text. > > > > I would like to match certain strings on pages written in javascript > > and to my under

Re: copying a webpage and pasting to a text file

2008-12-23 Thread Chas. Owens
On Tue, Dec 23, 2008 at 11:30, Collaborate wrote: > I am wondering if there is a way to copy a webpage to a text file > using Perl. All I need is to copy as unformatted text. > > I would like to match certain strings on pages written in javascript > and to my understanding, www::mechnize does not

Re: copying a webpage and pasting to a text file

2008-12-23 Thread Gunnar Hjalmarsson
Collaborate wrote: I am wondering if there is a way to copy a webpage to a text file using Perl. use LWP::Simple; my $url = 'http://www.example.com/'; open my $fh, '>', 'webpage.txt' or die $!; print $fh get $url; -- Gunnar Hjalmarsson Email: http://www.gunnar.cc/cgi-bin/contac

Re: copying a webpage and pasting to a text file

2008-12-23 Thread Mr. Shawn H. Corey
On Tue, 2008-12-23 at 08:30 -0800, Collaborate wrote: > I am wondering if there is a way to copy a webpage to a text file > using Perl. All I need is to copy as unformatted text. > > I would like to match certain strings on pages written in javascript > and to my understanding, www::mechnize does

copying a webpage and pasting to a text file

2008-12-23 Thread Collaborate
I am wondering if there is a way to copy a webpage to a text file using Perl. All I need is to copy as unformatted text. I would like to match certain strings on pages written in javascript and to my understanding, www::mechnize does not work for this application. -- To unsubscribe, e-mail: beg