In the following links, you will find more information about the mentioned tools and the official Python documentation for some of the modules we talked about in this chapter:
- Flask blueprints: http://flask.pocoo.org/docs/1.0/blueprints. Blueprints are very useful for projects that need more separation between components. Basically, a blueprint is a way to organize your application into smaller, reusable pieces.
- Comparing Django, Flask, and Pyramid: https://www.airpair.com/python/posts/django-flask-pyramid
- An SQLAlchemy tutorial, step by step: http://www.rmunn.com/sqlalchemy-tutorial/tutorial.html
- The Flask-Security extension: https://pythonhosted.org/Flask-Security/quickstart.html#sqlalchemy-application
- Using fastcgi with Flask: http://flask.pocoo.org/docs/1.0/deploying/fastcgi/