Spaces:
Running
Running
Update app.py
Browse files
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
|
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}")
|