吉沢明歩かわいい
吉沢明歩動画リンク集があったので、スクリプト書いて大量に動画を頂きました。それだけ。
http://fc23.blog63.fc2.com/blog-entry-813.html
#!/usr/bin/perl use strict; use warnings; use File::Basename; use LWP::UserAgent; use Perl6::Say; use URI; use Web::Scraper; my $ua_pornhost = LWP::UserAgent->new( keepalive => 1 ); my $ua_sony = LWP::UserAgent->new( keepalive => 1 ); my $scraper_list = scraper { process '//a[contains(@href,"http://www.pornhost.com")]', 'urls[]' => sub { my $uri_pornhost_html = $_->{href}; say $uri_pornhost_html; my $uri_sony = 'http://www.sonyyoutube.com/?v=' . $uri_pornhost_html; say '-> ' . $uri_sony; my $scraper_sony = scraper { process 'id("m")/a', url => '@href'; }; $scraper_sony->user_agent($ua_sony); my $result = $scraper_sony->scrape(URI->new($uri_sony)); my $uri_pornhost_wmv = $result->{url}; say '-> ' . $uri_pornhost_wmv; my $file = basename($uri_pornhost_wmv); $ua_pornhost->get($uri_pornhost_wmv, ':content_file' => $file); $file; }; }; my $uri_list = 'http://fc23.blog63.fc2.com/blog-entry-813.html'; $scraper_list->scrape(URI->new($uri_list));