TA-Lib / app.py
kristada673's picture
Upload app.py
46222c4
raw
history blame
No virus
162 Bytes
import gradio as gr
import talib
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()