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

NAME

Net::Evernote - Perl API for Evernote

VERSION

Version 0.06

SYNOPSIS

    use Net::Evernote;

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

    # write a note
    my $res = $evernote->createNote({
        title => $title,
        content => $content
    });

    my $guid = $res->guid;

    # get the note
    my $thisNote = $evernote->getNote({ guid => $guid });
    print $thisNote->title,"\n";
    print $thisNote->content,"\n";

    # delete the note
    $evernote->deleteNote({ guid => $guid });

    # find notes
    my $search = $evernote->findNotes({ keywords => $keywords, offset => $offset, max_notes => 5 });
    for my $thisNote ( @{$search->notes} ) {
        print $thisNote->guid,"\n";
        print $thisNote->title,"\n";
    }

METHODS

More docs coming for this.

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

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.