# weather
@client.command()
async def w( ctx, *, arg ):
owm = pyowm.OWM( 'API KEY' )
city = arg
observation = owm.weather_at_place( city )
w = observation.get_weather()
temperature = w.get_temperature( 'celsius' )[ 'temp' ]
await ctx.send( f'Температура в { city } : { temperature }' )