I am not sure wether on exists .But we could use perl to make one.
Let's cook up something simple and fast.
Modules : LWP/WWW::Mechanize.
First we perform a get on the cpan main page.
use strict; use diagnostics; use WWW::Mechanize; my $page = WWW::Mechanize->new; $page->get("http://search.cpan.org/";)||die("Cannot get cpan:$!");

The "die" does the work of a status check .One could also do $page->status.
Then,if you want to make sure you have the right page ,use a regex/string on something that you expect to be in the output.
Arggh i was just getting started and noticed there was a module list on cpan
http://cpan.org/modules/00modlist.long.html
So much for lets innovate
Regards,
Chimni

In reply to Re: Module Sheet by chimni
in thread Module Sheet by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.