Example application for making HTTP requests in parallel with throttling to not exceed rate limits.
To build, execute:
docker build -t python-parallel-requests .
To run, execute:
docker run --rm -it python-parallel-requests [ARG]
where ARG can be one of three values:
parallel- Makes all HTTP requests in parallelthrottle- Makes all HTTP requests in parallel, but is throttled to five per secondsequential- Makes each HTTP request sequentially