@client.command()
async def dtl(ctx, num1:int):
url2 = "https://www.google.com/finance/quote/USD-TRY?hl=en"
sayfa1 = requests.get(url2)
html_sayfa1 = BeautifulSoup(sayfa1.content,"html.parser")
usd = html_sayfa1.find("div",class_="YMlKec fxKbKc").getText()
carpim=usd * num1.
embed = discord.Embed(title = "USD -> TURKISH LIRA" , description = f"", color = discord.Colour.red())
embed.add_field(name = f'{num1} USD', value = f"```{carpim}``` TL" , inline = True)
await ctx.send(embed=embed)