Geek7 commited on
Commit
e3583fc
·
1 Parent(s): 9988261

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -31
app.py CHANGED
@@ -1,36 +1,7 @@
1
  import streamlit as st
2
  from pytube import YouTube
3
- from streamlit.components.v1 import html
4
-
5
- html(
6
- """
7
- <!DOCTYPE html>
8
- <html lang="en">
9
- <head>
10
- <meta charset="UTF-8">
11
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
12
- <title>Document</title>
13
- <style>
14
- .m{
15
- background-image: linear-gradient(115deg,#FFAF00,#FFC500,#FFD600,#FCED00,#F9F380,#F6F7CD);
16
- animation: rotate 7s linear infinite;
17
-
18
- }
19
- @keyframes rotate {
20
- 100%{
21
- filter: hue-rotate(-360deg)
22
- }
23
- }
24
- </style>
25
- </head>
26
- <body>
27
- <div class="m">
28
-
29
- </div>
30
- </body>
31
- </html>
32
- """
33
- )
34
 
35
 
36
 
 
1
  import streamlit as st
2
  from pytube import YouTube
3
+
4
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
 
7