ska-referee-test/REFERENCES.md
viveksantayana f361d25728 Finished data upload
Refactored to move security package inside common
Moved data folder to process root.
2021-11-28 02:30:46 +00:00

4.0 KiB

References for Learning Flask, etc

Documentation

Docker/Docker-Compose

MongoDB/PyMongo

Source Code

Guides

Flask General

Stack Exchange/Overflow

MongoDB

YouTube Tutorials

General Flask Introduction

Note: These tutorials use an outdated version of Bootstrap where some of the elements no longer apply.

Build a User Log-In System using Python and MongoDB

This method uses a basic HTML form and handles log-ins manually (rather than flask-login or flask-auth). It uses sessions to handle user interactions (rather than cookies). A better method would be to layer this with other Flask modules, such as flask-login, flask-auth, flask-wtforms, etc. This tutorial is nevertheless really useful for integrating with MongoDB.

Creating a User Login Session using Python, Flask, and MongoDB

A much simpler and more rudimentary introduction to Flask and MongoDB.

flask-login

A much more robust method that uses the various Flask modules to make a more powerful framework. Uses SQL rather than MongoDB.

Flask techniques

Flask handling file uploads