Skip to content

Instantly share code, notes, and snippets.

@eskerda
Created October 2, 2025 12:08
Show Gist options
  • Select an option

  • Save eskerda/919bb934b999f296ec189c4b33ef5d59 to your computer and use it in GitHub Desktop.

Select an option

Save eskerda/919bb934b999f296ec189c4b33ef5d59 to your computer and use it in GitHub Desktop.
Some example feed for pybikes
{
"stations": [
{
"name": "Station Foo",
"latitude": 1.1,
"longitude": 1.1,
"bikes": 42,
"free": 33,
"id": 1,
"online": true
},
{
"name": "Station Bar",
"latitude": 1.1,
"longitude": 1.1,
"bikes": 42,
"free": 33,
"id": 2,
"online": false
}
],
"vehicles": [
{
"latitude": 1.1,
"longitude": 1.1,
"type": "bicycle",
"id": "some-vehicle-1",
"online": true
},
{
"latitude": 1.1,
"longitude": 1.1,
"type": "ebike",
"id": "some-vehicle-2",
"online": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment