
WWW::Ohloh::API::Language - a programming language information on Ohloh

use WWW::Ohloh::API;
my $ohloh = WWW::Ohloh::API->new( api_key => $my_api_key );
my $languages = $ohloh->get_languages;
my ( $perl ) = grep { $_->nice_name eq 'Perl' } $languages->all;
print $perl->projects, " projects use Perl";

W::O::A::Language contains the information associated with a programming language recognized by Ohloh as defined at http://www.ohloh.net/api/reference/language. To be properly populated, it must be created via the get_languages or get_language method of a WWW::Ohloh::API object.

Return the language's unique id.
Return the short name of the language.
Return the human-friendly name of the language.
Return the type of language, which can be either code or markup.
Return true if the language is a markup language, false if it's a code language.
Return true if the language is a code language, false if it's a markup language.
Return the total number of lines of code, excluding comments and blank lines, written in the language across all projects.
Return the total number of comment lines, written in the language across all projects.
Return the total number of blanks lines, written in the language across all projects.
Return the ratio of comment lines over the total number of lines for all projects using the language.
Return the number of projects using this language.
Return the number of contributors who have written at least one line of code using this language.
Return the number of commits which include at least one line in this language.
Return the language 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.
The as_xml() method returns a re-encoding of the account data, which can differ of the original xml document sent by the Ohloh server.
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.