Metadata-Version: 2.1
Name: jinx-web
Version: 0.0.3
Summary: Jinx Python Web Framework built for learning purposes.
Author: Bernardo Laing
Author-email: bernardo.laing@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown


# Jinx: Python Web Framework built to learn how to create a framework

![purpose](https://img.shields.io/badge/purpose-learning-green.svg)
![PyPI](https://img.shields.io/pypi/v/jinx-web.svg)

Jinx (**Jinj**a - htm**x**) Web is a Python Web Framework, built to learn how frameworks work, and to experiment a bit with WSGI servers. Also, I'll probably be trying htmx to power the client side


## Installation
```shell
pip install jinx-web
```

## Basic usage
```python
from jinx import Jinx

app = Jinx()

@app.route("/user/{name}", allowed_methods=["get"])
def user_name(request, response, name):
    response.text = f"Hello, {name}"
```
