Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 357 Bytes

File metadata and controls

30 lines (23 loc) · 357 Bytes

Discord RAT

Setup

Install library

pip install -r requirements.txt

or

pip3 install -r requirements.txt

Put your bot token in

token = ""
bot.run(token)

or using token from environment

from dotenv import load_dotenv
load_dotenv('.env')
token = os.getenv("DISCORD_TOKEN")
bot.run(token)

Enjoy.