Any good example projects that I can use to compare my own flask site?

This page summarizes the projects mentioned and recommended in the original post on /r/flask

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • Airflow

    Apache Airflow - A platform to programmatically author, schedule, and monitor workflows

  • flask-base

    A simple Flask boilerplate app with SQLAlchemy, Redis, User Authentication, and more.

  • I came across (flask-base)[https://github.com/hack4impact/flask-base], which is a nice and robust boilerplate for large flask apps, you could use this as a reference point.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • cookiecutter-flask

    A flask template with Bootstrap, asset bundling+minification with webpack, starter templates, and registration/authentication. For use with cookiecutter.

  • Cookiecutter flask is a template for large projects, it’s always a great place to start and compare against https://github.com/cookiecutter-flask/cookiecutter-flask

  • flask_injector

    Adds Injector support to Flask.

  • Optionally, but I recommend, use something like flask_injector to do dependency injection into your routes so you don't need to worry about creating the services in your route endpoints. This is kind of invasive because of the inject decorator and does require using type hints.

  • docker-flask-example

    A production ready example Flask app that's using Docker and Docker Compose.

  • In terms of best practices and tips, this repo https://github.com/nickjj/docker-flask-example has everything I've ever learned using Flask for the last 5-6 years.

  • awesome-flask

    A curated list of awesome things related to Flask (by mjhea0)

  • There's a number of projects listed here: https://github.com/mjhea0/awesome-flask#open-source-projects

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts