mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 11:40:12 +01:00
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
"""
|
|
Copyright © Krypton 2019-Present - https://github.com/kkrypt0nn (https://krypton.ninja)
|
|
Description:
|
|
🐍 A simple template to start to code your own and personalized Discord bot in Python
|
|
|
|
Version: 6.4.0
|
|
"""
|
|
|
|
import aiohttp
|
|
import discord
|
|
from discord.ext import commands
|
|
from discord.ext.commands import Context
|
|
|
|
|
|
class Bitcoin(commands.Cog, name="bitcoin"):
|
|
def __init__(self, bot) -> None:
|
|
self.bot = bot
|
|
|
|
@commands.hybrid_command(
|
|
name="bitcoin",
|
|
description="Get the current price of bitcoin.",
|
|
)
|
|
async def bitcoin(self, context: Context) -> None:
|
|
"""
|
|
Get the current price of bitcoin.
|
|
|
|
:param context: The hybrid command context.
|
|
"""
|
|
async with aiohttp.ClientSession() as session:
|
|
async with session.get(
|
|
"https://api.coindesk.com/v1/bpi/currentprice/BTC.json"
|
|
) as request:
|
|
if request.status == 200:
|
|
data = await request.json()
|
|
embed = discord.Embed(
|
|
title="Bitcoin price",
|
|
description=f"The current price is {data['bpi']['USD']['rate']} :dollar:",
|
|
color=0xBEBEFE,
|
|
)
|
|
else:
|
|
embed = discord.Embed(
|
|
title="Error!",
|
|
description="There is something wrong with the API, please try again later",
|
|
color=0xE02B2B,
|
|
)
|
|
await context.send(embed=embed)
|
|
|
|
|
|
async def setup(bot) -> None:
|
|
await bot.add_cog(Bitcoin(bot))
|