Perl6::Slurp is a regular Perl 5 module, it just emulates Perl 6's slurp builtin. Learning a bit of XPath is always useful, look at Zvon's tutorial for example.
As for the rest, you need to look at the source of the page, see what information you need and what XPath queries will get it for you.
The cruise info is not for example in the p.itinerari-info, it's in the div.sx element. From that element you can get the title and price, then go down some more and get the various other fields. .
Here is an example, which does not output the 'Includes' field, you'll have to do this one yourself.:
#!/usr/bin/perl -w
use strict;
use warnings;
use LWP::Simple;
use Perl6::Slurp; # to load the page from the cache
use HTML::TreeBuilder::XPath; # easier to use than bare HTML::TreeBuil
+der
# during development we don't want to hit the real page,
# so we'll have a -c switch to use a cache
use Getopt::Std;
my %opt;
getopts( 'c', \%opt); # if called with -c then $opt{c} is true
my $base='http://www.costacrociere.it';
my $url='/it/lista_crociere/capitali_nord_europa-201206.html';
my $cache= 'capitali_nord_europa-201206.html';
# this will get rid of the bad characters you were seeing in the outpu
+t
binmode( STDOUT, ':utf8');
if( ! $opt{c}) { getstore( $base.$url, $cache); } # only get the live
+page without -c
my $page= slurp '<:utf8', $cache;
my $p = HTML::TreeBuilder::XPath->new_from_content( $page );
my @trips= $p->findnodes( '//div[@class="info-cruise"]');
foreach my $trip (@trips){
my $title = $trip->findvalue( './/div[@class="sx"]/h3');
print "$title\n";
my $price = $trip->findvalue( './/span[@class="new-price"]');
print "price: $price\n";
# this is very brittle, but it gives you a base on which you can bu
+ild
foreach my $info ( $trip->findnodes( './/p[@class="itinerari-info"]
+//span[@class != "note" and @class != "strike"]'))
{
my $info_title= $info->findnodes( './b')->[0];
print $info_title->as_text();
$info_title->detach;
my $info_value= $info->as_text;
print ": ", $info_value, "\n";
}
print "\n";
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|