Skip to content
Snippets Groups Projects
Commit 64f4c3ca authored by Jonas Leder's avatar Jonas Leder
Browse files

documentation

parent 2d352e49
No related branches found
No related tags found
No related merge requests found
#!/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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment