EpikCord.py - This is an API Wrapper for Discord's API for Python

Overview

EpikCord.py

Welcome to EpikCord.py! This is an API Wrapper for Discord's API for Python! We've decided not to fork discord.py and start completely from scratch for a new, better structuring system!

Why EpikCord.py?

Because Discord.py has been discontinued and is no longer maintained, we've decided to make our own Python API Wrapper for the Discord API. The reason for this is because we want an easier method for you, the developer, to use the API, with great ease.

Why is there literally nothing in here?

Here, we decided to not for Discord.py and to go for an entirely different structure to our code, thus meaning we're not gonna have anywhere to start from. We may include a series on the EpikHost YouTube channel for helping people migrate to our library from Discord.py (not promised).

I want to contribute!

We love contributions that help us, so feel free to! You won't be rewarded for this, but it helps us and we'd be very pleased with any contribution. See Contributing.md for more information.

Where are your docs?

SoonTM

Why doesn't it work?

We plan on launching a 1.0 version which will work, until that comes out you just have to sit and look at the code and predict what functions are gonna come out next.

Comments
  • Tasks

    Tasks

    Description

    Adding tasks to the lib

    The problem

    Having to implement a task loop by yourself

    The solution

    Implement it

    The current solution, if any

    Checklist

    • [x] - You have checked that there is no issue already mentioning this feature, open or closed
    • [x] - Full details of the requested feature have been provided/shown

    Additional context

    enhancement 
    opened by Jerry-py 33
  • [WiP] Start commands.checks and bettering of library

    [WiP] Start commands.checks and bettering of library

    Description

    :D

    Checklist

    • [x] - All code changes have been tested, if any
    • [ ] - The documentation has been updated accordingly for any code changes
    • [x] - This PR fixes #96 an already existing issue
    • [x] - This PR adds a new feature (new functions, methods, classes, parameters, etc.)
    • [ ] - This PR fixes a bug
    • [ ] - This PR is a breaking change (removes/renames functions, parameters etc.)
    • [ ] - This PR is NOT a code change (changes Documentation files, README.md, CONTRIBUTING.md etc.)

    Additional context

    opened by nav-github01001 20
  • Inputting no token will result in no error

    Inputting no token will result in no error

    Summary

    No token added into Client will raise no error

    Reproduction Steps

    I wrote some code and ran it with no token and raises no error

    Minimal Reproducible Code

    -> __main__.py
    from .bot import Bot
    
    if __name__ == "__main__":
        Bot().login()
    
    
    -> bot.py
    from EpikCord import Client, Intents
    
    class Bot(Client):
        def __init__(self, token: str):
            intents = Intents().all
            super().__init__(token, intents)
    
        async def on_ready(self):
            print("Ready")
    

    Expected Results

    Raise an error having no token

    Actual Results

    No error

    Intents

    All - Intents().all

    System Information

    Name: EpikCord.py
    Version: 0.4.11
    Summary: A Modern API wrapper for Discord, Intended for replacement of the now discontinued Discord.py library
    Home-page: https://github.com/EpikCord/EpikCord.py
    Author: EpikCord
    Author-email:
    License: MIT
    Location: c:\users\jerry\appdata\local\programs\python\python310\lib\site-packages
    Requires:
    Required-by:
    

    Checklist

    • [X] This bug was found on the latest version of EpikCord
    • [X] You have checked that there is no issue already mentioning this bug, open or closed
    • [X] Full details of the bug have been provided/shown, including full tracebacks in case of exceptions
    • [X] All bot tokens have been hidden/omitted from any screenshots or code, if any

    Additional Context

    No response

    bug low priority will fix later 
    opened by Jerry-py 14
  • File separation

    File separation

    Description

    File separation

    Checklist

    • [ ] - All code changes have been tested, if any
    • [ ] - The documentation has been updated accordingly for any code changes
    • [ ] - This PR fixes an already existing issue
    • [x] - This PR adds a new feature (new functions, methods, classes, parameters, etc.)
    • [ ] - This PR fixes a bug
    • [ ] - This PR is a breaking change (removes/renames functions, parameters etc.)
    • [ ] - This PR is NOT a code change (changes Documentation files, README.md, CONTRIBUTING.md etc.)

    Additional context

    opened by Jerry-py 13
  • More precise events.

    More precise events.

    Summary

    Some events are affected by a single change, affecting different things.

    The Problem

    So I was making the channel_create event handler, and I thought about how there's VoiceChannels and TextBasedChannels, and how it'd be nice to have a precise event for those. Discord.py had this with their "private_channel_create", which is whenever a DMChannelis created, but then you have channel_create event which is very broad and could cause issues if some nefarious people spam created DMChannels and the code would error, spamming the console.

    The Ideal Solution

    To have separate, precise events for each respectful type of change that could've happened within the broad event.

    The Current Solution

    No response

    Checklist

    • [X] This bug was found on the latest version of EpikCord
    • [X] Full details of the requested feature have been provided/shown

    Additional Context

    No response

    enhancement 
    opened by TheUntraceable 11
  • Async Websockets

    Async Websockets

    We should switch to Asynchronous Websockets with AIOHTTP, but the thing is I don't get how we'll use client.login, maybe that'll run the async version? I'm still baffled on how to do this one.

    bug enhancement help wanted 
    opened by TheUntraceable 11
  • Latency

    Latency

    Description

    This PR adds latency functionality to the library

    Formula = difference between heartbeat and heartbeat_ack, measured in ms for more precision

    Checklist

    • [ ] - All code changes have been tested, if any
    • [ ] - The documentation has been updated accordingly for any code changes
    • [ ] - This PR fixes an already existing issue
    • [x] - This PR adds a new feature (new functions, methods, classes, parameters, etc.)
    • [ ] - This PR fixes a bug
    • [ ] - This PR is a breaking change (removes/renames functions, parameters etc.)
    • [ ] - This PR is NOT a code change (changes Documentation files, README.md, CONTRIBUTING.md etc.)

    Additional context

    opened by nav-github01001 9
  • data.get more stuff & fix bugs (tedious)

    data.get more stuff & fix bugs (tedious)

    Description

    I have finished adding dict.get(KEY) @TheUntraceable

    Checklist

    • [ ] - All code changes have been tested, if any
    • [ ] - The documentation has been updated accordingly for any code changes
    • [x] - This PR fixes an already existing issue #43
    • [ ] - This PR adds a new feature (new functions, methods, classes, parameters, etc.)
    • [x] - This PR fixes a bug
    • [ ] - This PR is a breaking change (removes/renames functions, parameters etc.)
    • [ ] - This PR is NOT a code change (changes Documentation files, README.md, CONTRIBUTING.md etc.)

    Additional context

    opened by nav-github01001 9
  • Dict[KEY] instead of Dict.get()

    Dict[KEY] instead of Dict.get()

    Summary

    I used the incorrect method to get the value of a key from the data dict.

    Reproduction Steps

    Literally anything.

    Minimal Reproducible Code

    Anything.
    

    Expected Results

    No errors to be thrown

    Actual Results

    Errors are thrown

    Intents

    All.

    System Information

    It won't run on anything.

    Checklist

    • [X] This bug was found on the latest version of EpikCord
    • [X] You have checked that there is no issue already mentioning this bug, open or closed
    • [X] Full details of the bug have been provided/shown, including full tracebacks in case of exceptions
    • [X] All bot tokens have been hidden/omitted from any screenshots or code, if any

    Additional Context

    I need to replace all mentions of dict[key] with dict.get(key) to suppress KeyErrors.

    bug help wanted stopping library from progressing high priority 
    opened by TheUntraceable 9
  • Inch more closer to production

    Inch more closer to production

    Description

    Just add some few major and minor improvements like implement :class: StickerItem and improve setup.py

    Checklist

    • [ ] - All code changes have been tested, if any
    • [ ] - The documentation has been updated accordingly for any code changes
    • [ ] - This PR fixes an already existing issue
    • [x] - This PR adds a new feature (new functions, methods, classes, parameters, etc.)
    • [ ] - This PR fixes a bug
    • [x] - This PR is a breaking change (removes/renames functions, parameters etc.)
    • [ ] - This PR is NOT a code change (changes Documentation files, README.md, CONTRIBUTING.md etc.)

    Additional context

    opened by nav-github01001 9
  • Events and More Improvements

    Events and More Improvements

    Description

    ^ Hard Work for @TheUntraceable because he will need to update his PR 🤣

    Checklist

    • [ ] - All code changes have been tested, if any
    • [ ] - The documentation has been updated accordingly for any code changes
    • [ ] - This PR fixes an already existing issue
    • [x] - This PR adds a new feature (new functions, methods, classes, parameters, etc.)
    • [ ] - This PR fixes a bug
    • [ ] - This PR is a breaking change (removes/renames functions, parameters etc.)
    • [ ] - This PR is NOT a code change (changes Documentation files, README.md, CONTRIBUTING.md etc.)

    Additional context

    opened by nav-github01001 8
  • Restart the library

    Restart the library

    Description

    The library is very messy and outdated. It needs a rewrite. It has been a few months since I have actively worked on the library, and so I don't know where exactly I am now. Restarting the library will solve all these issues.

    Checklist

    • [ ] - All code changes have been tested, if any
    • [ ] - The documentation has been updated accordingly for any code changes
    • [ ] - This PR fixes an already existing issue
    • [x] - This PR adds a new feature (new functions, methods, classes, parameters, etc.)
    • [ ] - This PR fixes a bug
    • [x] - This PR is a breaking change (removes/renames functions, parameters etc.)
    • [ ] - This PR is NOT a code change (changes Documentation files, README.md, CONTRIBUTING.md etc.)
    enhancement high priority 
    opened by TheUntraceable 5
  • feat:Finish Channel Events

    feat:Finish Channel Events

    Description

    This PR contributes the following

    1. Adds _channel_update and _channel_delete

    Checklist

    • [ ] - All code changes have been tested, if any
    • [x] - The documentation has been updated accordingly for any code changes
    • [ ] - This PR fixes an already existing issue
    • [x] - This PR adds a new feature (new functions, methods, classes, parameters, etc.)
    • [ ] - This PR fixes a bug
    • [ ] - This PR is a breaking change (removes/renames functions, parameters etc.)
    • [ ] - This PR is NOT a code change (changes Documentation files, README.md, CONTRIBUTING.md etc.)

    Additional context

    opened by nav-github01001 4
  • Presence

    Presence

    The Presence class is meant to be used by users, but it can also be received, and so I need to either make the user use the respective arguments to set the Activity and Status, and then use the Presence class for receiving or make a new class, which seems rather redundant.

    opened by TheUntraceable 0
  • `self` not being inserted into callback for Section Commands.

    `self` not being inserted into callback for Section Commands.

    Summary

    The callback for a command within a section has never received the self parameter.

    Reproduction Steps

    Make a command within a section. Call that command on Discord

    Minimal Reproducible Code

    No response

    Expected Results

    For the command callback to succeed

    Actual Results

    It fails.

    Intents

    No response

    System Information

    Latest

    Checklist

    • [X] This bug was found on the latest version of EpikCord
    • [X] You have checked that there is no issue already mentioning this bug, open or closed
    • [X] Full details of the bug have been provided/shown, including full tracebacks in case of exceptions
    • [X] All bot tokens have been hidden/omitted from any screenshots or code, if any

    Additional Context

    No response

    opened by TheUntraceable 0
  • Id: str

    Id: str

    We should change Id's from strings to integers. This is because it is more of a hassle for developers to do their own stuff with the snowflake. They would have to do (int(snowflake) & 0x3E0000) >> 17, if they wanted to get the Internal Worker Id, rather ugly.

    opened by TheUntraceable 0
  • Introduce unit-testing for basic features

    Introduce unit-testing for basic features

    Summary

    The goal of this feature is to make part of the code-base more reliable using a test suite that validate the behavior or given object/functions

    The Problem

    There is currently no test for any feature of the whole library. This means that there is a high risk of undefined behavior, especially considering #193

    The Ideal Solution

    Partial coverage from unit-testing and integration testing of feature that are not bound to discord API.

    The Current Solution

    No response

    Additional Context

    No response

    enhancement 
    opened by Sigmanificient 0
Releases(0.5.4)
  • 0.5.4(Aug 13, 2022)

    What's Changed

    • use find_spec instead try/except, small changes by @okok7711 in https://github.com/EpikCord/EpikCord.py/pull/185
    • :recycle: Refactor and cleanup by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/186
    • some stuff by @ZenoABC in https://github.com/EpikCord/EpikCord.py/pull/188
    • :recycle: Replaced Flag with std enum.IntFlag custom subclass by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/189
    • Everything is now in it's own individual file.

    New Contributors

    • @okok7711 made their first contribution in https://github.com/EpikCord/EpikCord.py/pull/185

    Full Changelog: https://github.com/EpikCord/EpikCord.py/compare/0.5.3...0.5.4

    Source code(tar.gz)
    Source code(zip)
  • 0.5.3(Jul 30, 2022)

    What's Changed

    • command_error event by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/176
    • Small fixes by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/181

    Full Changelog: https://github.com/EpikCord/EpikCord.py/compare/0.5.2...0.5.3

    Source code(tar.gz)
    Source code(zip)
  • 0.5.2(Jul 14, 2022)

    What's Changed

    • Fixing Checks by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/177

    Full Changelog: https://github.com/EpikCord/EpikCord.py/compare/0.5.1...0.5.2

    Source code(tar.gz)
    Source code(zip)
  • 0.5.1(Jul 10, 2022)

  • 0.5.0(Jul 2, 2022)

    What's Changed

    • Fix things by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/101
    • Fix useless checklist in feature request template by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/103
    • Add more examples by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/104
    • Handle flags a bit better by @ZenoABC in https://github.com/EpikCord/EpikCord.py/pull/127
    • [WiP] revamp docs by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/130
    • :recycle: Improving option registration by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/136
    • :recycle: Fixing example Bots intents by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/137
    • :zap: Small improvements by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/138
    • Fix some typehint by @ZenoABC in https://github.com/EpikCord/EpikCord.py/pull/145
    • :recycle: Improved the EvenHandler with defaultdict by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/143
    • :recycle: Rewrote Paginator by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/147
    • :construction_worker: Added black formatter within CI by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/148
    • :recycle: A bunch of small fixes by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/149
    • :sparkles: Adding OpCodes & Status Codes by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/153
    • :bug: Fixed Event decorator by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/161
    • :recycle: More Fixes by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/162
    • Improvements: Bigger PR and we got docstrings! by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/155
    • Latency by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/156
    • :sparkles: Added implementation for DiscordAPIError by @Sigmanificient in https://github.com/EpikCord/EpikCord.py/pull/171

    New Contributors

    • @Sigmanificient made their first contribution in https://github.com/EpikCord/EpikCord.py/pull/136

    Full Changelog: https://github.com/EpikCord/EpikCord.py/compare/0.4.11...0.5.0

    Source code(tar.gz)
    Source code(zip)
  • 0.4.11(Mar 12, 2022)

    What's Changed

    • Add docs 4 installing lib by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/7
    • added preset colors by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/9
    • change params to kwargs instead of dict in embed by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/13
    • Remove iframe tag, add Discord badge by @ImNimboss in https://github.com/EpikCord/EpikCord.py/pull/19
    • Done most Embed Funcs by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/18
    • Add issue templates and pull request templates by @ImNimboss in https://github.com/EpikCord/EpikCord.py/pull/21
    • Create CODE_OF_CONDUCT.md by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/24
    • Fix bugs and get ready for release by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/23
    • Refactor code by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/25
    • Make login for bot by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/28
    • Inch more closer to production by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/30
    • Add loop cleaner by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/29
    • Utility functions by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/33
    • Fix grammar and add workflows by @Jerrydotpy in https://github.com/EpikCord/EpikCord.py/pull/41
    • Rename CONTRIBUTING to CONTRIBUTING.md by @ImNimboss in https://github.com/EpikCord/EpikCord.py/pull/38
    • New issue templates by @Jerrydotpy in https://github.com/EpikCord/EpikCord.py/pull/40
    • data.get more stuff & fix bugs (tedious) by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/49
    • Fix typo (codespell checks) by @Jerry-py in https://github.com/EpikCord/EpikCord.py/pull/56
    • Add lightmode, darkmode, blurple_old and blurple_new to the Colour class by @ImNimboss in https://github.com/EpikCord/EpikCord.py/pull/58
    • Add mainpage docs by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/59
    • Bump version to 0.4.9 to adhere to semantic versioning by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/69
    • Fix #67 by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/68
    • Add an example by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/65
    • Implement requirements.py into setup.py by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/64
    • make it more better by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/77
    • add examples + bump version number by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/78
    • Patch 6: I messed up my old pr by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/84
    • Docs improve by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/85
    • Add support for autodoc a.k.a docstrings + add docstrings by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/87
    • Bugfix/docs by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/91
    • fix docstring not deploying (hopefully) by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/92
    • Fix Pyautorelease not woking (maybe) #93 by @nav-github01001 in https://github.com/EpikCord/EpikCord.py/pull/94

    New Contributors

    • @nav-github01001 made their first contribution in https://github.com/EpikCord/EpikCord.py/pull/7
    • @ImNimboss made their first contribution in https://github.com/EpikCord/EpikCord.py/pull/19
    • @Jerry-py made their first contribution in https://github.com/EpikCord/EpikCord.py/pull/25
    • @Jerrydotpy made their first contribution in https://github.com/EpikCord/EpikCord.py/pull/41

    Full Changelog: https://github.com/EpikCord/EpikCord.py/commits/0.4.11

    Source code(tar.gz)
    Source code(zip)
Owner
EpikHost
A very "epik" hosting service!
EpikHost
Simple script to extract useful informations from the combo BloodHound + Neo4j

bloodhound-quickwin Simple script to extract useful informations from the combo BloodHound + Neo4j. Can help to choose a target. Prerequisites python3

140 Dec 21, 2022
PyDiscord, a maintained fork of discord.py, is a python wrapper for the Discord API.

discord.py A modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python. The Future of discord.py Please read the gi

Omkaar 1 Jan 16, 2022
GUI Pancakeswap V2 and Uniswap V3 trading client (and bot) MOST ADVANCE TRADING BOT SUPPORT WINDOWS LINUX MAC (BUY TOKEN ON LAUNCH)

GUI Pancakeswap 2 and Uniswap 3 SNIPER BOT 🏆 🥇 (MOST ADVANCE TRADING BOT SUPPORT WINDOWS LINUX MAC) (AUTO BUY TOKEN ON LAUNCH AFTER ADD LIQUIDITY) S

HYDRA 16 Dec 22, 2021
A Telegram Bot Plays With Words!!!

TheWordzBot ➠ I Can Turn Text Into Audio ➠ I Can Get Results From Dictionary ➠ I Can Make Google Search For You ➠ I Can Suggest Strong Passwords For Y

RAVEEN KUMAR 8 Feb 28, 2022
一个基于Python3的Bot。目前支持以Docker的方式部署在vps上。支持Aria2、本子下载、网易云音乐下载、Pixiv榜单下载、Youtue-dl支持、搜图。

介绍 一个基于Python3的Bot。目前支持以Docker的方式部署在vps上。 主要功能: 文件管理 修改主界面为 filebrowser,账号为admin,密码为admin,主界面路径:http://ip:port,请自行修改密码 FolderMagic自带的webdav:路径:http://

Ben 650 Jan 08, 2023
🖥️ Windows Batch and powershell Discord Token grabber. Made for Troll (lmao)

Batched-Grabber Windows Batch and powershell Discord Token grabber. Made for Troll ! Setup. 1. pip(3) install numpy colored 2. python(3) Batched.py 3.

Ѵιcнч 41 Nov 01, 2022
AWS SQS event redrive Lambda

This repository contains the Lambda function to redrive sqs events from source to destination queue while controlling maxRetry per event.

1 Oct 19, 2021
Discord Rich Presence for Team Fortress 2

TF2 Rich Presence Discord Rich Presence for Team Fortress 2 Detects current game state, queue info, playtime, and more Configurable, reliable, and per

Kataiser 33 Dec 31, 2022
Yuichixspam - TLEEGRAM SPAM BOT For Python

𝒀𝑼𝑰𝑪𝑯𝑰 ✘ 𝑺𝑷𝑨𝑴 𝑩𝑶𝑻ノ 🚀 Deploy on Heroku (https://heroku.com/deploy?t

MOHIT X PANDIT 6 Jan 30, 2022
The first open-source PyTgCalls-based project.

Calls Music — Telegram bot + userbot for streaming audio in group calls ✍🏻 Requirements FFmpeg Python 3.7+ 🚀 Deployment 🛠 Configuration Copy exampl

Calls Music 74 Nov 19, 2022
Posts locally saved videos to the desired subreddit

redditvideoposter posts locally saved videos to the desired subreddit ================================================================= STEPS: pip ins

Kyrus 2 Dec 01, 2021
A EddieHub API python package.

EddieHub A EddieHub API python package. Made with Python3 (C) @FayasNoushad Copyright permission under MIT License License - https://github.com/Fayas

Fayas Noushad 5 Sep 22, 2021
Reads and prints information from the website MalAPI.io

MalAPIReader Reads and prints information from the website MalAPI.io optional arguments:

Squiblydoo 16 Nov 10, 2022
Checks if Minecraft accounts are available, or taken.

MCNameChecker Checks validity of Minecraft IGN's. Using async to make it even faster. Has rate-limit detections and Proxy support Usage Q. How do I us

Dimitri Demarkus 5 Apr 22, 2022
Aria/qBittorrent Telegram mirror/leech bot

This is a Telegram Bot written in Python for mirroring files on the Internet to your Google Drive or Telegram. Based on python-aria-mirror-bot Feature

28 Dec 25, 2022
A Discord Token Grabber/Stealer But It's in One Line of Coding

Discord-Token-Grabber-But-In-One-Line That's a Discord Token Grabber/Stealer But It's in One Line of Coding! The Name Says All 3

YoSoyAngi 2 Jan 11, 2022
A MassDM selfbot which is working in 2021

mass-dm-discord - Little preview of the Logger and the Spammer Features Logging User IDS Sending DMs to the logged IDs Blacklist IDs (add the ID of th

karma.meme 88 Dec 26, 2022
NFT which pays royalties to its creator each time it is sold.

Chialisp NFT with Perpetual Creator Royalties This is a chialisp NFT in which the creator/minter defines a puzzle hash which will capture a fixed perc

Geoff Walmsley 20 Jun 28, 2022
Scrape Twitter for Tweets

Backers Thank you to all our backers! 🙏 [Become a backer] Sponsors Support this project by becoming a sponsor. Your logo will show up here with a lin

Ahmet Taspinar 2.2k Jan 02, 2023
A fork of discord.py

discord.py A modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python. The Future of discord.py Please read the gi

1 Dec 19, 2021