File size: 505 Bytes
67e2e69
1935d42
2096c89
 
1c1e321
 
2096c89
1c1e321
a3a6707
1c1e321
1935d42
 
 
 
 
2096c89
 
1935d42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from pyrogram import Client
from telethon.sync import TelegramClient
from telethon.sessions import StringSession

import os


TELEGRAM_SESSION = os.environ.get("TELEGRAM_SESSION")
TELEGRAM_SESSION_PYROGRAM = os.environ.get("TELEGRAM_SESSION_PYROGRAM")

bot: TelegramClient = TelegramClient(
    StringSession(TELEGRAM_SESSION),
    api_id=870972,
    api_hash="ce2efaca02dfcd110941be6025e9ac0d",
)


# bot: Client = Client("mboneabot", session_string=TELEGRAM_SESSION_PYROGRAM, workers=5 ,workdir="/srv")