Metadata-Version: 2.4
Name: kindred-rate-limit-guard
Version: 1.0.0
Summary: Cross-session and cross-process API rate limit guard for AI agents
Project-URL: Homepage, https://github.com/p-vbordei/rate-limit-guard-py
Project-URL: Repository, https://github.com/p-vbordei/rate-limit-guard-py
Project-URL: Issues, https://github.com/p-vbordei/rate-limit-guard-py/issues
Project-URL: Changelog, https://github.com/p-vbordei/rate-limit-guard-py/blob/main/CHANGELOG.md
Author-email: Vlad Bordei <bordeivlad@gmail.com>
License: Apache-2.0
License-File: LICENSE
Keywords: ai-agents,api,guard,llm,rate-limit,throttling
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# rate-limit-guard

Cross-session and cross-process API rate limit guard for AI agents.

## Usage

```python
from rate_limit_guard import RateLimitGuard

guard = RateLimitGuard()
cooldown = guard.get_remaining_cooldown()
if cooldown:
    print(f"Rate limited! Wait {cooldown}s")
```
