Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,15 @@
|
|
1 |
import streamlit as st
|
2 |
from pytube import YouTube
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
class YouTubeDownloader:
|
5 |
@staticmethod
|
6 |
def run():
|
@@ -59,3 +68,4 @@ class YouTubeDownloader:
|
|
59 |
|
60 |
if __name__ == "__main__":
|
61 |
YouTubeDownloader.run()
|
|
|
|
1 |
import streamlit as st
|
2 |
from pytube import YouTube
|
3 |
|
4 |
+
hide_streamlit_style = """
|
5 |
+
<style>
|
6 |
+
#MainMenu {visibility: hidden;}
|
7 |
+
footer {visibility: hidden;}
|
8 |
+
</style>
|
9 |
+
"""
|
10 |
+
|
11 |
+
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
12 |
+
|
13 |
class YouTubeDownloader:
|
14 |
@staticmethod
|
15 |
def run():
|
|
|
68 |
|
69 |
if __name__ == "__main__":
|
70 |
YouTubeDownloader.run()
|
71 |
+
|