def stations(city): # The city parameter is necessary so that everything works url = 'https://tfl.gov.uk/tfl/syndication/feeds/cycle-hire/' + \ 'livecyclehireupdates.xml' data = tb.query_API(url) stations = tb.load_xml(data) return normalize(stations)
def stations(city): designations = { 'Toronto': 'toronto', 'Montréal': 'montreal', 'Ottawa': 'capitale' } designation = designations[city] url = 'https://{}.bixi.com/data/bikeStations.xml'.format(designation) data = tb.query_API(url) stations = tb.load_xml(data) return normalize(stations)
def stations(city): # The city parameter is necessary so that everything works key = keys["lacub"] url = ( "http://data.lacub.fr/wfs?key={}" "&SERVICE=WFS&VERSION=1.1.0&" "REQUEST=GetFeature" "&TYPENAME=CI_VCUB_P&SRSNAME=EPSG:4326" ) data = tb.query_API(url) stations = tb.load_xml(data) return normalize(stations)
def stations(city): # The city parameter is necessary so that everything works url = "http://minaport.ubweb.jp/stations.php" data = tb.query_API(url) stations = tb.load_xml(data) return normalize(stations)
def stations(city): # The city parameter is necessary so that everything works url = 'https://secure.niceridemn.org/data2/bikeStations.xml' data = tb.query_API(url) stations = tb.load_xml(data) return normalize(stations)
def stations(city): # The city parameter is necessary so that everything works url = 'http://www.thehubway.com/data/stations/bikeStations.xml' data = tb.query_API(url) stations = tb.load_xml(data) return normalize(stations)