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.5
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.20.5.tar.gz
(34.4 kB
view hashes)
Built Distribution
Close
Hashes for marshmallow-jsonapi-0.20.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50e12a3fa432dcf18eda126c6135c855b7de9e7590ba7c374d4f5071977fc3a2 |
|
MD5 | 9334e0d6614662f9885bbd2a12012c3f |
|
BLAKE2b-256 | b8238c49d266467981bcc1416ab44a5dd85e703632d999aec95ca9ec732f9de2 |
Close
Hashes for marshmallow_jsonapi-0.20.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8245e9a8f03d26efe5b1c5db0c6c6705aa3d8d32a28c7c79ebc2217020e5bcd |
|
MD5 | add5ccc94e7c6704e51e0859e0db9000 |
|
BLAKE2b-256 | ed7e5a51aa245982f5b97667b4ba54ad751d3b4fb827cf23a769ae8a9bff8a53 |