Привет, пишу дискорд-бота для теста, но выводит ошибку [SSLCertVerificationError: (1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired
.
Как исправить?
Windows 10, Python 3.8.3, библиотека: discord.py
Python:
import discord from discord.ext import commands
TOKEN = 'Мой Токен'
bot = commands.Bot(command_prefix='L')
@bot.command(pass_context=True)
async def test(ctx, arg):
await ctx.send(arg)
bot.run(TOKEN)
client = discord.Client()
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('$hello'):
await message.channel.send('Hello!')
client.run('Мой токен')
Как исправить?
Windows 10, Python 3.8.3, библиотека: discord.py
Последнее редактирование: