交互库gradio
https://zhuanlan.zhihu.com/p/679668818
pip install gradio
import gradio as gr
print(gr.__version__)
# 4.15.0
import gradio as grdef greet(name):return "Hello " + name + "!"
iface = gr.Interface(fn=greet, inputs=gr.Textbox(), outputs=gr.Textbox())
iface.launch()