8 lines
264 B
Python
8 lines
264 B
Python
from telethon.sync import TelegramClient
|
|
from telethon.sessions import StringSession
|
|
|
|
from src.core.settings.base import settings
|
|
|
|
with TelegramClient(StringSession(), settings.ACCOUNT.API_ID, settings.ACCOUNT.API_HASH) as client:
|
|
print(client.session.save())
|