Metadata-Version: 1.0
Name: taskw
Version: 0.1
Summary: Python bindings for your taskwarrior database
Home-page: http://threebean.org
Author: Ralph Bean
Author-email: ralph.bean@gmail.com
License: UNKNOWN
Description: 
        
        This is a python API for the `taskwarrior <http://taskwarrior.org>`_ command
        line tool.
        
        Example
        -------
        
        ::
            >>> from taskw import load_tasks
            >>> tasks = load_tasks()
            >>> tasks.keys()
            ['completed', 'pending']
            >>> type(tasks['pending'])
            <type 'list'>
            >>> type(tasks['pending'][0])
            <type 'dict'>
        
            >>> from taskw import load_config
            >>> config = load_config()
            >>> config['data']['location']
            '/home/threebean/.task'
            >>> config['_forcecolor']
            'yes'
Keywords: taskwarrior task
Platform: UNKNOWN
