mojidev-py / discmoji

A discord API wrapper made for fun
MIT License
4 stars 1 forks source link

discmoji

CodeFactor License PyPI - Version GitHub code size in bytes

ā” What is Discmoji?

Discmoji is an API wrapper for Discord, made for fun! This isn't meant for production use, and if it does get used a lot, the library will get a redesign.

šŸ’” Suggestions?

Open a issue with the label enhancement, and follow the template!

ā­ļø Contributing

Discmoji needs contributors! contact me (mojidev-py) at pycharmdudeig@gmail.com to become one!

šŸ“– Example

Replace DISCORD_BOT_TOKEN with your actual bot token.

from discmoji import *
import asyncio

DISCORD_BOT_TOKEN = "1234567890"

Client = Bot(token=DISCORD_BOT_TOKEN,intents=123213123) 

@Client.command(name="example_command")
async def commd(ctx: Invoked):
    Client.get_guild(1234567)
    Client.send_message("message")

@commd.error()
async def example_error(ctx: Invoked,error: Exception):
    print("Something bad happened!")

asyncio.run(Client.connect)

šŸ“£ ANNOUNCEMENTS/FAQ

šŸš€ Development Schedule???

The development schedule will have fluctuations, but expect atleast 5 commits a week.

šŸ¤ž 1.0.0?

1.0.0 is going to come out in 2025. No solid dates yet!

ā” Will this ever be finished?

Fingers Crossed!