Removeprint test for meteo

This commit is contained in:
stef-devs 2022-06-18 12:07:40 +02:00
parent 01b86b0e1b
commit fff8cc8fa6
1 changed files with 0 additions and 1 deletions

View File

@ -98,7 +98,6 @@ def meteo_step(message):
city = message.text
token_weather = os.environ.get('WEATHER_TOKEN')
response = requests.get("https://api.openweathermap.org/data/2.5/weather?q="+city+",it&APPID="+token_weather).json()
print(response)
weather = response['weather'][0]['main']
temp = response['main']['temp']
temp = temp - 273.15