Здравствуйте! Начинаю только изучать Python.
Вот вопрос такой, как в коде сделать так, чтобы выводы отображались на Русском языке?
Пробовал
locale = "ru-RU"
, выдаёт ошибку.
from aiogram import Bot, Dispatcher, executor, types
import python_weather
import asyncio
bot = Bot(token="токен")
dp = Dispatcher(bot)
client = python_weather.Client(format=python_weather.METRIC)
@dp.message_handler()
async def echo(message: types.Message):
weather = await client.get(message.text)
resp_msg = "weather.location\n"
resp_msg += f"Текущая температура: {weather.current.temperature}°\n"
resp_msg += f"Состояние погоды: {weather.current.description}"
await message.answer(resp_msg)
if __name__ == "__main__":
executor.start_polling(dp, skip_updates=False)
asyncio.run(getweather())