Metadata-Version: 2.1
Name: bkkfutar
Version: 0.1
Summary: A simple client for BKK Futar API
Home-page: https://github.com/gabor-simon/bkk-futar-python-client
Author: Gabor Simon
Author-email: simonghun@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests

## BKK Futar API Python client

BKK Futar is a service of Budapest Transportation company to provide realtime information about Budapest public transportation including live vehicle tracking, stop times, schedules, route information etc. 
Webiste: (http://futar.bkk.hu)

The goal of this simple project to wrap available methods into a class collected from [BKK FUTÁR Utazásszervező API](https://bkkfutar.docs.apiary.io) documentation.

Source code: [Github](https://github.com/gabor-simon/bkk-futar-python-client)

Sample usage:
````python
import futar

api = futar.BkkFutar()
response = api.arrivals_and_departures_for_stop("BKK_F01004")
stop_times = response['data']['entry']['stopTimes']
print(stop_times)
````

