项目作者: Dragon-Userbot

项目描述 :
Userbot for telegram with easiest installation
高级语言: Python
项目地址: git://github.com/Dragon-Userbot/Dragon-Userbot.git
创建时间: 2020-06-16T11:34:20Z
项目社区:https://github.com/Dragon-Userbot/Dragon-Userbot

开源协议:GNU General Public License v3.0

下载



Dragon-Userbot



Dragon-Userbot


Telegram userbot with the easiest installation



Installation



Releases



Community



Custom modules



Code style
GitHub last commit
GitHub Repo stars

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]



  1. 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]


  1. brew install git && git clone https://github.com/Dragon-Userbot/Dragon-Userbot.git && cd Dragon-Userbot && brew install python@3.8 && 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)



  1. .help (in telegram chat)


Subsequent launch:

  1. cd Dragon-Userbot/


  1. python3 main.py



Custom modules

To add your module to the bot, create a pull request in the custom_modules repository

  1. from pyrogram import Client, filters
  2. from pyrogram.types import Message
  3. from utils.misc import modules_help, prefix
  4. # if your module has packages from PyPi
  5. # from utils.scripts import import_library
  6. # example_1 = import_library("example_1")
  7. # example_2 = import_library("example_2")
  8. # import_library() will automatically install required library
  9. # if it isn't installed
  10. @Client.on_message(filters.command("example_edit", prefix) & filters.me)
  11. async def example_edit(client: Client, message: Message):
  12. await message.edit("<code>This is an example module</code>")
  13. @Client.on_message(filters.command("example_send", prefix) & filters.me)
  14. async def example_send(client: Client, message: Message):
  15. await client.send_message(message.chat.id, "<b>This is an example module</b>")
  16. # This adds instructions for your module
  17. modules_help["example"] = {
  18. "example_send": "example send",
  19. "example_edit": "example edit",
  20. }
  21. # modules_help["example"] = { "example_send [text]": "example send" }
  22. # | | | |
  23. # | | | └─ command description
  24. # module_name command_name └─ optional command arguments
  25. # (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

Written on Pyrogram❤️ and pytgcalls❤️