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.7.0.tar.gz
(1.4 MB
view details)
Built Distribution
File details
Details for the file happyx-3.7.0.tar.gz
.
File metadata
- Download URL: happyx-3.7.0.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b21d2c5f6d4e0d8a4ca627f25c28ed97f02f998711a74685afff4a2cd38eebb4 |
|
MD5 | 9767e608039b44b0d4cbcab4a0f92ca1 |
|
BLAKE2b-256 | 2a3c828e183bd329c588564c3ff8a681580835cbed5693cb874c1fc9a22e4cca |
File details
Details for the file happyx-3.7.0-py3-none-any.whl
.
File metadata
- Download URL: happyx-3.7.0-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.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e786c261c935105c9820b323ceece205f60cfcc2af10a83e493d9c82b41c892 |
|
MD5 | 88c5e6785a9d390c0d73e59f496b5193 |
|
BLAKE2b-256 | e063319beb3a133dca0875b36e5c9bfbc824779ca8324a5a4f24d967ec4410f9 |