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.2.tar.gz
(1.0 MB
view details)
Built Distribution
File details
Details for the file happyx-3.8.2.tar.gz
.
File metadata
- Download URL: happyx-3.8.2.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 649ecbc5d87ede18da2bdb7a2d4d3d8fc675bc5307edb539c749e9bc8814b337 |
|
MD5 | e39b7e35433ed1f5059da0a032f1cafc |
|
BLAKE2b-256 | 1d7d7e636ac5895f79b266c6bc26e84d99881db1beec7243d7bef44ae39f4803 |
File details
Details for the file happyx-3.8.2-py3-none-any.whl
.
File metadata
- Download URL: happyx-3.8.2-py3-none-any.whl
- Upload date:
- Size: 1.0 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 | 341850e259896c31cefd476dcb82a2cbaac63b42dabf2cec87493056deb961e7 |
|
MD5 | c20fa3e1f1e5c7b5bf4f18e35c921384 |
|
BLAKE2b-256 | 5fac22ae576e8ae077a9f58149a972ef0a3769d153486ce56e610c7b31c212f0 |