Adds integration of the Chameleon template language to FastAPI.
Project description
fastapi-chameleon
Adds integration of the Chameleon template language to FastAPI. If you are interested in Jinja instead, see the sister project: github.com/AGeekInside/fastapi-jinja.
Installation
Simply pip install fastapi_chameleon
.
Usage
This is easy to use. Just create a folder within your web app to hold the templates such as:
├── main.py
├── views.py
│
├── templates
│ ├── home
│ │ └── index.pt
│ └── shared
│ └── layout.pt
In the app startup, tell the library about the folder you wish to use:
import os
import fastapi_chameleon
dev_mode = True
folder = os.path.dirname(__file__)
template_folder = os.path.join(folder, 'templates')
template_folder = os.path.abspath(template_folder)
fastapi_chameleon.global_init(template_folder, auto_reload=dev_mode)
Then just decorate the FastAPI view methods (works on sync and async methods):
@router.post('/')
@fastapi_chameleon.template('home/index.pt')
async def home_post(request: Request):
form = await request.form()
vm = PersonViewModel(**form)
return vm.dict() # {'first':'Michael', 'last':'Kennedy', ...}
The view method should return a dict
to be passed as variables/values to the template.
If a fastapi.Response
is returned, the template is skipped and the response along with status_code and
other values is directly passed through. This is common for redirects and error responses not meant
for this page template.
Friendly 404s and errors
A common technique for user-friendly sites is to use a
custom HTML page for 404 responses.
This is especially important in FastAPI because FastAPI returns a 404 response + JSON by default.
This library has support for friend 404 pages using the fastapi_chameleon.not_found()
function.
Here's an example:
@router.get('/')
@fastapi_chameleon.template('catalog/item.pt')
async def item(item_id: int):
item = service.get_item_by_id(item_id)
if not item:
fastapi_chameleon.not_found()
return item.dict()
This will render a 404 response with using the template file templates/errors/404.pt
.
You can specify another template to use for the response, but it's not required.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file fastapi_chameleon-0.1.11-py3-none-any.whl
.
File metadata
- Download URL: fastapi_chameleon-0.1.11-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c8d1b9b0126ae7e5da543ad47d8df04cd9daa8dcbbee0a44c465c52d5187bbc |
|
MD5 | 4dcbca42f211143b32f1291fff6f0da3 |
|
BLAKE2b-256 | 391adbc19526a7e722a49294b752876d00b71940bcf5319904b414e0ade6d310 |