Tiny wrapper on starlette and marshmallow-jsonapi for fast JSON:API compliant python services.
Project description
starlette_jsonapi
A minimal "framework" intended to help write json:api compliant services in async Python, written on top of starlette and marshmallow-jsonapi.
In the maintainer's view, REST frameworks that come with a complete data layer implementation are quite limiting and rarely usable in production systems due to business logic needs or authorization constraints. The default implementation they come with is usually getting in the way, more than helping.
Because of that, starlette_jsonapi
does not contain a data layer implementation, so you should be able to pick
any available async ORM. This also means that you are going to get a very basic interface for writing a REST resource,
with some helpers to make your experience more pleasant, but nothing fancy.
Installing
pip install starlette-jsonapi
Since this project is under development, please pin your dependencies to avoid problems.
Features
- 100% tests coverage
- basic json:api serialization
- including related resources
- starlette friendly route generation
- exception handlers to serialize as json:api responses
- relationship resources
- sparse fields
- support for client generated IDs
- support top level meta objects
- pagination helpers
Todo:
- sorting helpers
- examples for other ORMs
- support jsonapi objects
- enforce member name validation
- optionally enforce query name validation
Documentation
Available on Read The Docs
You should take a look at the examples directory for full implementations.
To generate documentation files locally, you should create a virtualenv, then activate it and install the requirements:
cd docs
pip install -r requirements.txt
With the docs virtualenv activated, you can then run make html
to generate the HTML files.
The result will be written to docs/build
, and you can open docs/build/html/index.html
in your browser of choice
to view the pages.
Contributing
This project is in its early days, so any help is appreciated.
Running tests:
As simple as running tox
.
If you plan to use pyenv and want to run tox for multiple python versions,
you can create multiple virtual environments and then make them available to tox by running
something like: pyenv shell starlette_jsonapi_venv36 starlette_jsonapi_venv37 starlette_jsonapi_venv38 starlette_jsonapi_venv39
.
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
Built Distribution
Hashes for starlette_jsonapi-2.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7be522549bf6b05e9f6aee22cd428f5e4e35b91ecc2f9f1cdf8b9f62f3b3ac8 |
|
MD5 | 26ba39e32358a1197d602022ee87c644 |
|
BLAKE2b-256 | a18c79d3407cd6987721ae869cf814470dec08866009dec8956b053957114a0f |