A lot of imports in most of the code does not give a purpose or is reimported multiple times
here is an example of useful.py
import discord
from discord import app_commands
from discord.ext import commands
import requests
import time # Not used
import json
import random
import discord # REPEATED
from discord.ext import commands # REPEATED
from discord import app_commands # REPEATED
from discord.ext import tasks # Not used
import asyncio # Not used
from threading import Thread # Not used
import hashlib # Not used
import base64 # Not used
from enum import Enum # Not used
A lot of imports in most of the code does not give a purpose or is reimported multiple times
here is an example of
useful.py