Metadata-Version: 2.1
Name: redis-leakybucket-rate-limiter
Version: 1.0.1
Summary: A simple Redis-based leaky bucket rate limiter
Home-page: https://github.com/lee0210/rate-limiter
Author: Junwei(Lee) Li
Author-email: lee.j.w.li@outlook.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: redis

# Rate Limiter

A Redis-based Python package implementing the Leaky Bucket algorithm for rate limiting.

## Installation

```bash
pip install .
```

## Test
```bash
docker compose up tests && docker compose down
```
