From 64f4c3ca3f0d5d1a941876f4ecacbe5f7fd0b118 Mon Sep 17 00:00:00 2001 From: jonasled <jonas@jonasled.de> Date: Sun, 23 Feb 2020 16:58:07 +0100 Subject: [PATCH] documentation --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index ecfcd43..5a4b4ef 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 -- GitLab