File size: 228 Bytes
6343730
 
1c1e321
 
 
 
6343730
 
1c1e321
1
2
3
4
5
6
7
8
9
10
from telethon.sync import TelegramClient
from telethon.sessions import StringSession
import os

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

bot: TelegramClient = TelegramClient(
    StringSession(TELEGRAM_SESSION),
)