Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 671 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 671 Bytes

Pyrogram Clone Client Example

𝗧𝗵𝗶𝘀 𝗶𝘀 𝗷𝘂𝘀𝘁 𝗮𝗻 𝗲𝘅𝗮𝗺𝗽𝗹𝗲 𝗼𝗳 𝗮 𝗰𝗹𝗼𝗻𝗲 𝗰𝗹𝗶𝗲𝗻𝘁 𝗶𝗻 𝗣𝘆𝗿𝗼𝗴𝗿𝗮𝗺.

Commands

- `/uclone <Session>`: For User Bots Cloning
- `/bclone <Token>`: For Bots Cloning

Follow this command format to use these commands in cloned clients.

@Client.on_message(filters.command(["command"]) & filters.me)
async def example_cmd(client: Client, message: Message):
    # Your command logic here

𝗡𝗼𝘁𝗲: 𝗧𝗵𝗶𝘀 𝗺𝘂𝘀𝘁 𝗯𝗲 𝘂𝘀𝗲𝗱 𝘁𝗼 𝘄𝗼𝗿𝗸.