8 lines
192 B
Python
8 lines
192 B
Python
from pyrogram import Client
|
|
|
|
api_id = int(input("API_ID: "))
|
|
api_hash = input("API_HASH: ")
|
|
|
|
with Client("user", api_id=api_id, api_hash=api_hash) as app:
|
|
print("Session 生成成功!")
|