Geek7 commited on
Commit
33d1f47
·
1 Parent(s): 6392793

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
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
+