NAME
Bio::Cellucidate::Bookshelf
SYNOPSIS
# Set your authentication, see L<http://cellucidate.com/api> for more info.
$Bio::Cellucidate::AUTH
= {
login
=>
'email@server'
,
api_key
=>
'12334567890'
};
# All your bookshelves
$bookshelves
= Bio::Cellucidate::Bookshelf->find(
$hashref
);
# Bookshelf by a bookshelf id
$bookshelf
= Bio::Cellucidate::Bookshelf->get(
$bookshelf_id
);
# All books on a bookshelf (given an id);
$books
= Bio::Cellucidate::Bookshelf->books(
$bookshelf_id
);
SEE ALSO
AUTHOR
Brian Kaney, <brian@vermonster.com<gt>
COPYRIGHT AND LICENSE
Copyright (C) 2010 by Brian Kaney
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.9 or, at your option, any later version of Perl 5 you may have available.