Open-Source

Open-Source app, designed by HTML5 Up, coded in Flask Microframework.
Features: Login, Registration, SQLite database, SQLAlchemy ORM, Static export

Get Sources

Built in Flask

Flask is a Python web framework built with a small core and easy-to-extend philosophy. Flask is also easy to get started with as a beginner because there is little boilerplate code for getting a simple app up and running.

Flask Microframework

Coded by AppSeed

Get more Flask, JAMstack, React, Vue apps. Most of them are free and open-source.

Learn more

Why using Flask?

Flask is considered more Pythonic than the Django web framework because in common situations the equivalent Flask web application is more explicit. Flask is also easy to get started with as a beginner because there is little boilerplate code for getting a simple app up and running.

from flask import Flask
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, World!'

if __name__ == '__main__':
    app.run()
The above code shows "Hello, World!" on localhost port 5000 in a web browser when run with the python app.py command and the Flask library installed.

Flask Mega Tutorial

A must read tutorial, for any aspiring Flask developer.

Learn more

Flask Apps

Get More Flask Apps - Index provided by AppSeed

Get Flask Apps