Metadata-Version: 2.1
Name: AutomaticAPI
Version: 0.3
Summary: Python support for the Automatic API which is documented at https://developer.automatic.com/documentation/
Home-page: https://github.com/rkhwaja/automatic_api
Author: Rehan Khwaja
Author-email: rehan@khwaja.name
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: requests
Requires-Dist: requests-oauthlib

Overview
========
Python support for the Automatic API which is documented at https://developer.automatic.com/documentation/

Usage
=====

.. code:: python

 scopes = ["public", "location", "vehicle:profile", "vehicle:events", "trip"]
 automatic = Automatic(<<clientId>>, <<clientSecret>>, <<credentialsPath>>, scopes)
 trips = automatic.Trips()


