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.11.2.tar.gz
(1.9 MB
view details)
Built Distribution
File details
Details for the file happyx-2.11.2.tar.gz
.
File metadata
- Download URL: happyx-2.11.2.tar.gz
- Upload date:
- Size: 1.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 867c6549d4f3c54c335f6952548839d4df7e38cab3e94c67d7c98356383e6db4 |
|
MD5 | e33ce7c2f56a570c8a6d436b1885391c |
|
BLAKE2b-256 | 69422919b090cc13ca797de72a4a72f4686f34cfe6cd8bc39305347ceb86b525 |
File details
Details for the file happyx-2.11.2-py3-none-any.whl
.
File metadata
- Download URL: happyx-2.11.2-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 | f56eb05b7a2d83f7932136c7ec6234c2d9ea35cf5f638ae46f6e18f3dc1d5059 |
|
MD5 | c54cd9245981ea67d5a4f1b3bf7e879e |
|
BLAKE2b-256 | ab92b2c552b33610d33fa8e62728fa9802284fe8439968f3d698b4a8e63b3bea |