
WWW::Ohloh::API::Languages - a set of languages as known by Ohloh

use WWW::Ohloh::API;
my $ohloh = WWW::Ohloh::API->new( api_key => $my_api_key );
my $languages = $ohloh->get_languages( sort => 'code' );
for my $l ( $languages->all ) {
print $l->nice_name;
}

W::O::A::Languages returns the list of languages known to Ohloh. To be properly populated, it must be created via the get_languages method of a WWW::Ohloh::API object.

Return the retrieved languages' information as WWW::Ohloh::API::Language objects.
Return the languages' information as an XML string. Note that this is not the exact xml document as returned by the Ohloh server.


This document describes WWW::Ohloh::API version 0.0.9

WWW::Ohloh::API is very extremely alpha quality. It'll improve, but till then: Caveat emptor.
Please report any bugs or feature requests to bug-www-ohloh-api@rt.cpan.org, or through the web interface at http://rt.cpan.org.

Yanick Champoux <yanick@cpan.org>

Copyright (c) 2008, Yanick Champoux <yanick@cpan.org>. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.