Project Page | Downloads | Contact
The libgtasks project is a pure Python binding to access Google Tasks.
import libgtasks user = libgtasks.User('gmailaccount', 'password') user.login() print user.requested_list.name for task in user.requested_list.tasks: print task.name
task = user.requested_list.tasks.append('task name')
task.delete()
task.completed = True
task.name = 'new name'
libgmail is a pure Pythong binding to access Google's Gmail web-mail service. http://libgmail.sourceforge.net/
mechanize is stateful programmatic web browsing in Python, after Andy Lester's Perl module WWW::Mechanize. http://wwwsearch.sourceforge.net/mechanize/