mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-24 05:33:44 +03:00
19 lines
605 B
Python
19 lines
605 B
Python
import requests
|
|
|
|
from django.conf import settings
|
|
|
|
api_url = "https://api.weather.yandex.ru/v2/forecast"
|
|
|
|
|
|
def get_position_weather(lat: float, lon: float) -> list[(str, str)]:
|
|
url = api_url + f"?lat={lat}&lon={lon}&lang=ru_RU&limit=3&hours=false"
|
|
response = requests.get(
|
|
url=url, headers={"X-Yandex-API-Key": settings.YANDEX_TOKEN}
|
|
)
|
|
|
|
if response.status_code == 200:
|
|
data = response.json()
|
|
temp_feels = data["forecasts"][0]["parts"]["day"]["feels_like"]
|
|
weather = data["forecasts"][0]["parts"]["day_short"]["condition"]
|
|
return temp_feels, weather
|