Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Dragon-Userbot/Dragon-Userbot
Userbot for telegram with easiest installation
https://github.com/Dragon-Userbot/Dragon-Userbot
bot dragon-userbot music-player-bot pyrogram pytgcalls python python3 self-bot-telegram telegram telegram-api telegram-bot telegram-userbot telegram-voice-chat userbot userbot-telegram voice-chat voice-chats
Last synced: 3 days ago
JSON representation
Userbot for telegram with easiest installation
- Host: GitHub
- URL: https://github.com/Dragon-Userbot/Dragon-Userbot
- Owner: Dragon-Userbot
- License: gpl-3.0
- Created: 2020-06-16T11:34:20.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-18T16:53:14.000Z (about 1 year ago)
- Last Synced: 2024-08-01T19:56:26.864Z (3 months ago)
- Topics: bot, dragon-userbot, music-player-bot, pyrogram, pytgcalls, python, python3, self-bot-telegram, telegram, telegram-api, telegram-bot, telegram-userbot, telegram-voice-chat, userbot, userbot-telegram, voice-chat, voice-chats
- Language: Python
- Homepage:
- Size: 1.66 MB
- Stars: 292
- Watchers: 11
- Forks: 132
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - Dragon-Userbot/Dragon-Userbot - Userbot for telegram with easiest installation (Python)
- awesome-telegram - Dragon Userbot
- awesome-telegram - Dragon Userbot
README
Dragon-Userbot
Telegram userbot with the easiest installation
Installation
•
Releases
•
Community
•
Custom modules
About
Dragon-Userbot is a Telegram userbot (in case you didn't know, selfbot/userbot are used to automate user accounts).
So how does it work? It works in a very simple way, using the pyrogram library, a python script connects to your account (creating a new session) and catches your commands.Using selfbot/userbot is against Telegram's Terms of Service, and you may get banned for using it if you're not careful.
The developers are not responsible for any consequences you may encounter when using Dragon-Userbot. We are also not
responsible for any damage to chat rooms caused by using this userbot.Installation
lavHost
Linux, Termux (use f-droid version) and Windows [only wsl]
apt-get upgrade -y && apt-get update && apt install git && git clone https://github.com/Dragon-Userbot/Dragon-Userbot.git && cd Dragon-Userbot/ && bash install.sh
macOS [brew]
brew install git && git clone https://github.com/Dragon-Userbot/Dragon-Userbot.git && cd Dragon-Userbot && brew install [email protected] && pip3 install --upgrade pip && pip3 install wheel && brew install ffmpeg && pip3 install -r requirements.txt && pip3 install -U 'pytgcalls[pyrogram]' && echo Enter your db_url: && read uservar && python3 install.py $uservar
Next enter mongo_db_url (How to get Mongodb_URL and login in telegram)
.help
(in telegram chat)Subsequent launch:
cd Dragon-Userbot/
python3 main.py
Custom modules
To add your module to the bot, create a pull request in the custom_modules repository
```python3
from pyrogram import Client, filters
from pyrogram.types import Messagefrom utils.misc import modules_help, prefix
# if your module has packages from PyPi
# from utils.scripts import import_library
# example_1 = import_library("example_1")
# example_2 = import_library("example_2")# import_library() will automatically install required library
# if it isn't installed@Client.on_message(filters.command("example_edit", prefix) & filters.me)
async def example_edit(client: Client, message: Message):
await message.edit("This is an example module
")@Client.on_message(filters.command("example_send", prefix) & filters.me)
async def example_send(client: Client, message: Message):
await client.send_message(message.chat.id, "This is an example module")# This adds instructions for your module
modules_help["example"] = {
"example_send": "example send",
"example_edit": "example edit",
}# modules_help["example"] = { "example_send [text]": "example send" }
# | | | |
# | | | └─ command description
# module_name command_name └─ optional command arguments
# (only snake_case) (only snake_case too)
```Groups and support
Channel with latest news on the official telegram [ru/en]
Channel with custom modules [ru/en]
Discussion in the official telegram chat [ru]
Discussion in the official telegram chat [en]
Credits