import discord
from discord.ext import commands
class BotClient(discord.ext.commands.Bot):
async def on_ready(self):
print("The big result bot is ready!")
for guild in self.guilds:
break;
await self.send_msg("Hurlo")
async def send_msg(self, msg):
channel = self.get_channel(427176475406630914)
await channel.send(msg)