Metadata-Version: 2.4
Name: aioadaptive
Version: 0.1.0
Summary: Add your description here
Author-email: Jesse Saran <8915311+swrap@users.noreply.github.com>
Requires-Python: >=3.12
Requires-Dist: aiohttp>=3.12.14
Requires-Dist: anyio>=3.0.0
Description-Content-Type: text/markdown

# Aio Adaptive

Project is based off of [Netflix Concurrency](https://github.com/Netflix/concurrency-limits), but for python!
The initial setup allows for someone to configure the Vegas adaptive rate limit.

See the examples below for how to leverage it.

## Install

TODO

## Developer Setup

1. Navigate to the Server Directory

   ```bash
   cd aioadaptive
   ```

2. Install Server Requirements

   ```bash
   uv venv .venv
   source .venv/bin/activate
   uv sync
   ```

3. Run tests

   ```bash
   pytest
   ```
