12 lines
201 B
Python
12 lines
201 B
Python
from pprint import pprint
|
|
|
|
|
|
def fetch_bergbahnen(bbox) -> dict:
|
|
return {}
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
bbox = (46.72, 9.70, 46.92, 10.00)
|
|
result = fetch_bergbahnen(bbox)
|
|
pprint(result) |