Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,6 @@ def fx(x:str):
|
|
5 |
gr.Dataframe(headers=['项目','数据'],interactive=True)
|
6 |
text_input=gr.Textbox(placeholder='请输入测试字符串',label="请输入测试内容")
|
7 |
demo=gr.Interface(fx, inputs=text_input, outputs=gr.Textbox(label="输出"))
|
8 |
-
if __name__
|
9 |
demo.launch(auth=lambda a,b:user_db.get(a)==b,auth_message="欢迎使用本web app")
|
10 |
|
|
|
5 |
gr.Dataframe(headers=['项目','数据'],interactive=True)
|
6 |
text_input=gr.Textbox(placeholder='请输入测试字符串',label="请输入测试内容")
|
7 |
demo=gr.Interface(fx, inputs=text_input, outputs=gr.Textbox(label="输出"))
|
8 |
+
if __name__=='__main__':
|
9 |
demo.launch(auth=lambda a,b:user_db.get(a)==b,auth_message="欢迎使用本web app")
|
10 |
|