This repository was archived by the owner on Jan 18, 2023. It is now read-only.
Version 2.1.0: CSV Conversion Speedup and Explicit Throttle Parameters
Version 2.1.0:
-
Update the CSV conversion speed
- Ex: 20000 FSIDs for the probability depth product now take about 68 seconds instead of 1310 seconds
-
Add explicit throttle parameters to the API initialization
- Ex:
fs = firststreet.FirstStreet(api_key, log=True, rate_limit=1, rate_period=1)now runs 1 request per second - Ex:
fs = firststreet.FirstStreet(api_key, log=True, rate_limit=20000, rate_period=3600)runs 20000 request per hour
- Ex: