Spaces:
Paused
Paused
Create p.py
Browse files
p.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
with gr.Blocks() as app:
|
| 4 |
+
gr.HTML("""
|
| 5 |
+
<iframe
|
| 6 |
+
src="https://www.1hit.no/cover/complete.php"
|
| 7 |
+
width="100%"
|
| 8 |
+
height="700"
|
| 9 |
+
style="border:none;">
|
| 10 |
+
</iframe>
|
| 11 |
+
""")
|
| 12 |
+
|
| 13 |
+
if __name__ == "__main__":
|
| 14 |
+
app.launch()
|