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 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-3.5.0.tar.gz
(2.1 MB
view details)
Built Distribution
File details
Details for the file happyx-3.5.0.tar.gz
.
File metadata
- Download URL: happyx-3.5.0.tar.gz
- Upload date:
- Size: 2.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6cb4aaa00a53c3b53397034fe5679a142b15ec464dbc28c5ada3906fb30fbb4 |
|
MD5 | 99a435c0999f27ea7a41067d2d06742a |
|
BLAKE2b-256 | 3659e62fe9e757c4945aa10b5c797568ac609a1694258a3678148cc6ddae6fd5 |
File details
Details for the file happyx-3.5.0-py3-none-any.whl
.
File metadata
- Download URL: happyx-3.5.0-py3-none-any.whl
- Upload date:
- Size: 2.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c218838753e1894f1bc68580864f0676752fad4300c503ee7795c82c3ef68adc |
|
MD5 | 2ab81db49f892f8d2036624373eb481a |
|
BLAKE2b-256 | b1cd022e8164d8812bbf4c9b46fb8ff4e53285cb73c0fa44a14b72b4459db361 |