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-3.5.1.tar.gz
(2.0 MB
view details)
Built Distribution
File details
Details for the file happyx-3.5.1.tar.gz
.
File metadata
- Download URL: happyx-3.5.1.tar.gz
- Upload date:
- Size: 2.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49278e3122d2c2033834239a365189a4205ba44206374b23a03fc3ad56fca626 |
|
MD5 | db27f06f9ee0e11f8a484ca0f5f0c0c4 |
|
BLAKE2b-256 | a38adf4810192fde382c598f382a6588e5ed200e2266f28656309b30f265f063 |
File details
Details for the file happyx-3.5.1-py3-none-any.whl
.
File metadata
- Download URL: happyx-3.5.1-py3-none-any.whl
- Upload date:
- Size: 2.0 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 | 4a817fa43db8918ad33c3f22fffe0b648fa9e7fd83e0f719c0f6512c1f06a214 |
|
MD5 | f79e0d9f637e2cab02f4fb15ce97131c |
|
BLAKE2b-256 | ec45fd9270c5da4144a65b1dd47d49c7f315d0f4db88a05cf74e31a816610d94 |