discord py message link

Solutions on MaxInterview for discord py message link by the best coders in the world

showing results for - "discord py message link"
Manuel
14 Jan 2017
1link = 'https://discordapp.com/channels/guild_id/channel_id/message_id'.split('/')
2message = await self.bot.get_guild(int(link[-3])).get_channel(int(link[-2])).fetch_message(int(link[-1]))
3