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.6.0.tar.gz
(1.6 MB
view details)
Built Distribution
File details
Details for the file happyx-2.6.0.tar.gz
.
File metadata
- Download URL: happyx-2.6.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.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ced1229f29966eda36dab17b83257f4bf9e7efbf614729340c38689c6999cb2f |
|
MD5 | 94cdf1d4ff6d3a5f45bb255ffd3cc64d |
|
BLAKE2b-256 | d4bae728dd6fd23b07318798fbe8c03a6a0655b793b57ec54f689465bced73ae |
File details
Details for the file happyx-2.6.0-py3-none-any.whl
.
File metadata
- Download URL: happyx-2.6.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.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 64c79e043c9eb46baefb8686ee75e2b4090d0df9ff04c593a79f3d82e843deb2 |
|
MD5 | 6e577df202ef393002982a00fc177cbc |
|
BLAKE2b-256 | cd0b9a46e72daa2075b36080241cd62b809e3478cf1a629d730b9e022cfcedf9 |