Metadata-Version: 2.1
Name: aiojson
Version: 0.2
Summary: Simple json request template validator for aiohttp
Home-page: https://git.yurzs.dev/yurzs/aiojson
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Platform: UNKNOWN

aiojson
=======

Simple json template verifier for ``aiohttp``

Usage
-----

Simple example:

.. code-block:: python

    from aiohttp import JsonTemplate


    @JsonTemplate({
        "messages": [{
            "id": int,
            "text": str
    }])
    async def received_message(request, validated_data):
        pass


