Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -28,7 +28,7 @@ def get_weather(city: str) -> str:
|
|
| 28 |
Args:
|
| 29 |
city: The name of the city (e.g., 'Paris', 'Tokyo').
|
| 30 |
"""
|
| 31 |
-
API_KEY = "
|
| 32 |
BASE_URL = "http://api.openweathermap.org/data/2.5/weather"
|
| 33 |
params = {
|
| 34 |
"q": city,
|
|
|
|
| 28 |
Args:
|
| 29 |
city: The name of the city (e.g., 'Paris', 'Tokyo').
|
| 30 |
"""
|
| 31 |
+
API_KEY = "a4ce8d6e8a0f7c3a5305a4e6996f16c1" # <-- IMPORTANT: Replace with your actual API key
|
| 32 |
BASE_URL = "http://api.openweathermap.org/data/2.5/weather"
|
| 33 |
params = {
|
| 34 |
"q": city,
|