Skip to content

Instantly share code, notes, and snippets.

View vyshnavdas's full-sized avatar
:octocat:
Learning

Vyshnav Das vyshnavdas

:octocat:
Learning
View GitHub Profile
@nuhmanpk
nuhmanpk / broadcast.py
Last active March 17, 2022 13:44
Broadcasting in Bots Pyrogram
from userbase import present_in_userbase, add_to_userbase, get_users # userbase.py is Attached below
import time
@bughunter0.on_message(filters.private & filters.command('broadcast') & filters.user(OWNER) & filters.reply)
async def broadcast(client: bughunter0, message: Message):
broadcast_msg = message.reply_to_message
txt = await message.reply(text = 'Staring....')
user_ids = await get_users()
success = 0
deleted = 0