Relative Content

Tag Archive for async-awaitpython-asynciotelegrampyrogram

member scraper with pyrogram and asyncio

async def calistir(): app = Client(path + “\users\” + valmsj.get()) for uye in data: try: uye = uye[“id”] if run: await app.add_chat_members(chat_id=kanal_id[k_id], user_ids=int(uye)) ekran.after(0, printt, f”{uye} – Eklendi”) await asyncio.sleep(int(yaz.get())) else: await app.stop() break except KeyboardInterrupt:pass except PeerIdInvalid as e: print(e) ekran.after(0, printt, f”{uye} – Kullanıcı Yok”) await asyncio.sleep(int(yaz.get())) async with app: await calistir() I […]