JSON API 1.0 (https://jsonapi.org) formatting with marshmallow
Project description
Homepage: http://marshmallow-jsonapi.readthedocs.io/
JSON API 1.0 (https://jsonapi.org) formatting with marshmallow.
marshmallow-jsonapi provides a simple way to produce JSON API-compliant data in any Python web framework.
from marshmallow_jsonapi import Schema, fields
class PostSchema(Schema):
id = fields.Str(dump_only=True)
title = fields.Str()
author = fields.Relationship(
'/authors/{author_id}',
related_url_kwargs={'author_id': '<author.id>'},
)
comments = fields.Relationship(
'/posts/{post_id}/comments',
related_url_kwargs={'post_id': '<id>'},
# Include resource linkage
many=True, include_resource_linkage=True,
type_='comments'
)
class Meta:
type_ = 'posts'
strict = True
post_schema = PostSchema()
post_schema.dump(post).data
# {
# "data": {
# "id": "1",
# "type": "posts"
# "attributes": {
# "title": "JSON API paints my bikeshed!"
# },
# "relationships": {
# "author": {
# "links": {
# "related": "/authors/9"
# }
# },
# "comments": {
# "links": {
# "related": "/posts/1/comments/"
# }
# "data": [
# {"id": 5, "type": "comments"},
# {"id": 12, "type": "comments"}
# ],
# }
# },
# }
# }
Installation
pip install marshmallow-jsonapi
Documentation
Full documentation is available at https://marshmallow-jsonapi.readthedocs.io/.
Requirements
Python >= 2.7 or >= 3.4
Project Links
License
MIT licensed. See the bundled LICENSE file for more details.
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
marshmallow-jsonapi-0.11.0.tar.gz
(27.1 kB
view hashes)
Built Distribution
Close
Hashes for marshmallow-jsonapi-0.11.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | dacbc80c56a8c1d0e2693fa5f7cc6d17e28b4c8a2a10947e9e9809fd280f5c03 |
|
MD5 | a7d0a4ef8d636fade014d98b8c4d0e9b |
|
BLAKE2b-256 | 330c4d5a3651c6c0e0401e2c04ed19e222dca90769950642a7ab1668787f4873 |
Close
Hashes for marshmallow_jsonapi-0.11.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a419f1ecb6ae07dea90fae67c00c47a911e3ad664bc90b2352838a3ce5093a02 |
|
MD5 | 6728703895d4de67def92e3f99648f62 |
|
BLAKE2b-256 | 3014794d4ca50027e485ef4f23a610daf80785cc0603642a9f4a3dc1e4f07448 |