rasmodev commited on
Commit
4e2b343
·
1 Parent(s): 9dd9f38

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py CHANGED
@@ -19,6 +19,25 @@ youtube = build('youtube', 'v3', developerKey=api_key)
19
  def main():
20
  st.title("YouTube Playlist Video Organizer")
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  # Get the playlist URL from the user
23
  playlist_url = st.text_input("Enter the playlist URL:")
24
 
 
19
  def main():
20
  st.title("YouTube Playlist Video Organizer")
21
 
22
+ # Add an image and additional details
23
+ st.markdown("""
24
+ ## YouTube Playlist Video Organizer
25
+
26
+ Welcome to the YouTube Playlist Video Organizer app!
27
+ This tool helps you organize videos in a playlist based on repetitive terms.
28
+
29
+ To get started, enter the playlist URL and the repetitive terms in the respective input fields.
30
+ Click the "Organize Videos" button to generate a document with organized videos.
31
+
32
+ **How to Use:**
33
+ - Enter the playlist URL.
34
+ - Specify repetitive terms (comma-separated).
35
+ - Click the "Organize Videos" button.
36
+ - Download the organized videos document.
37
+
38
+ Enjoy organizing your YouTube playlist effortlessly!
39
+ """)
40
+
41
  # Get the playlist URL from the user
42
  playlist_url = st.text_input("Enter the playlist URL:")
43