A queue that allows for processing of items within one or more rate-limits.
Project description
A Queue That Respects Rate Limits.
The original prototype for this code was written to rate-limit calls to a geocoding api via geopy.
import geopy
from rate_limited_queue import RateLimitedQueue, RateLimit
addresses = open("some_file_of_addresses.txt").read().splitlines()
# No more than ten addresses geocoded per second
rate_limit = RateLimit(duration=1, max_per_interval=10)
geocoder = geopy.geocoder.OpenMapQuest()
q = RateLimitedQueue(
addresses,
processing_function = geocoder.geocode,
rate_limits = [rate_limit])
# Grabs the geocoded locations, but doesn't process
# more than ten per second
geocoded_locations = q.process()
Check out the docs for more information.
Installation
It’s up on PyPI, so just do a:
pip install rate_limited_queue
or:
sudo pip install rate_limited_queue
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.