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.1.tar.gz
(27.1 kB
view hashes)
Built Distribution
Close
Hashes for marshmallow-jsonapi-0.11.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a85ff5a04f929cf640bb08a95afb5077048b5324b857c04911f2307edf4cc01 |
|
MD5 | 3fe43b2119259b6f6348fe3fe1170a67 |
|
BLAKE2b-256 | 75ea2cc40583b4c9c826203b82221c9c6dafe940489818b85370b25ca60a82f4 |
Close
Hashes for marshmallow_jsonapi-0.11.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2d07351f5e1bb5c41c4678d71229c4f841307bcf3c3f9613e32564488808b41 |
|
MD5 | c18354610cef21fcd128fd055d0b471a |
|
BLAKE2b-256 | d6893b8afa67c91a69a4ed4246aa5f0b7789f4e5f168e5ffe4ccbaabd0b9e073 |