KS session manager
Project description
Session converter from Telethon session + json to Pyrogram and vice versa
Examples
From telethon to pylogram
import asyncio
import logging
from ks_session_manager.converter import Converter
API_ID = 123456
API_HASH = ""
PHONE_NUMBER = ""
async def main():
converter = await Converter.from_telethon(PHONE_NUMBER, workdir="./telethon_sessions_path")
try:
await converter.export_pylogram_session()
except FileExistsError as e:
# Already exported
logging.warning(e)
client = await converter.get_pylogram_client()
async with client:
me = await client.get_me()
print(me)
if __name__ == '__main__':
logging.basicConfig(level=logging.INFO)
asyncio.run(main())
Telethon sessions revision
import asyncio
import logging
from ks_session_manager.revisors import TelethonRevizor
async def main():
revizor = TelethonRevizor(
threads=20, # How many revisions to run simultaneously
dry_run=False # If True, revisions will not actually connect to Telegram, only logs will be printed
)
await revizor.revise_all_in_path("./telethon_sessions_path", limit=20)
if __name__ == '__main__':
logging.basicConfig(level=logging.INFO)
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ks_session_manager-0.2.8.tar.gz
(46.5 kB
view hashes)
Built Distribution
Close
Hashes for ks_session_manager-0.2.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38714902602540c2188afa27ea98a6b85e3bb2624ce439b32d306d0b30b7c5fe |
|
MD5 | 16220abecd661ed67ce3904f94e91aea |
|
BLAKE2b-256 | 299472b42169f2e9005280660458894d255775669aee483563c91f45afd112f5 |