Metadata-Version: 2.0
Name: tilapya
Version: 0.1.0
Summary: TransLink Open API, in Python.
Home-page: https://github.com/carsonyl/tilapya
Author: Carson Lam
Author-email: carson.lam@alumni.ubc.ca
License: Apache Software License 2.0
Description-Content-Type: UNKNOWN
Keywords: tilapya vancouver transit translink
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=2.7, ~=3.4
Requires-Dist: requests (<3.0.0,>=2.18.4)
Requires-Dist: marshmallow (<4.0.0,>=3.0.0b7)
Requires-Dist: pytz

Tilapya: TransLink API, in Python
=================================

**Tilapya** is a Python wrapper around the `TransLink Open API <https://developer.translink.ca/>`_,
which provides real-time transit information for the Metro Vancouver region.

Tilapya has three interfaces which correspond directly to components of the TransLink Open API:

* **RTTI**: Real-Time Transit Information
* **RTDS**: Regional Traffic Data System
* **GTFSRT**: GTFS-realtime feeds

Tilapya is more than a thin wrapper around the underlying REST APIs.
It smooths over some of the quirky and inconvenient responses,
and guarantees a consistent schema in returned responses.


Installation
------------

Install Tilapya using `pip <https://pip.pypa.io>`_::

    $ pip install tilapya

The source is also `available on GitHub <https://github.com/carsonyl/tilapya>`_.

Getting started
---------------

Use of the TransLink Open API, and thus Tilapya, requires an API key.
If you don't already have an API key, you can get one by registering for an account at
https://developer.translink.ca/Account/Register.


=======
History
=======

0.1.0
------------------

* Initial version.


