Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -171,7 +171,7 @@ def fetch_local_news():
|
|
171 |
url = f'https://serpapi.com/search.json?engine=google_news&q=ohama headline&api_key={api_key}'
|
172 |
|
173 |
|
174 |
-
|
175 |
if response.status_code == 200:
|
176 |
results = response.json().get("news_results", [])
|
177 |
news_html = """
|
|
|
171 |
url = f'https://serpapi.com/search.json?engine=google_news&q=ohama headline&api_key={api_key}'
|
172 |
|
173 |
|
174 |
+
response = requests.get(url)
|
175 |
if response.status_code == 200:
|
176 |
results = response.json().get("news_results", [])
|
177 |
news_html = """
|