You can find the documentation here.
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pytest --cov=fastapi_rest_jsonapi --cov-report html tests/
pytest
uvicorn example.app:app --reload
FastAPI REST JSONAPI is an extension for FastAPI. It provides a simple, yet powerful, way to build REST APIs around the JSONAPI specification.
PythonMIT
You can find the documentation here.
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pytest --cov=fastapi_rest_jsonapi --cov-report html tests/
pytest
uvicorn example.app:app --reload