I need to create a screen scraper to get data off of a website: Currently I have:
my $index = shift; my $mech = WWW::Mechanize->new(); $mech->get( "http://vortex.plymouth.edu/uacalplt-u.html" ); my @links = $mech->links; for my $link ( $mech->links ) { # do whatever }
I don't know what to do in the what ever part, script wise. I am a beginner, and yes i have picked a tough thing to start on but I need help. Now what I would like to get is the data if you input an $index like KMIA (the identifier); Sounding data (text); 2005 (year); Aug (mo); 24 (day); 0z (hr); parcel; 640x480 (size), that it would go to that link, and take the text of that link and save it into a file named $index_24_0z.dat. For those that are observant KMIA is miami, and 8/34/2005 is the day before Hurricane Katrina. I need help to do this scraper for my research on Hurricane katrina.

In reply to Screen scraper by MKevin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.