SelfDiscord

Discord API Wrapper for Self Bots


Keywords
discord, discord-api, discord-api-wrapper, python, selfbot, selfdiscord
License
MIT
Install
pip install SelfDiscord==0.6

Documentation

SelfDiscord

Discord server invite PyPI version info PyPI supported Python versions

An easy API wrapper for discord self bots written in python.

Key Features

  • Proxy Support.
  • Self Bot Support.
  • Proper rate limit handling.
  • Coverage of the supported Discord API.
  • Optimised in both speed and memory.

Installing

Python 3.5.3 or higher is required

# Linux/macOS
python3 -m pip install -U SelfDiscord

# Windows
py -3 -m pip install -U SelfDiscord

Quick Example

from selfdiscord import SelfDiscord

client = SelfDiscord(token='token')

print(f"Logged in as {client.username}#{client.discriminator}")

client.CreateServer("SelfDiscord")

You can find more examples in the examples directory.

Links