mirror of
https://github.com/anasty17/mirror-leech-telegram-bot.git
synced 2025-01-08 12:07:33 +08:00
6 lines
211 B
Python
6 lines
211 B
Python
|
from pyrogram import Client
|
||
|
|
||
|
API_KEY = int(input("Enter API KEY: "))
|
||
|
API_HASH = input("Enter API HASH: ")
|
||
|
with Client(':memory:', api_id=API_KEY, api_hash=API_HASH) as app:
|
||
|
print(app.export_session_string())
|