Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
kristada673
/
TA-Lib
like
0
Runtime error
App
Files
Files
Community
33d1879
TA-Lib
/
app.py
kristada673
Upload app.py
46222c4
over 1 year ago
raw
Copy download link
history
blame
Safe
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()