Skip to content

nf1s/sanic-camelcase-middleware

Repository files navigation

Sanic Camelcase Middleware

CircleCI codecov Downloads GitHub Pipenv locked Python version GitHub

Middleware for camelizing request and response bodies for sanic

Full documentation can be found here

How to install

    pip install sanic-camelcase-middlware

Example

    from sanic import Sanic
    from sanic_camelcase_middleware import Camelize

    app = Sanic(__name__)
    Camelize(app)

Full example

    from sanic import Sanic
    from sanic.response import json
    from sanic_camelcase_middleware import Camelize

    app = Sanic(__name__)

    Camelize(app)


    @app.route("/post", methods=["POST"])
    async def test(request):
        return json("is_camelcase": True, "message": request.json})


    if __name__ == "__main__":
        app.run(host="0.0.0.0", port=8000)

To disable the middleware for request payload

    from sanic import Sanic
    from sanic_camelcase_middleware import Camelize

    app = Sanic(__name__)

    # default `decamelize_request=True`
    Camelize(app, decamelize_request=False)

To disable the middleware for response body

    from sanic import Sanic
    from sanic_camelcase_middleware import Camelize

    app = Sanic(__name__)

    # default `camelize_response=True`
    Camelize(app, camelize_response=False)