CityofSantaMonica / mds-provider

Python tools for working with MDS Provider data
https://github.com/openmobilityfoundation/mobility-data-specification
MIT License
18 stars 20 forks source link

Async client #13

Open thekaveman opened 5 years ago

thekaveman commented 5 years ago

The ProviderClient logic revolves around looping over a list of providers, and sending a bunch of serial requests for each (e.g. to get multiple pages of data for a given provider query). There is some room for potential improvement by making this asynchronous.

requests-futures looks interesting.