WWW::Google::Notebook

WWW::Google::Notebook is a Perl interface for Google Notebook.
Download

WWW::Google::Notebook Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Jiro Nishiguchi
  • Publisher web site:
  • http://search.cpan.org/~jiro/Catalyst-Plugin-Authentication-Credential-BBAuth-0.03/lib/Catalyst/Plugin/Authentication/Credential/BBAuth.pm

WWW::Google::Notebook Tags


WWW::Google::Notebook Description

WWW::Google::Notebook is a Perl interface for Google Notebook. WWW::Google::Notebook is a Perl interface for Google Notebook.SYNOPSIS use WWW::Google::Notebook; my $google = WWW::Google::Notebook->new( username => $username, password => $password, ); $google->login; my $notebooks = $google->notebooks; # WWW::Google::Notebook::Notebook object as arrayref for my $notebook (@$notebooks) { print $notebook->title, "n"; my $notes = $notebook->notes; # WWW::Google::Notebook::Note object as arrayref for my $note (@$notes) { print $note->content, "n"; } } my $notebook = $google->add_notebook('title'); # WWW::Google::Notebook::Notebook object print $notebook->title; $notebook->rename('title2'); my $note = $notebook->add_note('note'); # WWW::Google::Notebook::Note object print $note->content; $note->edit('note2'); $note->delete; $notebook->delete;This module priovides you an Object Oriented interface for Google Notebook, using unofficial API. Requirements: · Perl


WWW::Google::Notebook Related Software