Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theabdosabbagh/dankcord
The first python library for Dank Memer selfbots. Incredibly fast, secure, strong, and reliable.
https://github.com/theabdosabbagh/dankcord
dank dank-memer dankmemer
Last synced: 19 days ago
JSON representation
The first python library for Dank Memer selfbots. Incredibly fast, secure, strong, and reliable.
- Host: GitHub
- URL: https://github.com/theabdosabbagh/dankcord
- Owner: theAbdoSabbagh
- License: mit
- Created: 2022-12-01T06:59:18.000Z (about 2 years ago)
- Default Branch: stable
- Last Pushed: 2023-01-08T18:07:49.000Z (about 2 years ago)
- Last Synced: 2024-12-16T02:08:26.467Z (26 days ago)
- Topics: dank, dank-memer, dankmemer
- Language: Python
- Homepage: https://pypi.org/project/DankCord/
- Size: 187 KB
- Stars: 16
- Watchers: 1
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
![DankCord](https://raw.githubusercontent.com/Sxvxgee/DankCord/master/assets/DankCord.png)
[![Discord Server](https://discord.com/api/guilds/1046759026807013376/embed.png)](https://discord.gg/XaQ6FAP3sm/)
[![PyPi version](https://img.shields.io/pypi/v/DankCord.svg)](https://pypi.org/user/Sxvxge/)
[![PyPI download month](https://img.shields.io/pypi/dm/DankCord.svg)](https://pypi.org/user/Sxvxge/)# DankCord - The first python library for Dank Memer selfbots!
My vision for this library is to be able to help people create their very own selfbots related to Dank Memer, and even create autofarms based on this library, instead of having to use other libraries such as `discord.py-self` as others can be slow, use lots of memory, and the user would have to code many things on their own from scratch.# Installing
```sh
# linux/macOS
python3 -m pip install -U DankCord# windows
pip install -U DankCord
```
To install the Github version, do the following:
```sh
$ git clone https://github.com/Sxvxgee/DankCord
$ cd DankCord
$ python3 -m pip install -U .
```
# Quick Example
```py
from typing import Optionalfrom DankCord import Client, Config
from DankCord.Objects import Message
from pyloggor import pyloggorbot = Client(
Config("TOKEN", 00000000000), # Second argument is channel ID, must be int
pyloggor(
show_file=False,
show_topic=False,
show_symbol=False,
show_time=False,
title_level=True,
level_adjustment_space=9,
),
)
message: Optional[Message] = bot.core.fish()
message: Optional[Message] = bot.core.beg()
message: Optional[Message] = bot.core.hunt()
message: Optional[Message] = bot.run_command(name = "settings")
message: Optional[Message] = bot.run_sub_command(name = "advancements", sub_name = "prestige")
```# Links
- [Discord](https://discord.gg/XaQ6FAP3sm)
- [Trello board](https://trello.com/b/0M9SDJH6/dankcord)
- Documentation: coming soon.# Special thanks
- [ThePrivatePanda](https://github.com/ThePrivatePanda): An ex-maintainer of the project.
- All our other contributors, DankCord wouldn't have been what it is today without them.