Metadata-Version: 2.1
Name: toodledo
Version: 0.9
Summary: Python wrapper for the Toodledo v3 API which is documented at http://api.toodledo.com/3/
Home-page: https://github.com/rkhwaja/toodledo-python
Author: Rehan Khwaja
Author-email: rehan@khwaja.name
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: marshmallow
Requires-Dist: requests
Requires-Dist: requests-oauthlib

Overview
========
Python wrapper for the Toodledo v3 API which is documented at http://api.toodledo.com/3/

.. image:: https://travis-ci.org/rkhwaja/toodledo-python.svg?branch=master
   :target: https://travis-ci.org/rkhwaja/toodledo-python

Usage
=====

.. code-block:: python

  toodledo = Toodledo(
    clientId="YourClientId",
    clientSecret="YourClientSecret",
    tokenStorage=TokenStorageFile(YourConfigFile),
    scope="basic tasks notes folders write")

  account = toodledo.GetAccount()

  allTasks = toodledo.GetTasks(params={})


