mgokg commited on
Commit
b09ae24
·
verified ·
1 Parent(s): 1903165

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -69,12 +69,12 @@ def duckduckgo(search_term):
69
  url = f"https://duckduckgo.com?q=impressum{search_term}"
70
  try:
71
  response = requests.get(url)
72
- response.raise_for_status() # Raises HTTPError for bad responses
73
  s1 = response.text
74
  # Removing HTML tags using Beautiful Soup
75
  soup = BeautifulSoup(s1, "html.parser")
76
  s2 = soup.get_text()
77
- return s2
78
  #return response.text # Return the content of the response
79
  except requests.exceptions.RequestException as e:
80
  print(f"An error occurred: {e}")
 
69
  url = f"https://duckduckgo.com?q=impressum{search_term}"
70
  try:
71
  response = requests.get(url)
72
+ #response.raise_for_status() # Raises HTTPError for bad responses
73
  s1 = response.text
74
  # Removing HTML tags using Beautiful Soup
75
  soup = BeautifulSoup(s1, "html.parser")
76
  s2 = soup.get_text()
77
+ return s1
78
  #return response.text # Return the content of the response
79
  except requests.exceptions.RequestException as e:
80
  print(f"An error occurred: {e}")