Project Page | Downloads | Contact

libgtasks - Python binding to access Google Tasks

The libgtasks project is a pure Python binding to access Google Tasks.

Example Code:

import libgtasks
user = libgtasks.User('gmailaccount', 'password')
user.login()

print user.requested_list.name
for task in user.requested_list.tasks:
	print task.name

Dependencies: