video-stream/driver/veez.py

13 lines
222 B
Python
Raw Normal View History

2021-10-26 06:37:52 +00:00
from pyrogram import Client
2021-10-25 08:28:36 +00:00
from pytgcalls import PyTgCalls
from config import SESSION_NAME, API_ID, API_HASH
bot = Client(
SESSION_NAME,
API_ID,
API_HASH,
plugins=dict(root="program")
)
2021-10-26 06:37:52 +00:00
2021-10-25 08:28:36 +00:00
call_py = PyTgCalls(bot)