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
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
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 $!;
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/
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 $!;
>
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
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
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
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
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
10 matches
Mail list logo