Metadata-Version: 2.4
Name: rate-sync
Version: 0.4.0
Summary: Simple, robust distributed rate limiter for Python — Redis, PostgreSQL, or in-memory
License: MIT
License-File: LICENSE
Keywords: rate-limiting,distributed-systems,asyncio,rate-limiter,coordination
Author: Rate-Sync Contributors
Requires-Python: >=3.12,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Framework :: AsyncIO
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Distributed Computing
Classifier: Typing :: Typed
Provides-Extra: all
Provides-Extra: fastapi
Provides-Extra: postgres
Provides-Extra: redis
Requires-Dist: asyncpg (>=0.30.0,<0.31.0) ; extra == "all" or extra == "postgres"
Requires-Dist: fastapi (>=0.100.0) ; extra == "all" or extra == "fastapi"
Requires-Dist: redis[asyncio] (>=5.0.0,<8.0.0) ; extra == "all" or extra == "redis"
Requires-Dist: starlette (>=0.27.0) ; extra == "all" or extra == "fastapi"
Requires-Dist: tomli (>=2.0.0,<3.0.0)
Project-URL: Changelog, https://github.com/rate-sync/python/blob/main/CHANGELOG.md
Project-URL: Documentation, https://github.com/rate-sync/python#readme
Project-URL: Homepage, https://github.com/rate-sync/python
Project-URL: Issues, https://github.com/rate-sync/python/issues
Project-URL: Repository, https://github.com/rate-sync/python
Description-Content-Type: text/markdown

<p align="center">
  <img src="https://raw.githubusercontent.com/rate-sync/python/main/docs/assets/logo.png" alt="rate-sync" width="200">
</p>

<h1 align="center">rate-sync</h1>

<p align="center">
  <a href="https://pypi.org/project/rate-sync/"><img src="https://img.shields.io/pypi/v/rate-sync.svg" alt="PyPI version"></a>
  <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.12+-blue.svg" alt="Python 3.12+"></a>
  <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License: MIT"></a>
  <a href="https://github.com/rate-sync/python/actions"><img src="https://img.shields.io/github/actions/workflow/status/rate-sync/python/test.yml?branch=main&label=tests" alt="Tests"></a>
</p>

<p align="center">Distributed rate limiting for Python with Redis, PostgreSQL, or in-memory backends.</p>

---

## What It Solves

### Brute force and credential stuffing on your auth endpoints

Attackers try thousands of password combinations. A sliding window limiter on your login endpoint stops them — and composite limiting blocks both single-IP attacks and distributed botnets hitting the same account.

```toml
[limiters.auth_credential]
store = "redis"
algorithm = "sliding_window"
limit = 5                # 5 attempts
window_seconds = 300     # per 5 minutes
```

> **Deep dive:** [Authentication Protection](https://github.com/rate-sync/python/blob/main/docs/patterns/authentication-protection.md) &middot; [Abuse Prevention](https://github.com/rate-sync/python/blob/main/docs/patterns/abuse-prevention.md)

### Different API quotas for free, pro, and enterprise customers

Your free tier gets 100 requests/hour. Pro gets 1,000. Enterprise gets 10,000. Define each tier as a limiter and clone it per user — rate-sync handles the rest.

```python
limiter = await get_or_clone_limiter(f"api_{tier}", api_key)
```

> **Deep dive:** [API Tiering](https://github.com/rate-sync/python/blob/main/docs/patterns/api-tiering.md)

### One tenant consuming all your platform's resources

In multi-tenant systems, a single noisy tenant can starve everyone else. Per-tenant rate limiting enforces fair usage — each tenant gets their share, and no one can monopolize your infrastructure.

```python
# Each tenant gets their own enforced limit
clone_limiter("platform_api", f"tenant:{tenant_id}")
await acquire(f"tenant:{tenant_id}")
```

> **Deep dive:** [Multi-Tenant Fairness](https://github.com/rate-sync/python/blob/main/docs/patterns/multi-tenant-fairness.md)

### Webhook floods taking down your customers' endpoints

Your platform sends webhooks to customer URLs. A bulk import triggers 10,000 events, and suddenly you're DDoS-ing your own customers. Per-endpoint rate limiting with automatic retries keeps delivery smooth without overwhelming anyone.

```python
limiter = await get_or_clone_limiter("webhook_endpoint", endpoint_url)
async with limiter.acquire_context(timeout=30.0):
    await http_client.post(endpoint_url, json=payload)
```

> **Deep dive:** [Webhook Delivery](https://github.com/rate-sync/python/blob/main/docs/patterns/webhook-delivery.md)

### File uploads and heavy operations eating all your resources

Five concurrent 1GB uploads can exhaust server memory. PDF generation can peg every CPU core. Concurrency limiting caps how many heavy operations run simultaneously — completely separate from request rate.

```toml
[limiters.upload]
store = "redis"
max_concurrent = 10          # max 10 uploads at once
timeout = 300.0
```

> **Deep dive:** [File Uploads & Heavy Resources](https://github.com/rate-sync/python/blob/main/docs/patterns/file-uploads.md)

### Background workers overwhelming third-party APIs

You have 20 Celery workers calling the Stripe API, which allows 100 req/s. Without coordination, your workers exceed the limit and get throttled. rate-sync coordinates across all workers through a shared Redis backend.

```toml
[limiters.stripe_api]
store = "redis"
rate_per_second = 90.0   # stay under Stripe's 100/s limit
max_concurrent = 10       # max 10 in-flight calls
```

> **Deep dive:** [Background Jobs](https://github.com/rate-sync/python/blob/main/docs/patterns/background-jobs.md)

### Rate limits that actually work across multiple servers

In-memory counters reset when a process restarts and can't coordinate across instances. rate-sync uses Redis or PostgreSQL as a shared backend, so limits are enforced consistently across your entire fleet.

```toml
[stores.redis]
engine = "redis"
url = "${REDIS_URL}"

[limiters.api]
store = "redis"          # all instances share this
rate_per_second = 100.0
```

> **Deep dive:** [Production Deployment](https://github.com/rate-sync/python/blob/main/docs/patterns/production-deployment.md)

### Knowing what's being blocked and why

Rate limiting without observability is flying blind. rate-sync exposes built-in metrics (acquisitions, wait times, timeouts) and integrates with Prometheus for dashboards and alerting.

```python
state = await limiter.get_state()
# → LimiterState(allowed=True, remaining=42, reset_at=1706367600)
```

> **Deep dive:** [Observability](https://github.com/rate-sync/python/blob/main/docs/observability.md) &middot; [Monitoring Patterns](https://github.com/rate-sync/python/blob/main/docs/patterns/monitoring.md)

---

## Features

- **Declarative configuration** - Define limits in TOML, use anywhere
- **Multiple backends** - Redis (recommended), PostgreSQL, or memory
- **Dual limiting** - Rate limiting (req/sec) + concurrency limiting (max parallel)
- **Two algorithms** - Token bucket for throughput, sliding window for quotas
- **FastAPI integration** - Dependencies, middleware, exception handlers
- **Async-first** - Built on asyncio with full type hints

## Installation

```bash
pip install rate-sync             # Memory backend only
pip install rate-sync[redis]      # + Redis support
pip install rate-sync[postgres]   # + PostgreSQL support
pip install rate-sync[fastapi]    # + FastAPI integration
pip install rate-sync[all]        # All backends + integrations
```

## Quick Start

**1. Create `rate-sync.toml`:**

```toml
[stores.main]
engine = "memory"  # or "redis", "postgres"

[limiters.api]
store = "main"
rate_per_second = 10.0
```

**2. Use it:**

```python
from ratesync import acquire

await acquire("api")  # Blocks until rate limit allows
```

That's it. Configuration auto-loads on import.

## Usage Patterns

### Context Manager (recommended for concurrency limits)

```python
async with acquire("api"):
    response = await client.get(url)
```

### Decorator

```python
from ratesync import rate_limited

@rate_limited("api")
async def fetch_data():
    return await client.get(url)
```

### Per-User/Tenant Limits (Recommended)

Use template strings — placeholders are resolved at call time:

```python
@rate_limited("api:{user_id}")
async def fetch_user_data(user_id: str):
    return await client.get(url)

@rate_limited("api:{tenant_id}:{user_id}")
async def multi_tenant_api(tenant_id: str, user_id: str):
    return await client.post(url)
```

### Per-User Limits (Manual)

For advanced cases where you need direct limiter control:

```python
from ratesync import get_or_clone_limiter

limiter = await get_or_clone_limiter("api", user_id)
async with limiter.acquire_context():
    response = await client.get(url)
```

## Backends

### Memory (development)

```toml
[stores.local]
engine = "memory"
```

### Redis (production)

```toml
[stores.redis]
engine = "redis"
url = "redis://localhost:6379/0"
```

### PostgreSQL

```toml
[stores.db]
engine = "postgres"
url = "postgresql://user:pass@localhost/mydb"
```

## Algorithms

### Token Bucket (default)

Controls request throughput with optional concurrency limits:

```toml
[limiters.external_api]
store = "redis"
rate_per_second = 100.0  # Max 100 req/sec
max_concurrent = 10      # Max 10 in-flight requests
timeout = 30.0           # Wait up to 30s for a slot
```

### Sliding Window

Counts requests in a time window. Ideal for login protection:

```toml
[limiters.login]
store = "redis"
algorithm = "sliding_window"
limit = 5              # Max 5 attempts
window_seconds = 300   # Per 5 minutes
```

## FastAPI Integration

> **Requires:** `pip install rate-sync[fastapi]`

```python
from fastapi import Depends, FastAPI
from ratesync.contrib.fastapi import (
    RateLimitDependency,
    RateLimitExceededError,
    rate_limit_exception_handler,
)

app = FastAPI()
app.add_exception_handler(RateLimitExceededError, rate_limit_exception_handler)

@app.get("/api/data")
async def get_data(_: None = Depends(RateLimitDependency("api"))):
    return {"status": "ok"}
```

## Programmatic Configuration

Skip the TOML file if you prefer code:

```python
from ratesync import configure_store, configure_limiter, acquire

configure_store("main", strategy="redis", url="redis://localhost:6379/0")
configure_limiter("api", store_id="main", rate_per_second=100.0)

await acquire("api")
```

## Documentation

| Topic | Link |
|-------|------|
| Configuration Reference | [docs/configuration.md](https://github.com/rate-sync/python/blob/main/docs/configuration.md) |
| API Reference | [docs/api-reference.md](https://github.com/rate-sync/python/blob/main/docs/api-reference.md) |
| FastAPI Integration | [docs/fastapi-integration.md](https://github.com/rate-sync/python/blob/main/docs/fastapi-integration.md) |
| Redis Setup | [docs/setup/redis-setup.md](https://github.com/rate-sync/python/blob/main/docs/setup/redis-setup.md) |
| PostgreSQL Setup | [docs/setup/postgres-setup.md](https://github.com/rate-sync/python/blob/main/docs/setup/postgres-setup.md) |
| Observability | [docs/observability.md](https://github.com/rate-sync/python/blob/main/docs/observability.md) |

### Patterns

- [Authentication Protection](https://github.com/rate-sync/python/blob/main/docs/patterns/authentication-protection.md)
- [Abuse Prevention](https://github.com/rate-sync/python/blob/main/docs/patterns/abuse-prevention.md)
- [API Tiering](https://github.com/rate-sync/python/blob/main/docs/patterns/api-tiering.md)
- [Multi-Tenant Fairness](https://github.com/rate-sync/python/blob/main/docs/patterns/multi-tenant-fairness.md)
- [Webhook Delivery](https://github.com/rate-sync/python/blob/main/docs/patterns/webhook-delivery.md)
- [File Uploads & Heavy Resources](https://github.com/rate-sync/python/blob/main/docs/patterns/file-uploads.md)
- [Graceful Degradation](https://github.com/rate-sync/python/blob/main/docs/patterns/graceful-degradation.md)
- [Background Jobs](https://github.com/rate-sync/python/blob/main/docs/patterns/background-jobs.md)
- [Burst Tuning Guide](https://github.com/rate-sync/python/blob/main/docs/patterns/burst-tuning.md)
- [Gradual Rollout](https://github.com/rate-sync/python/blob/main/docs/patterns/gradual-rollout.md)
- [Monitoring](https://github.com/rate-sync/python/blob/main/docs/patterns/monitoring.md)
- [Testing](https://github.com/rate-sync/python/blob/main/docs/patterns/testing.md)
- [Production Deployment](https://github.com/rate-sync/python/blob/main/docs/patterns/production-deployment.md)

## Contributing

```bash
git clone https://github.com/rate-sync/python.git
cd python
poetry install
poetry run pytest
```

See [CONTRIBUTING.md](https://github.com/rate-sync/python/blob/main/CONTRIBUTING.md) for guidelines.

## License

MIT

