import discord from os import listdir class Client(discord.Client): async def on_ready(self): print("Logged on as", self.user) # file = discord.File(open("shapiro.png", "rb"), filename="shapiro.png") channel = self.get_channel(256684714180608001) # await channel.send(file=file) await self.logout() client = Client() client.run(open("token").read().strip())