The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Evernote::Notebook

VERSION

Version 0.06

SYNOPSIS

    use Net::Evernote;
    use Net::Evernote::Notebook;

    my $evernote = Net::Evernote->new({
        authentication_token => $authentication_token
    });

    my $notebook = $evernote->createNotebook({
        name => 'notebook name',
    });

    my $notebookGuid = $notebook->guid;
    my $note = $evernote->createNote({
        title         => 'test title',
        content       => 'test content',
        notebook_guid => $notebookGuid,
    });

SEE ALSO

http://www.evernote.com/about/developer/api/

AUTHOR

David Collins <davidcollins4481@gmail.com>

BUGS/LIMITATIONS

If you have found bugs, please send email to <davidcollins4481@gmail.com>

SUPPORT

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

    perldoc Net::Evernote::Notebook

COPYRIGHT & LICENSE

Copyright 2013 David Collins, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.