Metadata-Version: 1.1
Name: sanicargs
Version: 0.0.3
Summary: Parses query args in sanic using type annotations
Home-page: https://github.com/trustpilot/python-sanicargs
Author: jgv
Author-email: jgv@trustpilot.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: |Build Status| |Latest Version| |Python Support|
        
        Sanicargs
        =========
        
        Parses query args in sanic using type annotations
        
        Usage
        -----
        
        Use with `Sanic framework <https://github.com/channelcat/sanic>`__
        
        ::
        
                @app.route("/datetime", methods=['GET'])
                @parse_query_args
                async def test_datetime(request, test: datetime.datetime):
                    return response.json({'test': test.isoformat()})
        
        .. |Build Status| image:: https://travis-ci.org/trustpilot/python-sanicargs.svg?branch=master
           :target: https://travis-ci.org/trustpilot/python-sanicargs
        .. |Latest Version| image:: https://img.shields.io/pypi/v/sanicargs.svg
           :target: https://pypi.python.org/pypi/sanicargs
        .. |Python Support| image:: https://img.shields.io/pypi/pyversions/sanicargs.svg
           :target: https://pypi.python.org/pypi/sanicargs
        
        
        History
        =======
        
        0.0.1 (2017-08-09)
        ------------------
        
        * git init
Keywords: sanicargs sanic query args type annotations
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
