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 Server
app = 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 Server, JsonResponse, HtmlResponse, FileResponse
app = 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.8.12.tar.gz
(1.4 MB
view details)
Built Distribution
File details
Details for the file happyx-3.8.12.tar.gz
.
File metadata
- Download URL: happyx-3.8.12.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 155b4a0dc1d5c25aa58bab0a90df2e3b9b509641bf00bc6df2be7c91133f6578 |
|
MD5 | 79a13630b4f07aaa8c03e0f06c3c517b |
|
BLAKE2b-256 | 3beb4c541ba78361c52056d283433b3777566e999ffc5c47584b0189401f988e |
File details
Details for the file happyx-3.8.12-py3-none-any.whl
.
File metadata
- Download URL: happyx-3.8.12-py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9375d3564e5aec5b2d80c268aa0e34542de60967fa1a95d3fe713c1128eae26f |
|
MD5 | ec721a97b6474278639078c94d68ce36 |
|
BLAKE2b-256 | cc63dcfe27b5346234c63f3bd04a1e797ff38e406b2d17aac9b23451529f768c |