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.6.1.tar.gz
(1.3 MB
view details)
Built Distribution
File details
Details for the file happyx-3.6.1.tar.gz
.
File metadata
- Download URL: happyx-3.6.1.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4aa5386740521a129a903760d1ee4381c2d0e9691d3a05819f23a700e05cd55 |
|
MD5 | b2da4bc1804ae02e208b6721e11faadb |
|
BLAKE2b-256 | 615761fc7529ab1a9f1c93b6f8caa1eff62c725a11954508902e4adc0cb0365a |
File details
Details for the file happyx-3.6.1-py3-none-any.whl
.
File metadata
- Download URL: happyx-3.6.1-py3-none-any.whl
- Upload date:
- Size: 1.3 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 | c2564ae5056b69c255686cdfba4255bb60f2caca49791b264a9e0f1ab621e612 |
|
MD5 | 2f42e104e365be7af88f757987a17806 |
|
BLAKE2b-256 | 2bcadb908a93a67fc9df3cc52ac0ea552f1a0b752a151bfa9d57409a5054fa50 |