Abg
ABG || Telegram bot helper || Add-on for Pyrogram || Easy Botting
Install / Use
/learn @AshokShau/AbgREADME
Requirements
- Python 3.8 ᴏʀ higher.
- hydrogram 0.0.1 ᴏʀ higher.
Installing :
Note: If you are using Hydrogram, avoid installing Pyrogram or its forks to prevent potential conflicts.
pip install -U Abg # For Pyrogram or Pyrogram Forks
pip install -U Abg[hydrogram] # For Hydrogram
pip install -U Abg[pyrofork] # for pyrofork
Getting Started
from hydrogram import Client
from hydrogram.types import CallbackQuery, Message
from Abg import * # type: ignore
from hydrogram.helpers import ikb
app = Client(
name='Abg',
api_id=6,
api_hash='eb06d4abfb49dc3eeb1aeb98ae0f581e',
bot_token="TOKEN",
in_memory=True,
)
@app.on_cmd("start")
async def start(self: Client, ctx: Message):
await ctx.reply_text("Hello World", reply_markup=ikb([[("Hello", "hello")]]))
@app.on_cb("hello")
async def hello(_: Client, q: CallbackQuery):
await q.answer("Hello From Abg", show_alert=True)
app.run()
Permissions Check for Admins
from Abg import * # type: ignore # (all patch)
from hydrogram.types import Message
from hydrogram import Client
app = Client("my_account")
@app.on_cmd("del", group_only=True)
@adminsOnly(
self=app,
permissions="can_delete_messages",
is_both=True,
) # also you can use like this @app.adminsOnly(permissions="can_delete_messages", is_both=True)
async def del_msg(self: Client, m: Message):
if m.reply_to_message:
await m.delete()
await self.delete_messages(
chat_id=m.chat.id,
message_ids=m.reply_to_message.id,
)
else:
await m.reply_text(text="Reply to a message to delete it")
app.run()
keyboard's
from Abg.patch.inline import InlineKeyboard, InlineButton
keyboard = InlineKeyboard(row_width=3)
keyboard.add(
InlineButton('1', 'inline_keyboard:1'),
InlineButton('2', 'inline_keyboard:2'),
InlineButton('3', 'inline_keyboard:3'),
InlineButton('4', 'inline_keyboard:4'),
InlineButton('5', 'inline_keyboard:5'),
InlineButton('6', 'inline_keyboard:6'),
InlineButton('7', 'inline_keyboard:7')
)
Related Skills
gh-issues
342.0kFetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
node-connect
342.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
oracle
342.0kBest practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
tmux
342.0kRemote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
