From e06425ba2778fdbe0c8b85c64572c7ca72ec625d Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Sun, 16 Jan 2022 18:59:02 +0100 Subject: [PATCH] Sort third-party packages and add `starlette-wtf` (#1415) --- docs/third-party-packages.md | 116 +++++++++++++++++------------------ 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/docs/third-party-packages.md b/docs/third-party-packages.md index 9052a066d..b3d788d17 100644 --- a/docs/third-party-packages.md +++ b/docs/third-party-packages.md @@ -3,7 +3,6 @@ Starlette has a rapidly growing community of developers, building tools that int Here are some of those third party packages: - ## Backports ### Python 3.5 port @@ -12,19 +11,25 @@ Here are some of those third party packages: ## Plugins -### Starlette APISpec +### Authlib -GitHub +GitHub | +Documentation -Simple APISpec integration for Starlette. -Document your REST API built with Starlette by declaring OpenAPI (Swagger) -schemas in YAML format in your endpoint's docstrings. +The ultimate Python library in building OAuth and OpenID Connect clients and servers. Check out how to integrate with [Starlette](https://docs.authlib.org/en/latest/client/starlette.html). -### SpecTree +### ChannelBox -GitHub +GitHub -Generate OpenAPI spec document and validate request & response with Python annotations. Less boilerplate code(no need for YAML). +Another solution for websocket broadcast. Send messages to channel groups from any part of your code. +Checkout MySimpleChat, a simple chat application built using `channel-box` and `starlette`. + +### Imia + +GitHub + +An authentication framework for Starlette with pluggable authenticators and login/logout flow. ### Mangum @@ -39,13 +44,6 @@ Serverless ASGI adapter for AWS Lambda & API Gateway. Manage and send messages to groups of channels using websockets. Checkout nejma-chat, a simple chat application built using `nejma` and `starlette`. -### ChannelBox - -GitHub - -Another solution for websocket broadcast. Send messages to channel groups from any part of your code. -Checkout MySimpleChat, a simple chat application built using `channel-box` and `starlette`. - ### Scout APM GitHub @@ -53,28 +51,32 @@ Checkout MySimp An APM (Application Performance Monitoring) solution that can instrument your application to find performance bottlenecks. -### Starlette Prometheus +### SpecTree -GitHub +GitHub -A plugin for providing an endpoint that exposes [Prometheus](https://prometheus.io/) metrics based on its [official python client](https://github.com/prometheus/client_python). +Generate OpenAPI spec document and validate request & response with Python annotations. Less boilerplate code(no need for YAML). -### webargs-starlette +### Starlette APISpec -GitHub +GitHub -Declarative request parsing and validation for Starlette, built on top -of [webargs](https://github.com/marshmallow-code/webargs). +Simple APISpec integration for Starlette. +Document your REST API built with Starlette by declaring OpenAPI (Swagger) +schemas in YAML format in your endpoint's docstrings. -Allows you to parse querystring, JSON, form, headers, and cookies using -type annotations. +### Starlette Context -### Authlib +GitHub -GitHub | -Documentation +Middleware for Starlette that allows you to store and access the context data of a request. +Can be used with logging so logs automatically use request headers such as x-request-id or x-correlation-id. -The ultimate Python library in building OAuth and OpenID Connect clients and servers. Check out how to integrate with [Starlette](https://docs.authlib.org/en/latest/client/starlette.html). +### Starlette Cramjam + +GitHub + +A Starlette middleware that allows **brotli**, **gzip** and **deflate** compression algorithm with a minimal requirements. ### Starlette OAuth2 API @@ -83,13 +85,17 @@ The ultimate Python library in building OAuth and OpenID Connect clients and ser A starlette middleware to add authentication and authorization through JWTs. It relies solely on an auth provider to issue access and/or id tokens to clients. -### Starlette Context +### Starlette Prometheus -GitHub +GitHub -Middleware for Starlette that allows you to store and access the context data of a request. -Can be used with logging so logs automatically use request headers such as x-request-id or x-correlation-id. +A plugin for providing an endpoint that exposes [Prometheus](https://prometheus.io/) metrics based on its [official python client](https://github.com/prometheus/client_python). +### Starlette WTF + +GitHub + +A simple tool for integrating Starlette and WTForms. It is modeled on the excellent Flask-WTF library. ### Starsessions @@ -97,31 +103,18 @@ Can be used with logging so logs automatically use request headers such as x-req An alternate session support implementation with customizable storage backends. +### webargs-starlette -### Starlette Cramjam - -GitHub - -A Starlette middleware that allows **brotli**, **gzip** and **deflate** compression algorithm with a minimal requirements. - - -### Imia - -GitHub +GitHub -An authentication framework for Starlette with pluggable authenticators and login/logout flow. +Declarative request parsing and validation for Starlette, built on top +of [webargs](https://github.com/marshmallow-code/webargs). +Allows you to parse querystring, JSON, form, headers, and cookies using +type annotations. ## Frameworks -### Responder - -GitHub | -Documentation - -Async web service framework. Some Features: flask-style route expression, -yaml support, OpenAPI schema generation, background tasks, graphql. - ### FastAPI GitHub | @@ -139,12 +132,6 @@ Formerly Starlette API. Flama aims to bring a layer on top of Starlette to provide an **easy to learn** and **fast to develop** approach for building **highly performant** GraphQL and REST APIs. In the same way of Starlette is, Flama is a perfect option for developing **asynchronous** and **production-ready** services. -### Starlette-apps - -Roll your own framework with a simple app system, like [Django-GDAPS](https://gdaps.readthedocs.io/en/latest/) or [CakePHP](https://cakephp.org/). - -GitHub - ### Greppo GitHub | @@ -154,3 +141,16 @@ A Python framework for building geospatial dashboards and web-applications. Greppo is an open-source Python framework that makes it easy to build geospatial dashboards and web-applications. It provides a toolkit to quickly integrate data, algorithms, visualizations and UI for interactivity. It provides APIs to the update the variables in the backend, recompute the logic, and reflect the changes in the frontend (data mutation hook). +### Responder + +GitHub | +Documentation + +Async web service framework. Some Features: flask-style route expression, +yaml support, OpenAPI schema generation, background tasks, graphql. + +### Starlette-apps + +Roll your own framework with a simple app system, like [Django-GDAPS](https://gdaps.readthedocs.io/en/latest/) or [CakePHP](https://cakephp.org/). + +GitHub