• __init__() got an unexpected keyword argument 'language' Как исправит?

    @RyderWilson
    from pyowm.owm import OWM
    from pyowm.utils.config import get_default_config
    from pyowm.utils import config
    from pyowm.utils import timestamps

    config_dict = get_default_config()
    posto = input("В каком городе вы хотите узнать погоду?")
    owm = OWM('your api', config_dict)
    config_dict['language'] = 'ru'
    mgr = owm.weather_manager()
    observation = mgr.weather_at_place(posto)
    w = observation.weather
    print(w)
    Ответ написан
    Комментировать