/pyUltroid

[Ultroid] Base Library - Telethon

Primary LanguagePythonGNU Affero General Public License v3.0AGPL-3.0

py-Ultroid Library

A stable userbot base library, based on Telethon.

PyPI - Version PyPI - Downloads The Ultroid

Installation

pip install py-Ultroid

Documentation

Documentation

Usage

=> Create folders named plugins, addons, assistant and resources.
=> Add your plugins in the plugins folder and others accordingly.
=> Create a .env file with API_ID, API_HASH, SESSION, REDIS_URI & REDIS_PASSWORD as mandatory environment variables. Check .env.sample for more details.
=> Run python -m pyUltroid to start the bot.

Creating plugins

  • To work everywhere
@ultroid_cmd(
    pattern="start",
)   
async def _(e):   
    await eor(e, "Ultroid Started")   
  • To work only in groups
@ultroid_cmd(
    pattern="start",
    groups_only=True,
)   
async def _(e):   
    await eor(e, "Ultroid Started")   
  • Assistant Plugins 👇
@asst_cmd("start")   
async def _(e):   
    await e.reply("Ultroid Started")   

Made with 💕 by @TeamUltroid.

License

Ultroid is licensed under GNU Affero General Public License v3 or later.

License

Credits