コード例 #1
0
ファイル: santander.py プロジェクト: LAouini19/Website
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)
コード例 #2
0
ファイル: bixi.py プロジェクト: LAouini19/Website
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)
コード例 #3
0
ファイル: lacub.py プロジェクト: LAouini19/Website
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)
コード例 #4
0
ファイル: machikado.py プロジェクト: LAouini19/Website
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)
コード例 #5
0
ファイル: niceride.py プロジェクト: LAouini19/Website
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)
コード例 #6
0
ファイル: hubway.py プロジェクト: LAouini19/Website
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)