Metadata-Version: 2.4
Name: marshmallow-jsonapi-minfork
Version: 0.26.0
Summary: JSON API 1.0 (https://jsonapi.org) formatting with marshmallow
Author-email: Steven Loria <sloria1@gmail.com>
Maintainer-email: Tomislav Adamic <tomislav.adamic@gmail.com>
License-Expression: MIT
Project-URL: Source, https://github.com/tadams42/marshmallow-jsonapi
Project-URL: Funding, https://opencollective.com/marshmallow
Project-URL: Documentation, https://marshmallow-jsonapi.readthedocs.io/en/latest/
Keywords: marshmallow-jsonapi,marshmallow,marshalling,serialization,jsonapi,deserialization,validation
Platform: any
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: marshmallow>=4
Requires-Dist: flask>=2.2.0
Requires-Dist: packaging
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx-rtd-theme; extra == "docs"
Requires-Dist: sphinx-issues>=0.2.0; extra == "docs"
Dynamic: license-file

*******************
marshmallow-jsonapi
*******************

⚠️ I still need this package in some of my projects. This for is minimal  work required
to keep it working

- with newer Pythons and tooling (`uv`)
- new `marshmallow` `v4.x`

⚠️ To allow integrating it in my projects, it is published on PyPI as
`marshmallow-jsonapi-minfork`.

.. image:: https://badgen.net/pypi/v/marshmallow-jsonapi
    :target: https://pypi.org/project/marshmallow-jsonapi/
    :alt: PyPI version

.. image:: https://readthedocs.org/projects/marshmallow-jsonapi/badge/
   :target: https://marshmallow-jsonapi.readthedocs.io/
   :alt: Documentation

.. image:: https://badgen.net/badge/code%20style/black/000
    :target: https://github.com/ambv/black
    :alt: code style: black

Homepage: http://marshmallow-jsonapi.readthedocs.io/

JSON API 1.0 (`https://jsonapi.org <http://jsonapi.org/>`_) formatting with `marshmallow <https://marshmallow.readthedocs.io>`_.

marshmallow-jsonapi provides a simple way to produce JSON API-compliant data in any Python web framework.

.. code-block:: python

    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"


    post_schema = PostSchema()
    post_schema.dump(post)
    # {
    #     "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 >= 3.6

Project Links
=============

- Docs: http://marshmallow-jsonapi.readthedocs.io/
- Changelog: http://marshmallow-jsonapi.readthedocs.io/en/latest/changelog.html
- Contributing Guidelines: https://marshmallow-jsonapi.readthedocs.io/en/latest/contributing.html
- PyPI: https://pypi.python.org/pypi/marshmallow-jsonapi
- Issues: https://github.com/marshmallow-code/marshmallow-jsonapi/issues

License
=======

MIT licensed. See the bundled `LICENSE <https://github.com/marshmallow-code/marshmallow-jsonapi/blob/master/LICENSE>`_ file for more details.
