Metadata-Version: 1.0
Name: taskw
Version: 0.1.8
Summary: Python bindings for your taskwarrior database
Home-page: http://github.com/ralphbean/taskw
Author: Ralph Bean
Author-email: ralph.bean@gmail.com
License: GPLv3+
Description: 
        
        This is a python API for the `taskwarrior <http://taskwarrior.org>`_ command
        line tool.
        
        Getting taskw
        -------------
        
        Installing
        ++++++++++
        
        Using ``taskw`` requires that you first install `taskwarrior
        <http://taskwarrior.org>`_.
        
        Installing it from http://pypi.python.org/pypi/taskw is easy with ``pip``::
        
            $ pip install taskw
        
        The Source
        ++++++++++
        
        You can find the source on github at http://github.com/ralphbean/taskw
        
        
        Examples
        --------
        
        Looking at tasks
        ++++++++++++++++
        
            >>> from taskw import load_tasks
            >>> tasks = load_tasks()
            >>> tasks.keys()
            ['completed', 'pending']
            >>> type(tasks['pending'])
            <type 'list'>
            >>> type(tasks['pending'][0])
            <type 'dict'>
        
        Adding tasks
        ++++++++++++
        
            >>> from taskw import task_add
            >>> task_add("Eat food")
            >>> task_add("Take a nap", priority="H", project="life")
        
        Completing tasks
        ++++++++++++++++
        
            >>> from taskw import task_done
            >>> task_done(46)
        
        Looking at the config
        +++++++++++++++++++++
        
            >>> from taskw import load_config
            >>> config = load_config()
            >>> config['data']['location']
            '/home/threebean/.task'
            >>> config['_forcecolor']
            'yes'
Keywords: taskwarrior task
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Intended Audience :: Developers
