Cross-library session conversion utilities
npm install @mtcute/convertš API Reference
This package can be used to convert other libraries sessions to/from mtcute sessions
Currently only the libraries that support exporting sessions to strings are supported, namely:
> Telethon v2 seems to have removed the ability to export sessions,
> so it's currently not supported
``ts
import { convertFromTelethonSession } from '@mtcute/convert'
const client = new TelegramClient({ ... })
await client.importSession(convertFromTelethonSession("..."))
`
`ts
import { convertFromPyrogramSession } from '@mtcute/convert'
const client = new TelegramClient({ ... })
await client.importSession(convertFromPyrogramSession("..."))
`
`ts
import { convertFromGramjsSession } from '@mtcute/convert'
const client = new TelegramClient({ ... })
await client.importSession(convertFromGramjsSession("..."))
`
`ts
import { convertFromMtkrutoSession } from '@mtcute/convert'
const client = new TelegramClient({ ... })
await client.importSession(convertFromMtkrutoSession("..."))
``