bsenst commited on
Commit
1a56b6b
·
verified ·
1 Parent(s): dced2cd

add url writing code

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -24,3 +24,6 @@ if st.button("URLs extrahieren"):
24
  if url_input:
25
  st.write(f"Extrahiere URLs von: {url_input}")
26
  urls = extract_urls(url_input)
 
 
 
 
24
  if url_input:
25
  st.write(f"Extrahiere URLs von: {url_input}")
26
  urls = extract_urls(url_input)
27
+ for url in set(urls):
28
+ if url.startswith("http"):
29
+ st.write(url)