gradio/demo/hello_world_test.py
2021-10-18 18:34:28 +00:00

12 lines
279 B
Python

import gradio as gr
from random import choice
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
u, p = choice("qwerty"), choice("asdf")
print(u, p)
if __name__ == "__main__":
iface.launch(auth=(u,p), share=True)