Update app.py
Browse files
app.py
CHANGED
@@ -2,9 +2,16 @@ import streamlit as st
|
|
2 |
from pytube import YouTube
|
3 |
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
class YouTubeDownloader:
|
10 |
@staticmethod
|
|
|
2 |
from pytube import YouTube
|
3 |
|
4 |
|
5 |
+
hide_streamlit_style = """
|
6 |
+
<style>
|
7 |
+
#MainMenu {visibility: hidden;}
|
8 |
+
footer {visibility: hidden;}
|
9 |
+
background-image:url("./color-pallete.gif”)
|
10 |
+
|
11 |
+
</style>
|
12 |
+
"""
|
13 |
+
|
14 |
+
st.markdown( hide_streamlit_style, unsafe_allow_html=True)
|
15 |
|
16 |
class YouTubeDownloader:
|
17 |
@staticmethod
|