Update app.py
Browse files
app.py
CHANGED
|
@@ -24,8 +24,11 @@ st.sidebar.title("Give your URls๐?")
|
|
| 24 |
mp=st.empty()
|
| 25 |
|
| 26 |
|
| 27 |
-
urs
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
purs=st.button("gotcha", disabled=not any(url.strip() for url in urs))
|
| 31 |
if purs:
|
|
|
|
| 24 |
mp=st.empty()
|
| 25 |
|
| 26 |
|
| 27 |
+
urs=[]
|
| 28 |
+
for i in range(3):
|
| 29 |
+
url=st.sidebar.text_input(f"URL {i+1}๐")
|
| 30 |
+
urs.append(url)
|
| 31 |
+
|
| 32 |
|
| 33 |
purs=st.button("gotcha", disabled=not any(url.strip() for url in urs))
|
| 34 |
if purs:
|