Skip to content

Devcord is an unreleased discord API wrapper made using Python.

License

Notifications You must be signed in to change notification settings

Code-Done-Right/devcord.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

❓ Devcord

Devcord is a Python based Discord API wrapper. We use Discord's V10 API (The latest API version) and the latest Discord Gateway.

We are still in the alpha stages of development.

Devcord is well-tested on Python v3.10, but ideally v3.9 and v3.8 should work with equal performance.

💻 Usage

Devcord is still in very early development stages, but the expected syntax will be updated everytime below:

import devcord

INTENTS = devcord.Intents.All()

bot = devcord.BotUser(
        bot_token = '...',
        intents = INTENTS,
        prefixes = ['devcord', 'devcord.']
    )

bot.run()

⛓ Links