• Ошибка в модуле PYOWM что делать?

    @Fairworf Автор вопроса
    Traceback (most recent call last):
    File "pogoda.py", line 8, in
    observation = mgr.get_weather_at_place(place)
    AttributeError: 'WeatherManager' object has no attribute 'get_weather_at_place'

    Извини, если очень туплю, я новичок :з

    import pyowm

    place = input("Введите город/страну: ")

    from pyowm.owm import OWM
    owm = OWM('604bee8fa0c3b51a2c9887c6e50b451c')
    mgr = owm.weather_manager()
    observation = mgr.get_weather_at_place(place)

    w = observation.get_weather_at_place
    print(w)