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