ItsDrike / code-jam-2024

Python Discord's Code Jam 2024, Contemplative Constellations Team
MIT License
1 stars 1 forks source link

Rate limiting for tvdb #53

Closed ItsDrike closed 3 months ago

ItsDrike commented 3 months ago

The tvdb API doesn't seem to have any built-in rate-limits, that said, we definitely shouldn't spam it too much. For that reason, we should implement per-user rate limits on these interactions, probably alongside a global rate-limit.

Probably requires #39 (to keep track of previous request times easily, without a global variable)