import pyowm
owm = pyowm.OWM('8aaa642f3051d68414d66436b06cea01', language = 'ru')
observation = owm.weather_around_coords (56.328715, 44.012094)
w = observation.get_weather()
print (w)
Traceback (most recent call last):
File "/Users/denisdrugov/Documents/w21.py", line 7, in <module>
w = observation.get_weather()
AttributeError: 'list' object has no attribute 'get_weather'