Metadata-Version: 1.1
Name: tapioca-toggl
Version: 0.1.0
Summary: Python wrapper for Toggl API v8
Home-page: https://github.com/hackebrot/tapioca-toggl
Author: Raphael Pierzina
Author-email: raphael@hackebrot.de
License: MIT
Description: Tapioca-Toggl
        =============
        
        |gitter| |pypi| |pyversions| |license|
        
        .. |gitter| image:: https://badges.gitter.im/Join%20Chat.svg
           :alt: Join the chat at https://gitter.im/hackebrot/tapioca-toggl
           :target: https://gitter.im/hackebrot/tapioca-toggl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
        
        .. |pypi| image:: https://img.shields.io/pypi/v/tapioca-toggl.svg
           :target: https://pypi.python.org/pypi/tapioca-toggl
           :alt: PyPI Package
        
        .. |pyversions| image:: https://img.shields.io/pypi/pyversions/tapioca-toggl.svg
           :target: https://pypi.python.org/pypi/tapioca-toggl/
           :alt: PyPI Python Versions
        
        .. |license| image:: https://img.shields.io/pypi/l/tapioca-toggl.svg
           :target: https://pypi.python.org/pypi/tapioca-toggl
           :alt: PyPI Package License
        
        Python wrapper for `Toggl API v8`_
        
        Installation
        ------------
        
        **tapioca-toggl** is available for download from `PyPI`_ via `pip`_::
        
            $ pip install tapioca-toggl
        
        .. _`pip`: https://pypi.python.org/pypi/pip/
        .. _`PyPI`: https://pypi.python.org/pypi
        
        Usage
        -----
        
        Create a new API instance and send requests as follows:
        
        .. code-block:: python
        
            from tapioca_toggl import Toggl
        
            api = Toggl(access_token='{your-access-token}')
        
            response = api.me_with_related_data().get()
            me = response.data()
        
        Documentation
        -------------
        
        For a list of all of the available endpoints, please consult `resource_mapping.py`_.
        
        You can find more information on Tapioca at the `Tapioca-Wrapper docs`_.
        
        .. _`resource_mapping.py`: https://github.com/hackebrot/tapioca-toggl/blob/master/tapioca_toggl/resource_mapping.py
        .. _`Tapioca-Wrapper docs`: http://tapioca-wrapper.readthedocs.org/en/latest/quickstart/
        
        
        Code of Conduct
        ---------------
        
        Everyone interacting in the Tapioca-Toggl project's codebases, issue trackers, chat
        rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
        
        .. _`PyPA Code of Conduct`: https://www.pypa.io/en/latest/code-of-conduct/
        
        License
        -------
        
        Distributed under the terms of the `MIT`_ license, Tapioca-Toggl is free and open source software
        
        .. _`MIT`: http://opensource.org/licenses/MIT
        .. _`Toggl API v8`: https://github.com/toggl/toggl_api_docs
        
Keywords: toggl,api-wrapper
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python
