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.1.0.tar.gz
(1.9 MB
view details)
Built Distribution
File details
Details for the file happyx-3.1.0.tar.gz
.
File metadata
- Download URL: happyx-3.1.0.tar.gz
- Upload date:
- Size: 1.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c72025a063bcc83fc6f6ee285fc382355cf6c453f7f62fd5998ef36c9a9b3b94 |
|
MD5 | 4a3158bfe9793505f8435088ecd327b0 |
|
BLAKE2b-256 | beb0156205016f420db81b5ad0e9b676d6cc6ef795bf2f4437a0c3da042586fd |
File details
Details for the file happyx-3.1.0-py3-none-any.whl
.
File metadata
- Download URL: happyx-3.1.0-py3-none-any.whl
- Upload date:
- Size: 1.9 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 | 15cf598b203808a4ba575232bba0d16a9b62c4a2e1b7a3edff520280a9d3d92d |
|
MD5 | 00b358bca05f095669d254d46033c577 |
|
BLAKE2b-256 | 90cf7f0288f8710477f2dcb5ff9fd5b060d7f883705e9761722dda069e4a8f40 |