diff --git a/kycnot.py b/kycnot.py index 4dce32e..71fbff6 100755 --- a/kycnot.py +++ b/kycnot.py @@ -8,12 +8,13 @@ from sanic.response import text from sanic.response import html from sanic import Sanic -import ruamel.yaml from bs4 import BeautifulSoup from random import randrange +import ruamel.yaml import datetime import os.path import httpx +import qrcode import os import re @@ -31,24 +32,6 @@ app.static('/static', static_dir) yaml = ruamel.yaml.YAML() -FOOTER = f"""""" - -""" -# is-primary = Teal -> Verified tag -# is-success = Green -> Positive -# is-warning = Yellow -> Warning -# is-danger = Red -> Negative / Danger -# is-black = Black -> Other info -# is-light = Dark Grey -> None -# is-info = Info Blue -> Buy/Exchange -# is-dark = Light grey -> XMR / BTC non accepted -""" - # filename = "" @app.route("/", name="index") @app.route("/index", name="index")