sanic/docs/sanic/extensions.md

23 lines
1.8 KiB
Markdown
Raw Normal View History

2017-01-29 20:47:00 +00:00
# Extensions
2017-01-13 03:22:47 +00:00
A list of Sanic extensions created by the community.
- [Sessions](https://github.com/subyraman/sanic_session): Support for sessions.
Allows using redis, memcache or an in memory store.
- [CORS](https://github.com/ashleysommer/sanic-cors): A port of flask-cors.
2017-02-19 00:53:32 +00:00
- [Compress](https://github.com/subyraman/sanic_compress): Allows you to easily gzip Sanic responses. A port of Flask-Compress.
2017-01-24 07:34:32 +00:00
- [Jinja2](https://github.com/lixxu/sanic-jinja2): Support for Jinja2 template.
2017-02-11 23:26:18 +00:00
- [OpenAPI/Swagger](https://github.com/channelcat/sanic-openapi): OpenAPI support, plus a Swagger UI.
2017-02-15 05:27:58 +00:00
- [Pagination](https://github.com/lixxu/python-paginate): Simple pagination support.
2017-02-16 14:36:16 +00:00
- [Motor](https://github.com/lixxu/sanic-motor): Simple motor wrapper.
2017-02-16 17:49:48 +00:00
- [Sanic CRUD](https://github.com/Typhon66/sanic_crud): CRUD REST API generation with peewee models.
2017-02-17 07:12:07 +00:00
- [UserAgent](https://github.com/lixxu/sanic-useragent): Add `user_agent` to request
2017-02-28 09:34:40 +00:00
- [Limiter](https://github.com/bohea/sanic-limiter): Rate limiting for sanic.
- [Sanic EnvConfig](https://github.com/jamesstidard/sanic-envconfig): Pull environment variables into your sanic config.
- [Babel](https://github.com/lixxu/sanic-babel): Adds i18n/l10n support to Sanic applications with the help of the
`Babel` library
- [Dispatch](https://github.com/ashleysommer/sanic-dispatcher): A dispatcher inspired by `DispatcherMiddleware` in werkzeug. Can act as a Sanic-to-WSGI adapter.
2017-03-19 03:56:11 +00:00
- [Sanic-OAuth](https://github.com/Sniedes722/Sanic-OAuth): OAuth Library for connecting to & creating your own token providers.
- [Sanic-nginx-docker-example](https://github.com/itielshwartz/sanic-nginx-docker-example): Simple and easy to use example of Sanic behined nginx using docker-compose.
- [sanic-graphql](https://github.com/graphql-python/sanic-graphql): GraphQL integration with Sanic