Using client separately in python pyrogram

319 Views Asked by At

I have got this problem with pyrogram

app = Client("session",
        api_id,
        api_hash,
        bot_token)

How can i send message via bot not userbot ?

1

There are 1 best solutions below

0
On

for using a bot and a userbot separately in same time you should do this :

@bot.on_message ...
your code

@app.on_message 
your code 
 
bot.start()
app.run()

or you can use 2 threads with using threading mudule.