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.9.4.tar.gz
(1.6 MB
view details)
Built Distribution
File details
Details for the file happyx-2.9.4.tar.gz
.
File metadata
- Download URL: happyx-2.9.4.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23c6cf632ddf206b5c00a3354595c55590d9b78977970acd08929e1483eb5581 |
|
MD5 | 32cbbd32c8139c886ab913a93461f588 |
|
BLAKE2b-256 | e75fc68b376d1b59360a24837bc5094a7e93985b092a03de7226738248c15082 |
File details
Details for the file happyx-2.9.4-py3-none-any.whl
.
File metadata
- Download URL: happyx-2.9.4-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.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93e1c1d62f44e0e69e0ceb659963d005f3f898f03e766b1b26985486d7442037 |
|
MD5 | 4acf4c8949877c77176fd7be636cb635 |
|
BLAKE2b-256 | ae7c7ea164d65ce560fb531c54d6ca71d4e10cc044547841d170c4628c87bfaa |