patharanor/invex
0
LayoutLM for Invoice
Pre-requirements
Tesseract requires you to install tesseract-ocr via apt command, just adding it in packages.txt.
tesseract-ocrSecure
This service is private application, requires user name and password (ref. secret variable USERNAME & PASSWORD).
def auth(username, password):
u = os.environ.get('USERNAME')
p = os.environ.get('PASSWORD')
return (username == u and password == p)
with gr.Blocks() as demo:
# setup layout here...
demo.launch(auth=auth)