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-2.9.7.tar.gz
(1.8 MB
view details)
Built Distribution
File details
Details for the file happyx-2.9.7.tar.gz
.
File metadata
- Download URL: happyx-2.9.7.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b4e55b2f4d6640f9e04e56e53ad8f819226d28c838ba848191061cf35682a78 |
|
MD5 | d58ebd33eb4d011583b862be39713c47 |
|
BLAKE2b-256 | 217ed9c2fe4bd5a2a0d5ee9544ac9e67fe878771784ac5ceec0cbb6f8ca45caf |
File details
Details for the file happyx-2.9.7-py3-none-any.whl
.
File metadata
- Download URL: happyx-2.9.7-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.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 407b67986751a4b81f3497e3dab6271fad7814b89ca11e0b92da86478273fe68 |
|
MD5 | 931ea9db8c2a5fb02c42f29c85f97878 |
|
BLAKE2b-256 | fa43c8461f291545f6c58f0eaf9aac5238cdccccf1700029eab5867f4b576a6a |