diff --git a/main.py b/main.py index ecfcd430bc6b24d216d45e184fbc4dbaf7827c9d..5a4b4ef4a2c1d74822994a5303ca07fab40b234b 100644 --- a/main.py +++ b/main.py @@ -1,10 +1,13 @@ #!/usr/bin/env python3 +#Import os Libraries from waitress import serve #Used as webserver (Production) from flask import Flask, request, redirect, make_response #Used to prepare the dynamic pages from os import environ #Used for getting the enviorement variables from itsdangerous import URLSafeSerializer #used for signing the cookies from random import choice#used for signing the cookies from string import ascii_lowercase #used for signing the cookies + +#Import of shorter specific files from table_check import table_check #import the table check file from makeqr import makeQR #Qr code generation tool from grecaptcha_verify import grecaptcha_verify #Tool to verify the google recaptcha response