Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jgwill
/
nalit-x2409a-gradio
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3ef9711
nalit-x2409a-gradio
/
app.py
jgwill
try:tf
3ef9711
5 months ago
raw
Copy download link
history
blame
Safe
216 Bytes
import
gradio
as
gr
from
jgtutils.jgtpov
import
get_higher_tf_by_level
def
gettf
(
timeframe
):
return
get_higher_tf_by_level(timeframe)
demo = gr.Interface(fn=gettf, inputs=
"text"
, outputs=
"text"
)
demo.launch()