-1

我是 Perl 语言的新手,并且有这个脚本可以抓取亚马逊网站的评论。每次运行它时,我都会收到有关编译错误的错误消息。想知道是否有人可以阐明它有什么问题。

#!/usr/bin/perl
# get_reviews.pl
#
# A script to scrape Amazon, retrieve reviews, and write to a file
# Usage: perl get_reviews.pl <asin>
use strict;
use warnings;
use LWP::Simple;

# Take the asin from the command-line
my $asin = shift @ARGV or die "Usage: perl get_reviews.pl <asin>\n";

# Assemble the URL from the passed asin.
my $url = "http://amazon.com/o/tg/detail/-/$asin/?vi=customer-reviews";

# Set up unescape-HTML rules. Quicker than URI::Escape.
my %unescape = ('&quot;'=>'"', '&amp;'=>'&', '&nbsp;'=>' ');
my $unescape_re = join '|' => keys %unescape;

# Request the URL.
my $content = get($url);
die "Could not retrieve $url" unless $content;

#Remove everything before the reviews
$content =~ s!.*?Number of Reviews:!!ms;

# Loop through the HTML looking for matches
while ($content =~ m!<img.*?stars-(\d)-0.gif.*?>.*?<b>(.*?)</b>, (.*?)[RETURN]
\n.*?Reviewer:\n<b>\n(.*?)</b>.*?</table>\n(.*?)<br>\n<br>!mgis) {

my($rating,$title,$date,$reviewer,$review) = [RETURN] 
($1||'',$2||'',$3||'',$4||'',$5||'');
$reviewer =~ s!<.+?>!!g;   # drop all HTML tags
$reviewer =~ s!\(.+?\)!!g;   # remove anything in parenthesis
$reviewer =~ s!\n!!g;      # remove newlines
$review =~ s!<.+?>!!g;     # drop all HTML tags
$review =~ s/($unescape_re)/$unescape{$1}/migs; # unescape.

# Print the results
print "$title\n" . "$date\n" . "by $reviewer\n" .
      "$rating stars.\n\n" . "$review\n\n";

}

4

2 回答 2

3

语法错误似乎是由您的代码中出现两次的“[RETURN]”引起的。当我删除这些时,编译的代码没有问题。

亚马逊真的不喜欢人们抓取他们的网站。这就是为什么他们提供一个 API 让您可以访问他们的内容。还有一个用于使用该 API 的 Perl 模块 - Net::Amazon。您应该使用它而不是脆弱的网络抓取技术。

于 2013-10-25T08:49:27.507 回答
0

也许你应该试试 Web::Scraper ( http://metacpan.org/pod/Web::Scraper )。它将以更清洁的方式完成工作。

[编辑] 无论如何,我检查了随机审查的 HTML 代码,看来您的模式已经过时了。例如,审阅者的姓名由“By”而不是“Reviewer”介绍。

于 2013-10-24T15:03:29.730 回答