Pycordia

Start with the future, start with Pycordia.

An asynchronous Discord API wrapper written in Python.

*note that this package is still in early development and prone to change


                    import pycordia
                    from pycordia import models

                    client = pycordia.Client()

                    @client.event
                    async def on_message_create(message: models.Message):
                        if message.author.bot:
                            return
                        
                        if message.content and message.content.startswith(".ping"):
                            msg = models.Message.create(client, content=":ping_pong: Pong!")
                            await msg.send(msg.channel_id)

                    client.run("TOKEN")
                

                    $ pip install pycordia