Metadata-Version: 1.1
Name: pytodoist
Version: 1.0.0
Summary: A python wrapper for the Todoist API.
Home-page: http://www.github.com/Garee/pytodoist
Author: Gary Blackwood
Author-email: gary@garyblackwood.co.uk
License: MIT
Description: pytodoist
        ---------
        
        PyTodoist is a Python package that provides simple methods for interacting with Todoist. It hides the underlying web API calls with higher-level abstractions that make it easy to use Todoist with Python.
        
        Documentation
        -------------
        
        Comprehensive online documentation can be found at http://pytodoist.readthedocs.org
        
        Requirements
        ------------
        PyTodoist supports python versions > 2.7 and dependencies can be installed
        using pip:
        
            $ pip install -r requirements.txt
        
        Install
        -------
        
        Install the latest version:
        
            $ pip install pytodoist
        
        Install from source:
        
            $ git clone git://github.com/Garee/PyTodoist.git
            $ cd PyTodoist
            $ python setup.py install
        
        Test
        ----
        This project uses Travis for continuous integration testing:
        
             https://travis-ci.org/Garee/pytodoist
        
        Run the unit tests locally:
        
            $ make test
        
        Example
        -------
        
        >>> from pytodoist import todoist
        >>> user = todoist.login('gary@garyblackwood.co.uk', 'mysecretpassword')
        >>> user.is_logged_in()
        True
        >>> print user.full_name
        Gary Blackwood
        >>> projects = user.get_projects()
        >>> for project in projects:
        ...     print project.name
        ...
        Inbox
        PyTodoist
        >>> inbox = user.get_project('Inbox')
        >>> task = inbox.add_task('Install PyTodoist',
        ...                        priority=todoist.Priority.VERY_HIGH)
        >>> task.complete()
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
