Skip to content

Change from only weatherstack to both #10882

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Oct 24, 2023
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
a7866ae
Update current_weather.py
nababuddin Oct 24, 2023
d2fcd7e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 24, 2023
34eb55d
Update current_weather.py
nababuddin Oct 24, 2023
a7df865
Update current_weather.py
nababuddin Oct 24, 2023
34a8075
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 24, 2023
4a78eab
Update current_weather.py
nababuddin Oct 24, 2023
5a4068e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 24, 2023
c80aa7b
Update current_weather.py
nababuddin Oct 24, 2023
1020c82
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 24, 2023
90e6638
Update current_weather.py
nababuddin Oct 24, 2023
50ecb60
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 24, 2023
f84de33
Update current_weather.py
nababuddin Oct 24, 2023
9c9fc6e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 24, 2023
234a6fb
Update current_weather.py
nababuddin Oct 24, 2023
8bc5d92
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 24, 2023
a47a8ce
Update current_weather.py
nababuddin Oct 24, 2023
33578f8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 24, 2023
e725598
Update current_weather.py
nababuddin Oct 24, 2023
ef6b2ca
Update current_weather.py
nababuddin Oct 24, 2023
bbc2670
Update current_weather.py
nababuddin Oct 24, 2023
f00741d
Update current_weather.py
cclauss Oct 24, 2023
6c3bd3a
import requests
cclauss Oct 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 42 additions & 22 deletions web_programming/current_weather.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,50 @@
import requests

APPID = "" # <-- Put your OpenWeatherMap appid here!
URL_BASE = "https://api.openweathermap.org/data/2.5/"


def current_weather(q: str = "Chicago", appid: str = APPID) -> dict:
"""https://openweathermap.org/api"""
return requests.get(URL_BASE + "weather", params=locals()).json()


def weather_forecast(q: str = "Kolkata, India", appid: str = APPID) -> dict:
"""https://openweathermap.org/forecast5"""
return requests.get(URL_BASE + "forecast", params=locals()).json()


def weather_onecall(lat: float = 55.68, lon: float = 12.57, appid: str = APPID) -> dict:
"""https://openweathermap.org/api/one-call-api"""
return requests.get(URL_BASE + "onecall", params=locals()).json()
# Put your API key(s) here
OPENWEATHERMAP_API_KEY = ""
WEATHERSTACK_API_KEY = ""

# Define the URL for the APIs with placeholders
OPENWEATHERMAP_URL_BASE = "https://api.openweathermap.org/data/2.5/weather"
WEATHERSTACK_URL_BASE = "http://api.weatherstack.com/current"


def current_weather(location: str) -> list[dict]:
"""
>>> current_weather("location")
Traceback (most recent call last):
...
ValueError: No API keys provided or no valid data returned.
"""
weather_data = []
if OPENWEATHERMAP_API_KEY:
params_openweathermap = {"q": location, "appid": OPENWEATHERMAP_API_KEY}
response_openweathermap = requests.get(
OPENWEATHERMAP_URL_BASE, params=params_openweathermap
)
weather_data.append({"OpenWeatherMap": response_openweathermap.json()})
if WEATHERSTACK_API_KEY:
params_weatherstack = {"query": location, "access_key": WEATHERSTACK_API_KEY}
response_weatherstack = requests.get(
WEATHERSTACK_URL_BASE, params=params_weatherstack
)
weather_data.append({"Weatherstack": response_weatherstack.json()})
if not weather_data:
raise ValueError("No API keys provided or no valid data returned.")
return weather_data


if __name__ == "__main__":
from pprint import pprint

while True:
location = input("Enter a location:").strip()
location = "to be determined..."
while location:
location = input("Enter a location (city name or latitude,longitude): ").strip()
if location:
pprint(current_weather(location))
else:
break
try:
weather_data = current_weather(location)
for forecast in weather_data:
pprint(forecast)
except ValueError as e:
print(repr(e))
location = ""