Answers for "show the weather temperature py"

0

python get weather temperature

import pyowm
owm = pyowm.OWM()
observation = owm.weather_at_place('London,uk')
w = observation.get_weather()
w.get_wind()
w.get_humidity()
################
# Run
>>> {u'speed': 3.1, u'deg': 220}
>>> 76
Posted by: Guest on January-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language