tasklib ======= .. image:: https://travis-ci.org/robgolding63/tasklib.png :target: http://travis-ci.org/robgolding63/tasklib tasklib is a Python library for interacting with taskwarrior_ databases, using a queryset API similar to that of Django's ORM. Supports Python 2.6, 2.7, 3.2 and 3.3 with taskwarrior 2.2.0 or 2.3.0 beta2. Older versions of taskwarrior are untested and probably won't work. Requirements ------------ * taskwarrior_ v2.2.0 or v2.3.0 beta2 Installation ------------ Install via pip:: pip install tasklib Usage ----- tasklib has a similar API to that of Django's ORM:: >>> from tasklib.task import TaskWarrior >>> tw = TaskWarrior('/home/rob/.task') >>> tasks = tw.tasks.pending() >>> tasks ['Tidy the house', 'Learn German'] >>> tasks.filter(tags__contain='chores') ['Tidy the house'] >>> type(tasks[0]) >>> task[0].done() >>> tasks = tw.tasks.pending() >>> tasks ['Learn German'] >>> tasks[0]['tags'] = ['languages'] >>> tasks[0].save() For more advanced usage, see the documentation_. .. _taskwarrior: http://taskwarrior.org .. _documentation: http://tasklib.readthedocs.org/en/latest/