Acme::Playmate - An object-oriented interface to playboy.com


Acme-Playmate documentation  | view source Contained in the Acme-Playmate distribution.

Index


VERSION

Top

Version 0.04

SYNOPSIS

Top

    use Acme::Playmate;

    my $bunny = Acme::Playmate->new(2007, 1);

    print "Details for playmate " . $bunny->name() . "\n"; # Jayde Nicole

    print "Birthplace: " . $bunny->birthplace() . "\n";  # 'Scarborough, Ontario'
    print "Bust: "       . $bunny->bust()       . "\n";  # 34" C
    print "Waist: "      . $bunny->waist()      . "\n";  # 24
    print "Hips: "       . $bunny->hips()       . "\n";  # 35
    print "Height: "     . $bunny->height()     . "\n";  # 5' 9"
    print "Weight: "     . $bunny->weight()     . "\n";  # 117 lbs

    $bunny->next();      # goes to next month's playmate
    $bunny->previous();  # goes to previous month's playmate

    $bunny->link();      # link to oficial playboy.com's Playmate Directory

    # (not yet implemented)
    while (my ($q, $a) = each $bunny->questions) {
        print "$q\n";  # ambitions, turn-ons, good first date, ...
        print "$a\n";  # answers! Feeling lucky? ;)
    }




DESCRIPTION

Top

Acme::Playmate lets you browse all of Playboy's "Playmate of the Month" (a.k.a. Centerfolds) information.

new ( YYYY, MM )

Intantiates a new playmate. Receives year and month as parameters. If the month is omitted, fetches the 'Playmate of the Year' (feature is not yet implemented). If no parameter is given, defaults to the first playmate ever (The eternal Marilyn Monroe, December 1953). Returns undef if unable to fetch information.

name, birthplace, bust, waist, hips, height, weight

I think those are self-explanatory :)

questions

(not yet implemented)

Should return questions and answers from the Playmate's Data Sheet

previous

...and now your object is the Playmate of the previous month. Returns undef if there is none.

next

...and now your object is the Playmate of the following month. Returns undef if there is none.

AUTHOR

Top

Olle S. de Zwart, <olle at endforward.nl>

Currently mantained by Breno G. de Oliveira <garu at cpan.org>

BUGS AND LIMITATIONS

Top

Due to copyright restrictions, information cannot be cached, so you'll need an active Internet connection to use this module.

Please report any bugs or feature requests to bug-acme-playmate at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-Playmate. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Acme::Playmate




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-Playmate

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Acme-Playmate

* CPAN Ratings

http://cpanratings.perl.org/d/Acme-Playmate

* Search CPAN

http://search.cpan.org/dist/Acme-Playmate/

ACKNOWLEDGEMENTS

Top

Many thanks to the playboy.com team for putting the playmates' contents online for the readers.

SEE ALSO

Top

Playboy's Website: http://www.playboy.com

COPYRIGHT & LICENSE

Top


Acme-Playmate documentation  | view source Contained in the Acme-Playmate distribution.