Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
awesome-flask
A curated list of awesome things related to Flask
https://github.com/mjhea0/awesome-flask
Last synced: 5 days ago
JSON representation
-
Third-Party Extensions
-
Utils
- Flask-SocketIO - Socket.IO integration.
- Flask-SSE - Streaming with flask.
- Flask-FlatPages - Provides flat static pages based on text files.
- Flask-Limiter - Rate limiting features to Flask routes.
- Flask-Paginate - Pagination support.
- Flask-Sitemap - Sitemap generation.
- Flask-Babel - Support for internationalization (i18n) and localization (l10n).
- Flask-File-Upload - Easy file uploads.
- Frozen-Flask - Freezes a Flask application into a set of static files.
- Flask-GraphQL - GraphQL support.
- Flask-Injector - Adds support for dependency injection.
- Flask-Moment - Moment.js date and time formatting helpers for Jinja2 templates.
- Flask-Reactize - Hides the Node.js development backend for React behind a Flask application.
- Flask-Shell2HTTP - RESTful/HTTP wrapper for Python's subprocess API, so you can convert any command-line tool into a RESTful API service.
-
APIs
- Eve - RESTful API framework designed for human beings.
- Flask-Classful - Adds support for class-based views for setting up RESTful API route endpoints.
- Flask-RESTful - Quickly build RESTful APIs.
- Connexion - Open source, OpenAPI-based, REST framework built on top of Flask.
- Flask-RESTX - Community-driven fork of [Flask-RESTPlus](https://flask-restplus.readthedocs.io/) that makes it easy to build and document RESTful APIs with Flask.
- Flask-APISpec - Auto-documenting REST APIs.
- Flask-MongoRest - RESTful API framework wrapped around [MongoEngine](http://mongoengine.org/).
- APIFlask - Integrates marshmallow for validation and serialization, and for OpenAPI generation with Swagger UI.
- Flasgger - OpenAPI and Swagger UI. Builds the API from Flasgger models, marshmallow models, dicts, or YAML files.
- Flask-Rebar - Combines Flask, [marshmallow](https://marshmallow.readthedocs.io/), and [OpenAPI](https://www.openapis.org/) for robust REST services.
- SAFRS: Python OpenAPI & JSON:API Framework - SAFRS, which is an acronym for *S*ql*A*lchemy *F*lask-*R*estful *S*wagger, is meant to help developers create self-documenting JSON APIs for SQLAlchemy database objects and relationships.
-
Auth
- Flask-HTTPAuth - Authentication.
- Flask-Login - Account management and authentication.
- Flask Principal - Authorization.
- Flask-Security-Too - Account management, authentication, authorization.
- Flask-Session - Session managment.
- Flask-User - Account management, authentication, authorization.
- FAQ
- Flask-JWT - Basic support for working with JWTs.
- Flask-JWT-Extended - Advanced support for working with JWTs.
- Flask-Praetorian - Authentication and authorization for Flask APIs.
- Authlib - Library for building OAuth and OpenID clients and servers.
- Flask-SimpleLogin - Authentication.
- Flask-JWT-Router - Adds authorized routes to a Flask app.
- Authomatic - Framework agnostic library for Python web applications that simplifies authentication and authorization of users via OAuth and OpenID.
- Flask-Dance - OAuth support via [OAuthLib](https://oauthlib.readthedocs.io/).
-
Cache
- Flask-Caching - Caching support.
-
Data Validation and Serialization
- Flask-Marshmallow - Thin integration layer for Flask and marshmallow (an object serialization /deserialization library) that adds additional features to marshmallow.
- Flask-Pydantic - [Pydantic](https://github.com/pydantic/pydantic) support.
-
Databases
- Flask-Peewee - Support for Peewee, an ORM and database migration tool.
- Flask-Pony - Support for Pony ORM.
- Flask-SQLAlchemy - Support for SQLAlchemy, a SQL toolkit and ORM.
- Flask-MongoEngine - Bridges Flask and MongoEngine for working with MongoDB.
- Flask-PyMongo - Bridges Flask and PyMongo for working with MongoDB.
- Flask-Alembic - Configurable [Alembic](https://alembic.sqlalchemy.org/) migration environment around a Flask-SQLAlchemy database for handling database migrations.
- Flask-Migrate - Handles SQLAlchemy database migrations via Alembic.
- Flask-Excel - Uses [pyexcel](https://github.com/pyexcel/pyexcel) to read, manipulate, and write data in different Excel formats: csv, ods, xls, xlsx and xlsm.
- Flask-Peewee - Support for Peewee, an ORM and database migration tool.
- Flask-SQLAlchemy - Support for SQLAlchemy, a SQL toolkit and ORM.
- this item - DB's FAQ.
- Flask-MongoEngine - Bridges Flask and MongoEngine for working with MongoDB.
- Flask-SQLAlchemy - Support for SQLAlchemy, a SQL toolkit and ORM.
-
Developer Tools
- Flask-DebugToolbar - Port of Django's debug toolbar for Flask.
- Mixer - Object generation tool.
- Rollbar - Flask error logging with Rollbar.
- Airbrake - Airbrake Flask integration.
- Elastic APM Agent - Elastic APM Flask integration.
- Flask Monitoring Dashboard - Dashboard for automatic monitoring of Flask web-services.
- Sentry Python SDK - Sentry SDK Flask integration.
- Flask-Testing - Unittest extensions.
- Flask-Profiler - Endpoint analyzer/profiler.
- Flask-Fixtures - Create database fixtures from JSON or YAML.
- Flask-OpenTracing - OpenTracing instrumentation.
- Pytest-Flask - Pytest support for testing Flask applications.
-
Email
- Flask-Mail - Provides simple email sending capabilities.
- Flask-Mailman - A port of `django.mail` for Flask.
- Flask-Mail-SendGrid - Provides simple email base on Flask-Mail for sending email by SendGrid.
-
Forms
- Flask-WTF - Integrates Flask with WTForms (provides CSRF protection as well).
-
Full-text Search
- SQLAlchemy-Searchable - Provides full-text search capabilities for SQLAlchemy models.
- flask-msearch - Full-text search.
- Flask-WhooshAlchemy3 - Full-text search + Whoosh indexing capabilities for Flask-SQLAlchemy.
-
Security
- Flask-Bcrypt - Provides bcrypt hashing utilities.
- Flask-CORS - Cross Origin Resource Sharing (CORS) handling.
- Flask-Argon2 - Provides argon2 hashing utilities.
- Flask-SeaSurf - Cross-site request forgery (CSRF) prevention.
- Flask-Talisman - HTTPS and security headers.
- Flask-CORS - Cross Origin Resource Sharing (CORS) handling.
-
Task Queues
- Celery - The most commonly used Python library for handling asynchronous tasks and scheduling.
- Dramatiq - Fast and reliable alternative to Celery.
- Huey - [Redis](https://redis.io/)-based task queue that aims to provide a simple, yet flexible framework for executing tasks.
- Flask-RQ - [RQ](https://python-rq.org/) (Redis Queue) integration.
- Dramatiq - Fast and reliable alternative to Celery.
-
Admin
- Flask-Admin - Functional admin panel that provides a user interface for managing data based on your models.
-
-
Resources
-
Official Resources
- Project Website - Official Flask website.
- Documentation - Comprehensive documentation for all Flask versions.
- Flaskr Tutorial - Build a basic blog application called Flaskr.
- Source Code - Hosted on GitHub.
- Flaskr Tutorial - Build a basic blog application called Flaskr.
-
External Resources
- Full Stack Python's Flask Page - Explanation of Flask philosophy and links to other resources and tutorials.
- Miguel Grinberg's Blog - Multiple Flask-specific tutorials.
- Patrick Kennedy's Blog - Numerous tutorials on learning Python web application development with Flask.
- RealPython - Many high-quality tutorials on Flask.
- TestDriven.io - Up-to-date tutorials on Flask.
- Nick Janetakis's Blog - Flask Tips, Tricks and Tutorials.
-
Community
- Stack Overflow - Questions tagged `flask`.
- Twitter - For official announcements on updates, security fixes, etc.
- Mailing List - General discussion of Flask and the Pallets projects (`[email protected]`).
- Reddit - Flask subreddit.
- Discord - Pallets Projects community on Discord (use the `#get-help` channel for Flask support).
-
Conferences
- FlaskCon - Community driven Flask event intended for speakers and attendees all over the world to participate in technical and evangelical sessions related to Flask.
- PyConWeb - Covers Django, Tornado, Flask, API frameworks. AsyncIO, networking, Frontend, JavaScript, and web security.
- Flask Conf Brazil - Conference for the developers and users of Flask.
- PyCon US - The largest annual gathering for the community using and developing the open-source Python programming language.
- PyCon Australia - National conference organized for the Python Programming Community.
- Euro Python - The largest Python conference in Europe.
- PyCon - Complete listing of all PyCons globally.
- Euro Python - The largest Python conference in Europe.
-
Meetups
- Flask - 40+ groups in 20 countries.
- Python Web Development - 600+ groups in 81 countries.
- Python - 2,400+ groups in 100 countries.
-
Podcasts
- TalkPython - The leading Python podcast with several episodes on Flask.
- Podcast Init - A popular Python podcast that features Flask guests on occasion.
- Python Bytes - Another Python podcast that discusses Flask from time to time.
- Full Stack Python's Best Python Podcasts Page - A list of active Python-specific podcasts.
-
Tutorials
- Flask Mega-Tutorial - Overarching tutorial for Python beginner and intermediate developers that teaches web development with the Flask framework.
- Make a Web App Using Python & Flask! - Creating a Python Website from the Bottom Up.
- Flaskr TDD - Intro to Flask, Test-Driven Development (TDD), and JavaScript.
-
Courses
- Developing Web Applications with Python and Flask - This course focuses on teaching the fundamentals of Flask by building and testing a web application using Test-Driven Development (TDD).
- Test-Driven Development with Python, Flask, and Docker - Learn how to build, test, and deploy a production-grade microservice powered by Python, Flask, and Docker.
- Authentication with Flask, React, and Docker - Learn how to add authentication to a Flask and React microservice!.
- Deploying a Flask and React Microservice to AWS ECS - Learn how to deploy microservices to Amazon ECS powered by Flask, React, and Docker.
- Build a SAAS App with Flask - Learn to build web applications with Flask and Docker.
- Full Stack Foundations - Build a data-driven web app with Python.
- Designing RESTful APIs - Build and Secure a backend API server.
-
Books
- Flask Web Development - Learn the framework from the ground up by developing, step-by-step, a real-world project.
- Real Python - Learn Python programming, by example.
- Explore Flask - Best practices and patterns for developing web applications with Flask.
- Real Python - Learn Python programming, by example.
- Explore Flask - Best practices and patterns for developing web applications with Flask.
-
Videos
-
-
Hosting
-
Projects
-
Open Source Projects
- Airflow
- Quokka CMS - The happiest CMS in the world.
- sr.ht - Git hosting service (check out [Why I chose Flask to build sr.ht's mini-services](https://drewdevault.com/2019/01/30/Why-I-built-sr.ht-with-Flask.html) as well).
- TestDriven.io
- ActorCloud - Open-source IoT Platform.
- Airflow
- Busy Beaver - Chicago Python's Community Engagement Slack bot.
- FlaskBB - Classic forum software.
- Indico - Feature-rich event management system, made at [CERN](https://home.cern/).
- PythonBuddy - Online Python Editor with live syntax checking and execution.
- Redash - Designed to enable anyone, regardless of the level of technical sophistication, to harness the power of data big and small.
- SkyLines - Live tracking, flight database, and competition framework.
- Security Monkey - Monitors AWS, GCP, OpenStack, and GitHub orgs for assets and their changes over time.
- SecureDrop - Open-source whistleblower submission system that media organizations can use to securely accept documents from, and communicate with anonymous sources.
- SimpleLogin - Protect your online identity with email alias.
- Timesketch - Collaborative forensic timeline analysis.
-
Boilerplates
- cookiecutter-flask - With Bootstrap 4, asset bundling annd minification with webpack, starter templates, and registration/authentication.
- Cookiecutter Flask Skeleton - Flask starter project for [Cookiecutter](https://github.com/cookiecutter/cookiecutter).
- Flask-AppBuilder - Simple and rapid application development framework that includes detailed security, auto CRUD generation for your models, Google charts, and much more.
- flask-base - Includes SQLAlchemy, Redis, User Authentication, and more.
- Flask-Bootstrap - Integrated SQLAlchemy, authentication, and Bootstrap frontend.
- flask-htmx-boilerplate - Boilerplate template for a Python Flask application with HTMX and Tailwind CSS.
- uwsgi-nginx-flask-docker - Docker image with uWSGI and Nginx for Flask applications in Python running in a single container.
- React-Redux-Flask - Boilerplate application for a Flask JWT Backend and a React/Redux Front-End with Material UI.
- MVC Flask - You can use the mvc pattern in your flask application using this extension.
-
Programming Languages
Sub Categories
Open Source Projects
16
Auth
15
Utils
14
Databases
13
Developer Tools
12
APIs
11
Boilerplates
9
Conferences
8
PaaS
8
Courses
7
Videos
6
Security
6
External Resources
6
Task Queues
5
Serverless
5
Community
5
Books
5
Official Resources
5
Podcasts
4
Email
3
Tutorials
3
Meetups
3
IaaS
3
Full-text Search
3
Data Validation and Serialization
2
Admin
1
Cache
1
Forms
1
Keywords
flask
30
python
23
sqlalchemy
7
authentication
4
flask-extensions
4
python3
3
openapi
3
swagger
3
flask-application
3
rest-api
3
web
3
flask-extension
3
analytics
2
dashboard
2
javascript
2
aws-lambda
2
lambda
2
serverless
2
serverless-framework
2
database
2
boilerplate
2
aws
2
cookiecutter
2
cookiecutter-flask
2
flask-restful
2
security
2
swagger-ui
2
rest
2
openapi3
2
api
2
marshmallow
2
flask-sqlalchemy
2
werkzeug
1
web-framework
1
pallets
1
jinja
1
webhook
1
subprocess
1
shell2http
1
shell
1
asynchronously
1
flask-shell2http
1
flask-endpoints
1
render-timestamps
1
executor
1
timestamp
1
callback
1
utc
1
wsgi
1
tdd
1