Why I am I getting TypeError: \'module\' object is not callable with my code?
TypeError: \'module\' object is not callable
import discord from discord.ext.commands import Bot from discord.ext i
Client = discord.Client()
Remove this line entirely. You aren't using Client anywhere, and discord.ext.commands.Bot is a subclass of discord.Client, so you can access all of the Client attributes through Bot.
Client
discord.ext.commands.Bot
discord.Client
Bot