silviatulli commited on
Commit
910f78e
·
verified ·
1 Parent(s): 5f38fa6

adding API key for weather

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ def get_weather(city: str, country_code: str) -> str:
44
  Returns:
45
  str: Weather information including temperature and conditions
46
  """
47
- API_KEY = "YOUR_API_KEY" # Replace with your OpenWeatherMap API key
48
  base_url = "http://api.openweathermap.org/data/2.5/weather"
49
 
50
  try:
 
44
  Returns:
45
  str: Weather information including temperature and conditions
46
  """
47
+ API_KEY = "e1fe2072ac16c642a74b1b17723669a4"
48
  base_url = "http://api.openweathermap.org/data/2.5/weather"
49
 
50
  try: