Metadata-Version: 1.1
Name: pytodoist
Version: 2.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 for interacting with `Todoist <http://www.todoist.com>`_. It hides the underlying API calls with higher-level abstractions that make it easy to use Todoist with Python.
        
        .. image:: https://pypip.in/py_versions/pytodoist/badge.svg?style=flat
            :target: https://pypi.python.org/pypi/pytodoist
        
        .. image:: https://pypip.in/license/pytodoist/badge.svg?style=flat
            :target: https://pypi.python.org/pypi/pytodoist
        
        .. image:: https://pypip.in/wheel/pytodoist/badge.svg?style=flat
            :target: https://pypi.python.org/pypi/pytodoist
        
        .. image:: https://pypip.in/download/pytodoist/badge.svg?style=flat
            :target: https://pypi.python.org/pypi/pytodoist
        
        .. image:: https://travis-ci.org/Garee/pytodoist.svg?branch=master
            :target: https://travis-ci.org/Garee/pytodoist.svg?branch=master
        
        .. image:: https://pypip.in/status/pytodoist/badge.svg?style=flat
            :target: https://pypi.python.org/pypi/pytodoist
        
        |
        
        Quick Start
        -----------
        
        Install the latest version:
        
        .. code-block:: bash
        
            $ pip install pytodoist
        
        Have fun:
        
        .. code-block:: python
        
            >>> from pytodoist import todoist
            >>> user = todoist.login('gary@garyblackwood.co.uk', 'pa$$w0rd')
            >>> projects = user.get_projects()
            >>> for project in projects:
            ...     print(project.name)
            ...
            Inbox
            Books to read
            Movies to watch
            Shopping
            Work
            Personal
            Health
            >>> inbox = user.get_project('Inbox')
            >>> task = inbox.add_task('Install PyTodoist',
            ...                        priority=todoist.Priority.VERY_HIGH)
            >>> task.complete()
        
        Documentation
        -------------
        
        Comprehensive online documentation can be found at http://pytodoist.readthedocs.org
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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
