Requests rate limitingΒΆ

The Discogs API has rate limitations as documented on the discogs.com API documentation pages. python3-discogs-client respects and handles these limitations automatically.

Backing off and auto retry when API rate limit is hit is enabled by default and can be disabled as follows:

>>> import discogs_client
>>> d = discogs_client.Client('ExampleApplication/0.1')
>>> d.backoff_enabled = False