FastAPI-REST-JSONAPI

FastAPI-REST-JSONAPI


Keywords
rest, json, api, jsonapi, fastapi, database, sql, python, rest-api, restful-api, sqlalchemy
License
MIT
Install
pip install FastAPI-REST-JSONAPI==0.8

Documentation

FastAPI REST JSONAPI 🚀

Documentation

You can find the documentation here.

Setup

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Launch tests

With coverage

pytest --cov=fastapi_rest_jsonapi --cov-report html tests/

Without coverage

pytest

Launch example app

uvicorn example.app:app --reload