Metadata-Version: 1.1
Name: tasklib
Version: 0.3.1
Summary: Python Task Warrior library
Home-page: https://github.com/robgolding63/tasklib
Author: Rob Golding
Author-email: rob@robgolding.com
License: BSD
Download-URL: https://github.com/robgolding63/tasklib/downloads
Description: 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])
            <class 'tasklib.task.Task'>
            >>> 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/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
