feat: Added notes creation, view and deletion, added route planning, added location list with current weather and nearby locations, code improvements and fixes

This commit is contained in:
ITQ
2024-03-26 07:49:50 +03:00
parent 65719a61ef
commit 88dfe1704d
24 changed files with 1571 additions and 301 deletions
+12
View File
@@ -0,0 +1,12 @@
__all__ = "get_weather"
import requests
from app.config import Config
def get_current_weather(lat, lot):
api_key = Config.OPENWEATHERMAP_API_KEY
result_url = f"https://api.openweathermap.org/data/2.5/weather?lat={lat}&lon={lot}&appid={api_key}&lang=en&units=metric" # noqa
return requests.get(result_url).json()