mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
12 lines
279 B
Python
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)
|