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 kill-framework
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.0.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.0-py3-none-any.whl
(6.3 kB
view details)
File details
Details for the file killx-0.1.0.tar.gz.
File metadata
- Download URL: killx-0.1.0.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 |
9f4c7c185fb26e01e5bdbffb5f91f44aaa88a989b8cc3513772bf2f66c7eb399
|
|
| MD5 |
93332ee9c317df7924c2b49e82a8ac6b
|
|
| BLAKE2b-256 |
2f282b86e45f3810b4a763403b7f6d83da135ebf24e2eeb24764c6e96730e669
|
File details
Details for the file killx-0.1.0-py3-none-any.whl.
File metadata
- Download URL: killx-0.1.0-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 |
8cd34fc96114d899a7104b28e38577740e4916b957137303b7b5994fe033284e
|
|
| MD5 |
8e3a0219f56ab90d0b7e21824ca7fb59
|
|
| BLAKE2b-256 |
6d234f6df1922541302f40839ecaa018499a9b9219b49c63c31d80cd1705bb13
|