Add web class

This commit is contained in:
n07070 2022-03-12 04:29:51 +01:00
parent 2b8480c89d
commit c3c21a510a

View File

@ -1,12 +1,29 @@
class web(object):
from flask import Flask, request
from printer import Printer
import time
import os
class Web(object):
"""docstring for web."""
def __init__(self, arg):
super(web, self).__init__()
self.arg = arg
def __init__(self, app, printer ):
super(Web).__init__()
self.printer = printer
self.app = app
def login_page():
return "login page"
def print_sms(self, texte, sign: str):
# TODO: verify the texte before printing it here ?
self.app.logger.debug("Printing : " + str(texte))
if not os.getenv('LIPY_DEBUG'):
time.sleep(10)
def logout_page():
return "logout"
return self.printer.print_sms(texte, sign)
def print_image(self, image):
pass
def login(username: str,password: str) -> bool:
pass
def logout(username: str, password: str) -> bool:
pass