Metadata-Version: 2.4
Name: ignyx
Version: 2.10.0
Classifier: Development Status :: 5 - Production/Stable
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: Programming Language :: Rust
Classifier: Framework :: AsyncIO
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Dist: pydantic>=2.0.0 ; extra == 'dependencies'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-asyncio ; extra == 'dev'
Requires-Dist: websockets ; extra == 'dev'
Requires-Dist: httpx ; extra == 'dev'
Requires-Dist: pydantic ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: ruff ; extra == 'dev'
Requires-Dist: maturin ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: watchfiles ; extra == 'reload'
Provides-Extra: dependencies
Provides-Extra: dev
Provides-Extra: reload
License-File: LICENSE
Summary: Rust-powered Python web framework — 10x faster than FastAPI
Keywords: web,framework,rust,api,http,fast
Author: Saketh Jangala
License: MIT
Requires-Python: >=3.12
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Bug Tracker, https://github.com/sakethdevx/ignyx/issues
Project-URL: Homepage, https://github.com/sakethdevx/ignyx
Project-URL: Repository, https://github.com/sakethdevx/ignyx

<p align="center">
  <img src="https://raw.githubusercontent.com/sakethdevx/ignyx/main/docs/assets/ignyx-logo.png" alt="Ignyx Logo" width="200" onerror="this.src='https://placehold.co/400x150/1e1e2e/e0e0e0?text=Ignyx&font=lora'">
  <br>
  <em>Ignite your API. Built in Rust, runs in Python.</em>
</p>

<p align="center">
  <a href="https://pypi.org/project/ignyx/">
    <img src="https://img.shields.io/pypi/v/ignyx" alt="PyPI version">
  </a>
  <a href="https://pepy.tech/projects/ignyx">
    <img src="https://static.pepy.tech/personalized-badge/ignyx?period=total&units=INTERNATIONAL_SYSTEM&left_color=grey&right_color=brightgreen&left_text=Downloads" alt="Downloads">
  </a>
  <a href="https://github.com/sakethdevx/ignyx/actions">
    <img src="https://github.com/sakethdevx/ignyx/actions/workflows/CI.yml/badge.svg" alt="CI status">
  </a>
  <a href="https://github.com/sakethdevx/ignyx/actions">
    <img src="https://img.shields.io/badge/coverage-80%25-brightgreen" alt="Coverage">
  </a>
  <a href="https://pypi.org/project/ignyx/">
    <img src="https://img.shields.io/pypi/pyversions/ignyx" alt="Python versions">
  </a>
  <a href="https://sakethdevx.github.io/ignyx">
    <img src="https://img.shields.io/badge/docs-online-blue" alt="Docs">
  </a>
</p>

# Ignyx

> 📖 **[Full Documentation](https://sakethdevx.github.io/ignyx)**

Ignyx is a next-generation Python web framework engineered for maximum throughput, utilizing a Rust-powered HTTP core built on Hyper and Tokio. It provides a familiar, FastAPI-like decorator syntax, allowing developers to build high-performance APIs with zero learning curve. In honest benchmarks, Ignyx operates 8-9x faster than standard Python async frameworks.

## Features

- **Blazing Fast**: 8-9x faster than FastAPI in standard benchmarks.
- **Zero Overhead**: Owns the full HTTP pipeline — no ASGI overhead.
- **Hot Reload**: Blazing fast development with built-in file watcher.
- **Pydantic v2**: Deep integration for request body validation.
- **Advanced OpenAPI**: Auto-generates schemas with Pydantic model support.
- **Dependency Injection**: Familiar `Depends()` pattern for clean logic.
- **WebSockets**: Native, high-concurrency WebSocket support.
- **Modular**: Organize APIs with `Router` prefixes.
- **Typed**: Shipped with `py.typed` for perfect IDE autocompletion.

## Benchmark

*Apple M2, `wrk -t4 -c100 -d10s`*

| Endpoint           | Ignyx        | FastAPI     | Speedup |
| ------------------ | ------------ | ----------- | ------- |
| `/plaintext`       | 51,771 req/s | 5,846 req/s | 🔥 8.8x |
| `/json`            | 37,138 req/s | 4,844 req/s | 🔥 7.6x |
| `/users/{id}`      | 43,261 req/s | 5,306 req/s | 🔥 8.1x |

*Note: Ignyx tested with native Rust core. FastAPI tested with Uvicorn single worker — standard config.*

## Installation

```bash
pip install ignyx==2.10.0
```

Or with `uv`:

```bash
uv add ignyx
```

## Quickstart

```python
from ignyx import Ignyx

app = Ignyx()

@app.get("/")
async def root(request):
    return {"message": "Hello from Ignyx!"}

if __name__ == "__main__":
    app.run(host="0.0.0.0", port=8000, reload=True)
```

## Feature Examples

<details>
<summary><b>Pydantic Validation</b></summary>

```python
from ignyx import Ignyx
from pydantic import BaseModel

app = Ignyx()

class User(BaseModel):
    name: str
    age: int

@app.post("/users")
async def create_user(user: User):
    return {"status": "success", "data": user.model_dump()}
```

</details>

<details>
<summary><b>Path + Query Parameters</b></summary>

```python
from ignyx import Ignyx

app = Ignyx()

@app.get("/users/{id}")
async def get_user(id: int, format: str = "json"):
    return {"id": id, "format": format}
```

</details>

<details>
<summary><b>Dependency Injection</b></summary>

```python
from ignyx import Ignyx, Depends

app = Ignyx()

def get_db():
    db = Database()
    try:
        yield db
    finally:
        db.close()

@app.get("/users")
async def get_users(db = Depends(get_db)):
    return db.query("SELECT * FROM users")
```

</details>

<details>
<summary><b>WebSockets</b></summary>

```python
from ignyx import Ignyx

app = Ignyx()

@app.websocket("/echo")
async def echo_server(ws):
    await ws.accept()
    while True:
        data = await ws.receive_text()
        await ws.send_text(f"Echo: {data}")
```

</details>

## Comparison vs FastAPI

| Feature                | Ignyx   | FastAPI |
| ---------------------- | ------- | ------- |
| Pydantic v2 validation | ✅      | ✅      |
| Async/Await            | ✅      | ✅      |
| Dependency Injection   | ✅      | ✅      |
| WebSockets             | ✅      | ✅      |
| Modular Routers        | ✅      | ✅      |
| Performance (req/s)    | ~50k    | ~6k     |
| ASGI overhead          | ❌ None | ✅ Yes  |
| Hot Reload             | ✅      | ✅      |
| Native Rust Core       | ✅      | ❌      |

## Contributing

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details on how to set up your development environment.

## Deployment Note

Ignyx manages its own Tokio runtime. No Uvicorn or Gunicorn needed. Just `python app.py`.

## License

This project is licensed under the [MIT License](LICENSE).

