| WWW::Freshmeat(3pm) | User Contributed Perl Documentation | WWW::Freshmeat(3pm) |
WWW::Freshmeat - automates usage of Freshmeat.net
Version 0.22
use WWW::Freshmeat;
my $fm = WWW::Freshmeat->new(token=>'freshmeat_token');
my $project = $fm->retrieve_project('project_id');
foreach my $p ( @projects, $project ) {
print $p->name(), "\n";
print $p->version(), "\n";
print $p->description(), "\n";
}
"WWW::Freshmeat" derives from "LWP::UserAgent", so it accepts all the methods that "LWP::UserAgent" does, notably "timeout", "useragent", "env_proxy"...
LWP::UserAgent.
Cedric Bouvier, "<cbouvi at cpan.org>". Alexandr Ciornii.
Please report any bugs or feature requests to "bug-www-freshmeat at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Freshmeat>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc WWW::Freshmeat
You can also look for information at:
<http://annocpan.org/dist/WWW-Freshmeat>
<http://cpanratings.perl.org/d/WWW-Freshmeat>
<http://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-Freshmeat>
<http://search.cpan.org/dist/WWW-Freshmeat>
Copyright 2006 Cedric Bouvier (version 0.01). Copyright 2009-2012 Alexandr Ciornii.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 2015-05-16 | perl v5.20.2 |