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