Metadata-Version: 2.3
Name: heaven
Version: 1.3.6
Summary: Extremely Stupid Simple, Blazing Fast, Get Out of your way immediately Microframework for building Python Web Applications.
License: MIT
Author: Raymond Ortserga
Author-email: ortserga@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: aiofiles (>=23.0.0,<24.0.0)
Requires-Dist: jinja2 (>=3.1.0,<4.0.0)
Requires-Dist: msgspec (>=0.18.0)
Requires-Dist: rich (>=13.0.0)
Requires-Dist: uvicorn (>=0.14)
Requires-Dist: websockets (>=12.0)
Description-Content-Type: text/markdown

# Heaven ⚡ : <img src="https://img.shields.io/badge/coverage-95%25-green" />

**Heaven** is the absolute minimal, insanely fast [ASGI](https://asgi.readthedocs.io) web framework for Python purists. It doesn't just get out of your way; it vanishes, leaving you with raw performance and total control.

> "Mastery in 30 minutes or less. No grey spots, just pure Python."

<hr/>

### Why Heaven?

| Feature | Heaven | FastAPI | Flask | Django |
| :--- | :---: | :---: | :---: | :---: |
| **Learning Curve** | 30 Mins | High | Low | Extreme |
| **Performance** | ⚡⚡⚡ | ⚡⚡ | ⚡ | 🐢 |
| **Boilerplate** | Zero | Medium | Low | Massive |
| **Mastery** | Complete | Partial | High | Low |
| **Background Jobs**| Native (Daemons) | External | External | External |

1. **Stupid Simple**: Built for engineers who hate bloat. If you know Python, you already know Heaven.
2. **Blazing Fast**: A thin layer over ASGI, optimized for high-concurrency and low-latency.
3. **Batteries Included (The right ones)**: Native support for application mounting, centralized hooks (`.BEFORE`/`.AFTER`), and powerful background **Daemons**.
4. **Transparent**: No magic decorators that hide logic. Just clear, explicit routing.

<hr/>

## Quickstart in 60 Seconds

1. **Install** 
```sh
$ pip install heaven
```

2. **Code**
```python
from heaven import App, Request, Response, Context

app = App()

# Centralized Auth / Pre-processing
async def auth(req, res, ctx):
    if not req.headers.get('Authorization'):
        res.status = 401
        res.abort('Unauthorized')

app.BEFORE('/api/*', auth)

# Simple Handler
async def welcome(req, res, ctx):
    res.body = {"message": "Welcome to Heaven"}

app.GET('/api/v1/welcome', welcome)

3. **Protect** (Automatic OpenAPI)
```python
from heaven import Schema

class User(Schema):
    name: str

app.schema.POST('/user', expects=User, summary="Create User")
app.DOCS('/docs')
```

4. **Fly** (CLI)
Heaven comes with a beautiful, zero-config CLI.
```bash
pip install heaven

# Auto-discovery & run with reload
heaven fly

# Visualize your API structure
heaven routes
```

5. **Daemon** (Background)
```python
async def pulse(app):
    print("Heartbeat...")
    return 5 # Run every 5 seconds

app.daemons = pulse
```

6. **Run** (Standard)
```sh
$ uvicorn app:app --reload
```

<hr/>

- **Full Documentation**: [https://rayattack.github.io/heaven](https://rayattack.github.io/heaven)
- **PyPi**: [https://pypi.org/project/heaven](https://pypi.org/project/heaven)
- **Source**: [Github](https://github.com/rayattack/heaven)

## Contributing

We love builders. See the [Contribution Guidelines](contributions.md).


