Python Imports - GearedMountain/Web GitHub Wiki

from flask import Flask, render_template, request, session, redirect,url_for

Flask is a web framework for Python allowing it to serve a website and provide database / request functionalities.

from flask_socketio import join_room, leave_room, send, SocketIO

Flasksocketio is the socket library for flask allowing it to interact with the Javascript cloudflare socketio library. The cloudflare socketio library can be found in my other wiki page: https://github.com/GearedMountain/Web/wiki/Javascript-Imports