Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -409,7 +409,7 @@ def fetch_local_news():
|
|
409 |
api_key = os.environ['SERP_API']
|
410 |
url = f'https://serpapi.com/search.json?engine=google_news&q=birmingham headline&api_key={api_key}'
|
411 |
response = requests.get(url)
|
412 |
-
if response.status_code == 200
|
413 |
results = response.json().get("news_results", [])
|
414 |
news_html = """
|
415 |
<h2 style="font-family: 'Georgia', serif; color: #ff0000; background-color: #f8f8f8; padding: 10px; border-radius: 10px;">Birmingham Today</h2>
|
|
|
409 |
api_key = os.environ['SERP_API']
|
410 |
url = f'https://serpapi.com/search.json?engine=google_news&q=birmingham headline&api_key={api_key}'
|
411 |
response = requests.get(url)
|
412 |
+
if response.status_code == 200:
|
413 |
results = response.json().get("news_results", [])
|
414 |
news_html = """
|
415 |
<h2 style="font-family: 'Georgia', serif; color: #ff0000; background-color: #f8f8f8; padding: 10px; border-radius: 10px;">Birmingham Today</h2>
|