from flask import Flask, request from printer import Printer import time import os class Web(object): """docstring for web.""" def __init__(self, app, printer ): super(Web).__init__() self.printer = printer self.app = app def print_sms(self, texte, sign: str): # TODO: verify the texte before printing it here ? self.app.logger.debug("Printing : " + str(texte) + " from " + str(sign)) if not os.getenv('LIPY_DEBUG'): time.sleep(1) 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