HappyX web framework bindings for Python 🐍
Project description
HappyX
Python Bindings For HappyX Web Framework 🔥
Getting Started ✌
Installing 📥
You can install HappyX via pypi
:
pip install happyx
Usage 🔌
Hello World 👋
from happyx import Server
app = Server('127.0.0.1', 5000) # host and port are optional params
@app.get('/')
def home():
return "Hello world!"
app.start()
JSON/HTML/File Responses 🛠
from happyx import Server, JsonResponse, HtmlResponse, FileResponse
app = Server()
@app.get('/json')
def json_resp():
return JsonResponse(
{'key': 'value', 'arr': [1, 2, 3, 4, 5]},
status_code=200 # also available headers: dict param
)
@app.get('/html')
def html_resp():
return HtmlResponse(
'<h1>HTML Response!</h1>',
status_code=200 # also available headers: dict param
)
@app.get('/file')
def file_resp():
return FileResponse('my_cool_icon.png')
app.start()
Read more in User Guide
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
happyx-4.5.1.tar.gz
(1.4 MB
view details)
Built Distribution
File details
Details for the file happyx-4.5.1.tar.gz
.
File metadata
- Download URL: happyx-4.5.1.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14f3ee4c1334f2b745c1a694794fbc1ed32898efb744ac50f87a590fb6f789f5 |
|
MD5 | ea26be5a507a400782c6846038f4d24a |
|
BLAKE2b-256 | 3f057e6412275334ec7119626ca389bf14e6748b75a8b41482bb3b139a75a1d9 |
File details
Details for the file happyx-4.5.1-py3-none-any.whl
.
File metadata
- Download URL: happyx-4.5.1-py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f2b6c00fee9ddfd02d02a919547c29cd49d526fa71a00a66823b3847258f221 |
|
MD5 | 0223dba18bc39c1cf89c87cf42223359 |
|
BLAKE2b-256 | 7e7695ad79cafd087910506e571142688cc3818ab3fb400f79b6964cb162bdfd |