https://github.com/DevsExpo/Xtra-Plugins
A Repo Full Of Xtra Plugins For FridayUB [Pyrogram]
https://github.com/DevsExpo/Xtra-Plugins
plugin pyrogram python telegram userbot xtra-plugins
Last synced: about 1 year ago
JSON representation
A Repo Full Of Xtra Plugins For FridayUB [Pyrogram]
- Host: GitHub
- URL: https://github.com/DevsExpo/Xtra-Plugins
- Owner: DevsExpo
- License: gpl-3.0
- Created: 2021-03-15T04:44:12.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-03-30T15:21:09.000Z (about 4 years ago)
- Last Synced: 2024-11-04T21:37:18.828Z (over 1 year ago)
- Topics: plugin, pyrogram, python, telegram, userbot, xtra-plugins
- Language: Python
- Homepage:
- Size: 703 KB
- Stars: 32
- Watchers: 3
- Forks: 64
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Xtra-Plugins - FridayUB ✨
> A Repo That Contains Many X-Tra Plugins From FridayDevs And Third Parties.
# Example 👊
### Plugins 🔧
```python3
from main_startup.core.decorators import friday_on_cmd
from main_startup.helper_func.basic_helpers import edit_or_reply
@friday_on_cmd(['helloworld'],
cmd_help={
"help": "This is A TEST",
"example": "{ch}helloworld"
})
async def hello_world(client, message):
mg = await edit_or_reply(message, "`Hello World! This Works!`")
```
### Custom Filters 📣
```python3
from main_startup.core.decorators import listen
@listen(filters.mentioned & ~filters.me)
async def mentioned_(client, message):
await message.reply_text("`Hello World! Btw Why Did You Mention Me?`")
```
# Contributing 🎨
* Contributers Are Always Welcome. You Can Contribute To This Project With Your Plugins.
### How To?
* Just Create A Pull Request With Your Plugin And Some Info in Description.
* Please Make Sure Your Plugin Passes The GuideLines.
### GuideLines
* No Stealing. Please Don't Steal Any Plugins.
* If You Have Ported The Plugin, Make Sure To Mention Real Creator Of The Plugin.
* Plugin Should Be Linted Before Creating Pull Request.
* Make Sure Your Plugin Doesn't Already Exists In Repo.
* Please Don't Make Duplicate Pull Requests.
> Thats All, Happy Contributing!