A lightning-fast, modern Python web framework
Project description
Killx Framework 🔥
A lightning-fast, modern Python web framework that's easier than Flask!
Features
- URL parameters (
/user/<id>) - JSON response handling
- Form data processing
- CORS support
- Built-in template engine
- Static file serving
- No dependencies required!
Installation
pip install killx
Quick Start
from killx import Killx
app = Killx()
@app.route("/")
def home(request):
return "Hello, Killx!"
@app.route("/api/user/<id>")
def get_user(request):
return app.json({"id": request["url_params"]["id"]})
if __name__ == "__main__":
app.run(port=8080)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
killx-0.1.1.tar.gz
(5.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
killx-0.1.1-py3-none-any.whl
(6.3 kB
view details)
File details
Details for the file killx-0.1.1.tar.gz.
File metadata
- Download URL: killx-0.1.1.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b20bef696cef74b6be760f2d045306f82cb945a3ba2684d5a7caed9365de3fc1
|
|
| MD5 |
63e875b75f77278916926820940ca452
|
|
| BLAKE2b-256 |
8b7151fcca4f612e2562c9374c632d7618dfe27e7c26c6fb85d98aa604f3f618
|
File details
Details for the file killx-0.1.1-py3-none-any.whl.
File metadata
- Download URL: killx-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
275036d0c95b3d3b16be262917b08ce545513e39a55c2c39d3ed24cf43e89571
|
|
| MD5 |
692319033afe4da082d55bd0e7c91130
|
|
| BLAKE2b-256 |
36425d3d82f9606e918eb633eb26d97f7b9b2f4439cfae3d93fdb8fe56a8c0a7
|