HappyX web framework bindings for Python 🐍
Project description
HappyX
Python Bindings For HappyX Web Framework 🔥
Get Started
Install
You can install HappyX via pypi
:
pip install happyx
Usage
Hello World
from happyx import new_server
app = new_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 new_server, JsonResponse, HtmlResponse, FileResponse
app = new_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-2.9.0.tar.gz
(1.6 MB
view details)
Built Distribution
File details
Details for the file happyx-2.9.0.tar.gz
.
File metadata
- Download URL: happyx-2.9.0.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3310cb45e3389804cf669a33604d3b69aa26f97415d66eff573a831a237b1487 |
|
MD5 | dcbacc9723987ffd4cc4a07ee906ae32 |
|
BLAKE2b-256 | 718417d0517738c17e4a14bcdbc8a6fdf2a44c58bdfec0fba7f5e108033a6a98 |
File details
Details for the file happyx-2.9.0-py3-none-any.whl
.
File metadata
- Download URL: happyx-2.9.0-py3-none-any.whl
- Upload date:
- Size: 1.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28ebca6aad81264c6c2dacd3be6c8fdc8c5c71c6261c933019c9e4155ae1599c |
|
MD5 | 0f31d70f3fddf02ba43f967a024f94e3 |
|
BLAKE2b-256 | 1be550c4b449ac8c9b1157f784dc52a0207f7a8e96a3d13ffcce56f0aa0ac4a7 |