Ant*_*vBR 5

这是你想要的吗?

import requests

url = 'https://gbfs.fordgobike.com/gbfs/gbfs.json'
data = requests.get(url).json()

print(data)
Run Code Online (Sandbox Code Playgroud)

可用的游乐设施数量,请尝试以下操作:

import requests

url = 'https://gbfs.fordgobike.com/gbfs/en/station_status.json'
data = requests.get(url).json()

d = {s['station_id']:s['num_bikes_available'] for s in data['data']['stations']}

print(d)
Run Code Online (Sandbox Code Playgroud)

结果:

{'10': 28,
 '100': 14,
 '101': 8,
 '102': 22,
 '103': 0,
 '104': 0,
 '105': 5,
 '106': 1,
 '107': 14,
 '108': 1,
 '109': 2,
 '11': 16,
 '110': 10,
 '112': 13,
 '113': 5,
 '114': 9,
  ...
Run Code Online (Sandbox Code Playgroud)