New version of Acme::MorningMusume is going to CPAN now, which is updated along with joining 李純 (Li Chun) and 銭琳 (Qian Lin) to Morning Musume as foreign students on March 15 this year.
Honestly saying, now that I'm hardly interested in モーニング娘。 (Morning Musume) at all, I don't have a motivation to update the module to keep up with changes about them. Instead, I've supported ℃-ute (C-ute) and Berryz工房 (Berryz Kobo) recent years. They're great, fantastic, and very cute! I think I might have to make modules about ℃-ute and Berryz工房 instead of モーニング娘。
Here's an example to get and save images of each members of モーニング娘。 from Google search reaults using Acme::MorningMusume.
#!/usr/bin/perl
use strict;
use warnings;
use Acme::MorningMusume;
my $morning_musume = Acme::MorningMusume->new;
for my $musume ($morning_musume->members) {
my $image = $musume->images(limit => 1)->next;
$image->save_content(base => sprintf "%s_%s", $musume->family_name_en, $musume->first_name_en);
printf "Saved image: %s\n", $musume->name_en;
}