This commit is contained in:
levina 2021-10-25 15:28:36 +07:00 committed by GitHub
parent 5569aabe42
commit 77144a0dc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
driver/veez.py Normal file
View File

@ -0,0 +1,16 @@
from pytgcalls import PyTgCalls
from pyrogram import Client, filters
from config import SESSION_NAME, API_ID, API_HASH
contact_filter = filters.create(
lambda _, __, message:
(message.from_user and message.from_user.is_contact) or message.outgoing
)
bot = Client(
SESSION_NAME,
API_ID,
API_HASH,
plugins=dict(root="program")
)
call_py = PyTgCalls(bot)