при желании разбить код на несколько файлов возникла ошибка. Я создал файл pictures, код ниже:
@bot.command()
async def pic(ctx):
_rand = randint(1, 5)
if _rand == 1:
await ctx.send(file=discord.File("1.jpg"))
if _rand == 2:
await ctx.send(file=discord.File("2.jpg"))
if _rand == 3:
await ctx.send(file=discord.File("3.jpg"))
if _rand == 4:
await ctx.send(file=discord.File("4.jpg"))
if _rand == 5:
await ctx.send(file=discord.File("5.jpg"))
Далее испортивал его в свой проект:
import discord
import config
import pict
from discord.ext import commands
from random import randint
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix=".", intents=intents)
Выдаёт ошибку, что имя bot не найдено