Created
February 19, 2014 09:45
-
-
Save toritori0318/9088950 to your computer and use it in GitHub Desktop.
ircbot用lgtm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use Web::Scraper; | |
use URI; | |
my $uri = URI->new('http://www.lgtm.in/g'); | |
my $scraper = scraper { | |
process '//input[@id="imageUrl"]', 'image_url' => '@value'; | |
process '//input[@id="dataUrl"]', 'data_url' => '@value'; | |
}; | |
my $result = $scraper->scrape($uri); | |
print $result->{image_url}, "\n"; | |
print $result->{data_url}, "\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment