Skip to main content

Cette librairie permet de créer des selfbots Discord.

Project description

PyDiscordSelf

Cette librairie permet de créer des selfbots Discord.

Exemple

import pydiscordself
import json

global config
with open("./config.json", "r") as configFile:
    config = json.load(configFile)

selfbot = pydiscordself.SelfBot(config["token"])

def on_ready(_data):
    print("SelfBot is READY !")

def on_message(data):
    print(data["content"])

selfbot.addEventListener("READY", on_ready)
selfbot.addEventListener("MESSAGE_CREATE", on_message)

selfbot.start()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pydiscordself-0.2-py3.11.egg (6.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page