Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -40,10 +40,10 @@ def main():
|
|
40 |
""")
|
41 |
|
42 |
# Get the playlist URL from the user
|
43 |
-
playlist_url = st.text_input("Enter the playlist URL:")
|
44 |
|
45 |
-
# Get repetitive terms from the user
|
46 |
-
repetitive_terms = st.text_input("Enter repetitive terms (comma-separated):")
|
47 |
repetitive_terms = [term.strip().upper() for term in repetitive_terms.split(',')]
|
48 |
|
49 |
if st.button("Organize Videos"):
|
|
|
40 |
""")
|
41 |
|
42 |
# Get the playlist URL from the user
|
43 |
+
playlist_url = st.text_input("Enter the playlist URL (e.g., https://www.youtube.com/watch?v=rGx1QNdYzvs&list=PLUaB-1hjhk8FE_XZ87vPPSfHqb6OcM0cF):")
|
44 |
|
45 |
+
# Get repetitive terms from the user
|
46 |
+
repetitive_terms = st.text_input("Enter repetitive terms (comma-separated, e.g., Excel, Sql, Power Bi, Tableau, Python):")
|
47 |
repetitive_terms = [term.strip().upper() for term in repetitive_terms.split(',')]
|
48 |
|
49 |
if st.button("Organize Videos"):
|