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 ban bots at Twitch chats using a text file as a source.

AUTOBAN 🇺🇸 English version Simple script to ban bots at Twitch chats using a text file as a source. How to use Windows Go to releases for further in

And Paiva 5 Feb 06, 2022
Azure free vpn for students only! (Self hosted/No sketchy services/Fast and free)

Azpn-Azure-Free-VPN Azure free vpn for students only! (Self hosted/No sketchy services/Fast and free) This is an alternative secure way of accessing f

Harishankar Kumar 6 Mar 19, 2022
This repository contains modules that extend / modify parts of Odoo ERP

Odoo Custom Addons This repository contains addons that extend / modify parts of Odoo ERP. Addons list account_cancel_permission Only shows the button

Daniel Luque 3 Dec 28, 2022
veez music bot is a telegram music bot project, allow you to play music on voice chat group telegram.

🎶 Veez Music Bot Music bot for playing music on telegram voice chat group. Requirements 📝 FFmpeg NodeJS nodesource.com Python 3.7+ PyTgCalls 🧪 Get

levina 143 Jun 19, 2022
Widevine MPD Content Downloader & Decryptor

Widevine-DL Encrypted MPD Manifest Content Downloader + Decryptor (not a Widevine Key Extractor!) Requirements ffmpeg, yt-dlp, aria2, widevine-l3-decr

Vank0n (SJJeon) 170 Dec 30, 2022
GET-ACQ is a python tool used to gather all companies acquired by a given company domain name.

get-acq 🏢 GET-ACQ is a python tool used to gather all companies acquired by a given company domain name. It is done by calling SecurityTrails API. Us

Milan 7 Dec 19, 2022
AI-El-Yazisini-Tanima - Fotoğraflardaki El Yazını Yapay Zeka İle Otomatik Tanıma Yazılımı

AI-El Yazısını Tanıma Fotoğraflardaki El Yazını Yapay Zeka İle Otomatik Tanıma Yazılımı Amaç : Birden fazla makine öğrenmesi modelini bir arada kullan

Özgür Tokay 3 Mar 02, 2022
Simple integrate of API udemy.com with python

Pyudemy Simple integrate of API udemy.com with python Quick start $ pip install pyudemy or $ python setup.py install Authentication To make any calls

Hudson Brendon 30 Jan 02, 2023
You can share your Chegg account for answers using this bot with your friends without getting your account blocked/flagged

Chegg-Answer-Bot You can share your Chegg account for answers using this bot with your friends without getting your account blocked/flagged Reuirement

Ammey Saini 27 Dec 24, 2022
A Pancakeswap and Uniswap trading client (and bot) with limit orders, marker orders, stop-loss, custom gas strategies, a GUI and much more.

Pancakeswap and Uniswap trading client Adam A A Pancakeswap and Uniswap trading client (and bot) with market orders, limit orders, stop-loss, custom g

570 Mar 09, 2022
Telegram Music Bot for YouTube/SoundCloud/Mixcloud

Telegram Music Bot Telegram Music Bot for YouTube/SoundCloud/Mixcloud This bot downloads and sends the audio when someone send a YouTube/SoundCloud/Mi

Calls Music 76 Jan 02, 2023
Check AWS S3 instances for read/write/delete access

s3sec Test AWS S3 buckets for read/write/delete access This tool was developed to quickly test a list of s3 buckets for public read, write and delete

0xmoot 114 Dec 06, 2022
Tinkoff social pulse api wrapper

Tinkoff social pulse api wrapper

Semenov Artur 9 Dec 20, 2022
Twitch Points Miner for multiple accounts with Discord logging

Twitch Points Miner for multiple accounts with Discord logging Creator of the Twitch Miner -- PLEASE NOTE THIS IS PROBABLY BANNABLE -- Made on python

8 Apr 27, 2022
Python functions for opentargets.org API

What is opy_Targets? Opentargets.org uses GraphQL API to explore it's content via coding. This ensemble of functions aim is to make it easy to use the

1 Jan 10, 2022
Cloudshell-sandbox-reporter - Helper modules and classes for writing to Cloudshell sandbox console

Cloudshell Sandbox Reporter This project provides utility classes for formatting

QualiLab 2 Sep 07, 2022
SongLink Discord Bot - Discord bot to share music links easily

SongLink_Discord_Bot Discord bot to share music links easily. Take a link from y

Edgar Lefevre 4 Feb 18, 2022
A link shortner telegram bot version 2 with advanced features

URL-Shortner-Bot-V2 A link shortner telegram bot version 2 with advanced features Made with Python3 (C) @FayasNoushad Copyright permission under MIT L

Fayas Noushad 18 Dec 29, 2022
Buy early bsc gems with custom gas fee, slippage, amount. Auto approve token after buy

Buy early bsc gems with custom gas fee, slippage, amount. Auto approve token after buy. Sell buyed token with custom gas fee, slippage, amount. And more.

Jesus Crypto 206 May 01, 2022
A GitHub Action that automatically reports your Advent of Code progress in a table in your README

Advent README Stars This action adds and maintains a stars report in your README based on your Advent of Code progress. Example Table 2021 Results Day

Kevin Duff 36 Dec 30, 2022