Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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!
- Host: GitHub
- URL: https://github.com/TeamUltroid/UltroidAddons
- Owner: TeamUltroid
- License: agpl-3.0
- Created: 2021-02-16T04:40:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T13:07:48.000Z (6 months ago)
- Last Synced: 2024-05-28T12:39:41.825Z (6 months ago)
- Topics: addons, hacktoberfest, telegram, ultroid, userbot
- Language: Python
- Homepage:
- Size: 339 KB
- Stars: 92
- Watchers: 4
- Forks: 301
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).