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.8.tar.gz
(4.8 MB
view details)
Built Distribution
File details
Details for the file happyx-3.8.8.tar.gz
.
File metadata
- Download URL: happyx-3.8.8.tar.gz
- Upload date:
- Size: 4.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e66c7c492ef50a774f78c4296fc307a77f4e6f39b4c8cee5c19a03f1b11023a3 |
|
MD5 | 42ffb9029660c7fa2fecdb35688972ef |
|
BLAKE2b-256 | f957e817c72eab7dc4c813495b0316f8fc4f77f9e599db197b51aef7a3e1c819 |
File details
Details for the file happyx-3.8.8-py3-none-any.whl
.
File metadata
- Download URL: happyx-3.8.8-py3-none-any.whl
- Upload date:
- Size: 4.8 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 | 81f228f6921b0f2a1786e6f83ca400b54cc366905752d9c79fc120a2674fb929 |
|
MD5 | 1761cb018317d35255db9b597bc08059 |
|
BLAKE2b-256 | be109ca8e6ffc3c6639bfc2fd699f1eda0f4311cad1cd1f1872c6803c1e8b0c1 |