Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/TeamUltroid/UltroidAddons

Plugins repository. Read the readme for more!
https://github.com/TeamUltroid/UltroidAddons

addons hacktoberfest telegram ultroid userbot

Last synced: 5 days ago
JSON representation

Plugins repository. Read the readme for more!

Awesome Lists containing this project

README

        

#


# UltroidAddons
Plugins repository for [@TheUltroid](https://github.com/TeamUltroid/Ultroid).

# Contributing
If you want to contribute to this repository (adding your plugins/porting from other bots), use the format given below and create a pull request.
⚠️ First check whether the stuff you push works. Also, if the pull request doesn't follow the below format, it will be closed without prior notice.

```python
# Credits @username (creator of plugin and who ported)

# Ported from (if ported else skip)

# Ported for Ultroid < https://github.com/TeamUltroid/Ultroid >
```

Kindly do not **steal** others works without credits.

# Example Plugin
Required Import are Automatically Done.

This Example Works Everywhere. (e.g. Groups, Personal Chats ...)
```python
@ultroid_cmd(pattern="hoi")
async def hello_world_example(event):
# As telethon is an asyncio based lib, you will have to use `async`/`await` Syntax.
await event.reply("Hello **World**.")
```

This Example Works Only In Groups.
```python
@ultroid_cmd(pattern="hoi", groups_only=True,)
async def hello_world_example(event):
await event.reply("Hello **World**.")
```

If Your plugin need any additional requirements, it can be added to addons.txt


> For More Information See [The Pypi Page](https://pypi.org/project/py-Ultroid).

> Made with 💕 by [@TeamUltroid](https://t.me/TeamUltroid).