Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 570 Bytes

File metadata and controls

27 lines (23 loc) · 570 Bytes

UDWP

This library is under development and shouldn't be used in production.

  • User Discord Wrapper written in Python.

Getting Started

Download the library using:

pip install git+https://github.com/TheAspectDev/UDWP.git

Code your own self-bot :

from UDWP.core import Client
from UDWP.type import Message

client = Client(
    token="your_token_here"
)
@client.on_start
async def start():
    print("Client has connected successfully!")
    
@client.on_message
async def msgHandler(e: Message):
    print(e.content)    
    
client.run()