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.4.2.tar.gz
(1.4 MB
view details)
Built Distribution
File details
Details for the file happyx-4.4.2.tar.gz
.
File metadata
- Download URL: happyx-4.4.2.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 | d5e50c54174cacca2512f36f033140d4a391034fac95a09d893142d57a84c685 |
|
MD5 | 5886e2f50aa800ab031e405032a49596 |
|
BLAKE2b-256 | da46ce81b9ea8ffda134caaf6f25f257d1e9c828cd81c99e791045321df17e7d |
File details
Details for the file happyx-4.4.2-py3-none-any.whl
.
File metadata
- Download URL: happyx-4.4.2-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 | 866ae8ffbba1b359bf8bf2fdbefa7723942622e5a67c209a8bc8e2d2c8d4bb8d |
|
MD5 | b085d9d569146962af8f715cc5c9ef0f |
|
BLAKE2b-256 | d667e6814fe36545f7e823a2d3f8a6300e10017471354608e8a678ee59c04302 |