Skip to content

ryankamiri/SelfDiscord

Repository files navigation

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.