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
Cloud-native, data onboarding architecture for the Google Cloud Public Datasets program

Public Datasets Pipelines Cloud-native, data pipeline architecture for onboarding datasets to the Google Cloud Public Datasets Program. Overview Requi

Google Cloud Platform 109 Dec 30, 2022
Asad Alexa VC Bot Is A Telegram Bot Project That's Allow You To Play Audio And Video Music On Telegram Voice Chat Group.

Asad Alexa VC Bot Is A Telegram Bot Project That's Allow You To Play Audio And Video Music On Telegram Voice Chat Group.

Dr Asad Ali 6 Jun 20, 2022
Install and manage Proton-GE and Luxtorpeda for Steam and Wine-GE for Lutris with this graphical user interface. Based on AUNaseef's ProtonUp, made with Python 3 and Qt 6.

ProtonUp-Qt Qt-based graphical user interface to install and manage Proton-GE installations for Steam and Wine-GE installations for Lutris. Based on A

638 Jan 02, 2023
Instagram-Reports is a tool made to ban any scam or bad person

ABOUT TOOL : Instagram-Reports is a tool made to ban any scam or bad person. Installation : sudo apt-get update -y sudo apt-get upgrade -y apt insta

Evan Al Mahmud Irfan ථ 1 Dec 20, 2021
Disqus API bindings for Python

disqus-python Let's start with installing the API: pip install disqus-python Use the API by instantiating it, and then calling the method through dott

DISQUS 163 Oct 14, 2022
Python Client for Instagram API

This project is not actively maintained. Proceed at your own risk! python-instagram A Python 2/3 client for the Instagram REST and Search APIs Install

Facebook Archive 2.9k Jan 01, 2023
Simple, yet effective moderator bot for telegram. With reports, logs, profanity filter and more :3

👹 Samurai Telegram Bot Simple, yet effective moderator bot for telegram. With reports, logs, profanity filter and more :3 Description Personal bot, m

Abraham Tugalov 106 Dec 13, 2022
Linkvertise-Bypass - Bypass Linkvertise advertisement

Linkvertise-Bypass Bypass Linkvertise advertisement 📕 instructions Copy And Pas

Flex Tools 4 Jun 10, 2022
Trading bot that uses Elon Musk`s tweets to know when to buy cryptocurrency.

Elonbot Trading bot that uses Elon Musk`s tweets to know when to buy cryptocurrency. Here is how it works: Subscribes to someone's (elonmusk?) tweets

153 Dec 23, 2022
RaidBot for WhatsApp

WhatsappRaid Скрипт подготовлен специально для сайта https://pysoc.ru и Ютуб канала PyPro Русский Простой спам бот для WhatsApp на Python3. Работает с

2 May 12, 2022
A basic API to scrape Craigslist.

CLAPI A basic API to scrape Craigslist. Most useful for viewing posts across a broad geographic area or for viewing posts within a specific timeframe.

45 Jan 05, 2023
A community made discord bot coded in Python and running on AWS.

Pogbot Project Open Group Discord This is an open source community ran project. Join the discord for more information on how to participate. Coded in

Project Open Group 2 Jul 27, 2022
A simple telegram bot to forward files from one channel to other.

Forward_2.0 Bot to forward messages from one channel to other without admin permission in source channel. Can be used for both private and Public chan

SUBIN 56 Dec 29, 2022
A Discord token stealer app written in Python 3.

Discord Token Stealer A Discord token stealer app written in Python 3. This version of the grabber only supports Windows. Features No local caching Tr

cankat 45 Jan 03, 2023
This is my Discord-Bot named priamoryki-bot based on python.

This is my Discord-Bot named priamoryki-bot based on python. It's a public repository without private information, so you need to correct some code for everything to be working.

priamoryki 2 Dec 14, 2022
A collection of tools for managing Jira issues for the RHODS project

RHODS-Jira-Tools A collection of tools for managing Jira issues for the RHODS project move_to_qa.py This script handles transitioning a given Jira iss

Alex Corvin 1 Sep 20, 2022
RDMAss - A Python Discord bot creating an interaction with RDM API

RDMAss A Python Discord bot creating an interaction with RDM API. Features Assig

5 Sep 21, 2022
Tools ini hanya bisa digunakan untuk menyerang website atau http/s

☢️ Tawkun DoS ☢️ Tools ini hanya bisa digunakan untuk menyerang website atau http/s FITUR: [ ☯️ ] Proxy Mode [ 🔥 ] SOCKS Mode | Kadang Eror [ ☢️ ] Ht

Bandhitawkunthi 9 Jul 19, 2022
🔮 A usefull set of scripts to dig into your Discord data package.

Discord DataExtractor 🔮 Discord DataExtractor is a set of scripts that allows you to dig into your Discord Data package. Repository guide ☕ Coffee_Ga

3 Dec 29, 2021
Simple bot to receive feedback,same as livegram bot but with more features & full control over bot

Kontak Simple bot to receive feedback,same as livegram bot but with more features & full control over bot Deploy to VPS

Mahin Ahmed 2 Dec 16, 2021