Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 717 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 717 Bytes

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 documentation.

Source code: Github

Sample usage:

import futar

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