sasha HF Staff commited on
Commit
b4a1b10
·
verified ·
1 Parent(s): 32288fd

Update app.py

Browse files

nevermind, trying with HTML

Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -1,15 +1,9 @@
1
  import gradio as gr
2
- from gradio_iframe import iFrame
3
-
4
-
5
- example = iFrame().example_inputs()
6
 
7
  with gr.Blocks() as demo:
8
  with gr.Row():
9
  gr.Markdown("## Optiforme Exercise Displayer")
10
  with gr.Row():
11
- iFrame(label="MuscleWiki"), # blank component
12
- iFrame(value=example, label="Populated"), # populated component
13
-
14
 
15
  demo.launch()
 
1
  import gradio as gr
 
 
 
 
2
 
3
  with gr.Blocks() as demo:
4
  with gr.Row():
5
  gr.Markdown("## Optiforme Exercise Displayer")
6
  with gr.Row():
7
+ exercise = gr.HTML(input="https://musclewiki.com/barbell/male/glutes/barbell-squat")
 
 
8
 
9
  demo.launch()