python-anydo
python-anydo copied to clipboard
Unofficial python bindings for Any.Do
To fix: In lib/auth.py change the server hostname to sm-prod2.any.do. Likewise in bind.py change the host to **host = "https://sm-prod2.any.do"** I think they have done a sneaky and changed their...
Any.Do chrome plugin supports both Facebook and Google Plus (recently introduced) logins. We should extend python-anydo to enable authentication via Facebook and Google Plus tokens.
Possible tasks: 1. Verify with cheesecake 2. Refer http://www.jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/
Any.Do mixes tasks and notes into single GET response of the API: ``` text api.get_all_tasks() ``` Should we separate tasks from notes and provide a more usable interface?
pylint complains: ************\* Module anydo.lib.bind R: 15,4:bind_method.AnyDoAPIBinderMethod: Too few public methods (1/2) R: 11,0:bind_method: Too many branches (18/12) If there is way to simplify bind module, we should explore it.
Is there a way to see who completed / checked-off a task and map the user id to a user name?
Hi, I am trying to add a task in a shared category. On the web page (any.do), the task is automatically shared as well. But with the python biding it...