Python
- 7 ответов
- 0 вопросов
1
Вклад в тег
await client.send_message(message.channel, 'USD: ' + str(btc_price_usd) + ' | RUB: ' + str(btc_price_rub))
await channel.send()
channel = message.channel
await channel.send("Куприв")
async def btcprice(ctx):
channel = ctx.channel
print('[command]: btcprice ')
btc_price_usd, btc_price_rub = get_btc_price()
await channel.send('USD: ' + str(btc_price_usd) + ' | RUB: ' + str(btc_price_rub))