forked from kshubham506/vcplayerbot
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgenerateSession.py
More file actions
21 lines (17 loc) · 876 Bytes
/
generateSession.py
File metadata and controls
21 lines (17 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
A small script to generate pyrogram session string
"""
from pyrogram import Client
try:
print("Make sure you have API Client ID and Hash , If not goto my.telegram.org and generate it.\n\n")
API_ID = input("Enter Your API ID - ")
API_HASH = input("Enter Your API HASH - ")
print("\n\nNow it will ask you to enter your phone number(in international format) and then follow the steps")
client = Client(":memory:", api_id=API_ID, api_hash=API_HASH)
with client:
session = client.export_session_string()
print("\nDone your session string will be saved in your saved messages! Don't Share it with anyone else.")
client.send_message(
"me", f"Your session String :\n\n`{session}`\n\nBy @vcplayerbot | [SkTechHub Product](https://t.me/sktechhub)")
except Exception as ex:
print(f"\nSome error occurred : {ex}")