flatindo commited on
Commit
466f759
·
1 Parent(s): ec4ec62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -34,7 +34,8 @@ def web_scrape(url):
34
  wd.set_window_size(1080, 720) # Adjust the window size here
35
  wd.get(url)
36
  wd.implicitly_wait(70)
37
- page_title = wd.title.replace("Stock Photo | Adobe Stock", "").strip()
 
38
  #content_value = meta_element.get_attribute("name")
39
 
40
 
 
34
  wd.set_window_size(1080, 720) # Adjust the window size here
35
  wd.get(url)
36
  wd.implicitly_wait(70)
37
+ page_title = wd.title
38
+ #replace("Stock Photo | Adobe Stock", "").strip()
39
  #content_value = meta_element.get_attribute("name")
40
 
41