PyPI package name: opentele-ng.
This GitHub repository is called opentele for historical reasons; the package
it publishes is opentele-ng. Same project, two names.
pip install opentele-ngThe import path stays opentele, so existing code keeps working unchanged:
from opentele.td import TDesktopWhat this fork changes: opentele-ng is a maintained fork of
thedemons/opentele that runs on
Python 3.10 – 3.14 and drops the PyQt5/PyQt6 runtime dependency entirely,
parsing tdata in pure Python. Upstream last released to PyPI in January 2022
and last committed in July 2024; it breaks on Python 3.13+ and pulls ~50 MB of
Qt wheels just to read binary streams.
Upstream thedemons/opentele last shipped to PyPI in January 2022 (1.15.1) and
last committed in July 2024. By mid-2026 it stopped
working on modern Python (3.13+ broke the metaclass), missed several lskType
keys added to tdata in 2024-2025 (silently dropping data on read), shipped
stale device fingerprints, and required ~50 MB of PyQt5 wheels just to parse
binary streams.
opentele-ng is a clean-room modernization done over 11 release phases with
3-AI code review (OpenAI Codex, Cursor, Google Gemini) at every milestone.
None of the 132 community forks of upstream attempted the pure-Python rewrite —
this one ships it.
| Phase | What |
|---|---|
| Phase 5 | Pure-Python QDataStream / QByteArray / QFile / QBuffer — byte-identical to PyQt6 (17 byte-for-byte equivalence tests + 247 integration tests). PyQt6 removed from runtime, install is now telethon + tgcrypto-pyrofork only. |
| Phase 1.5 | Wire-format fixes for lskWebviewTokens (QByteArray, not uint64), lskBotStorages (Dict[PeerId, FileKey] map, not single key), lskPrefs 0x1E (missed by every upstream fork — verified against TDesktop C++ source). |
| Phase 2 | 2026 device fingerprints: iPhone 17 / Air, M5 / M5 Pro / M5 Max Macs, Galaxy S25 / S26 series, Pixel 10 / 10 Pro / 10 Pro XL, Android SDK 33-37 (Android 13 → 17 beta), macOS 26 Tahoe, iOS 26. Deterministic _generate_tdesktop_app_version(unique_id) for stable fingerprints across runs. |
| Phase 3 | kMaxAccounts = 6 (was 3, matches TDesktop's kPremiumMaxAccounts). **kwargs forward in FromTelethon → QRLoginToNewClient for proxy/connection/timeout. Nuitka-compatible sharemethod. Ruff lint replaces broken upstream pylint workflow. |
| Phase 4 | 168 → 247 tests: QDataStream golden bytes, hypothesis property-based fuzzing (~1000 cases/run), real TDesktop.SaveTData → load roundtrip through MapData.prepareToWrite(). |
| Phase 1.0.3 | Security: 6 DoS guards on attacker-controlled count fields in MapData.read / _setMtpAuthorization.readKeys / account-list. Pre-loop cap by bytesAvailable() // pair_size + hard regression tests (no fail-open xfail). |
| Phase 6 | Pyrogram bridge (ToPyrogram() / FromPyrogram(), optional extra) — the "incoming feature" upstream never shipped; sends lang_pack, which Telethon cannot. MTProto-layer-aware version picking: the advertised Telegram Desktop version is drawn from builds that speak the same layer Telethon announces on the wire. 2026-08 fingerprints (TDesktop 7.0.8 table, Android 12.9.0, iOS 12.9.2, Chrome 150 UA). |
pip install opentele-ngfrom opentele.td import TDesktop
from opentele.tl import TelegramClient
from opentele.api import API, CreateNewSessionRuntime deps: telethon>=1.36,<2, tgcrypto-pyrofork>=1.2.7. No Qt.
Optional Pyrogram bridge (ToPyrogram() / FromPyrogram()):
pip install "opentele-ng[pyrogram]"Nothing Pyrogram-related is imported unless you call those methods, so the base
install stays two dependencies. The extra pulls pyrofork; vanilla pyrogram
and kurigram provide the same pyrogram import name and work too. See
docs/examples/pyrogram.md.
System libraries (libgl1, libegl1, libxkbcommon-x11-0, etc.) are not
required — you can deploy on Alpine, distroless, serverless, or any minimal
Linux container.
Multi-arch image at ghcr.io/stufently/opentele-ng (linux/amd64 + linux/arm64), ~140 MB, runs as non-root, opentele-ng is the entrypoint:
docker run --rm \
-v "/path/to/Telegram/tdata:/tdata:ro" \
ghcr.io/stufently/opentele-ng:latest info /tdataSee docs/examples/docker.md for batch / convert / air-gapped / Sigstore verification.
# Read-only inspection of a tdata folder
opentele-ng info /path/to/Telegram/tdata
# Convert tdata → Telethon .session file
opentele-ng convert /path/to/Telegram/tdata --output ./me.sessionSee docs/examples/cli-quick-start.md for flags and exit codes.
import asyncio
from opentele.api import API, CreateNewSession
from opentele.td import TDesktop
from opentele.tl import TelegramClient
async def main() -> None:
# 1. Load tdata produced by Telegram Desktop.
tdata_path = r"C:\Users\<user>\AppData\Roaming\Telegram Desktop\tdata"
tdesk = TDesktop(tdata_path)
# 2. Pick an official API (TelegramIOS / TelegramAndroid / TelegramDesktop / TelegramMacOS).
# .Generate() builds a deterministic-or-random device fingerprint.
api = API.TelegramIOS.Generate(unique_id="my-host")
# 3. Convert TDesktop session → Telethon. CreateNewSession links a new
# device via QR code on the existing TDesktop session (no phone OTP).
client: TelegramClient = await tdesk.ToTelethon(
"new_session.session", CreateNewSession, api
)
async with client:
await client.PrintSessions()
asyncio.run(main())docs/examples/qr-login.md— QR-code login flow with 2FA +**kwargsproxy forwarding.docs/examples/convert-tdata-to-telethon.mddocs/examples/convert-telethon-to-tdata.mddocs/examples/using-official-apis.md
| Env var | Default | Effect |
|---|---|---|
OPENTELE_EXTEND_STRICT |
1 |
@extend_class raises TypeError on attribute conflicts. Set to 0 to fall back to RuntimeWarning (legacy upstream behaviour). |
OPENTELE_REAL_TDATA_PATH |
unset | When set to an absolute path of a production tdata folder, enables the opt-in real-data smoke test in tests/integration/test_real_tdata_smoke.py. CI never sets it. |
OPENTELE_LENIENT_UNKNOWN_LSK |
unset (= strict) | Since 1.3.0. By default an unknown lskType in encrypted MapData raises TDataReadMapDataFailed (the unknown key's payload size is unknown, so reading on would desync the stream). Set to 1 to log a warning and stop parsing instead — you'll get a partial but consistent map. |
- Latest:
v1.4.0(2026-07-29). PyPI:opentele-ng/ Docker:ghcr.io/stufently/opentele-ng(Python 3.14). Production-ready. 1.4.0 adds the Pyrogram bridge (ToPyrogram()/FromPyrogram(), optionalopentele-ng[pyrogram]extra — the feature upstream listed as "incoming" for four years) and makes the advertised client version MTProto-layer-aware:TELEGRAM_DESKTOP_LAYERSmaps each Telegram Desktop release to the layer read from itsapi.tl, and the version on the wire is picked to match the layer the installed Telethon (or Pyrogram) actually announces. Device/app fingerprints refreshed to July 2026. 1.3.2 fixes credential plumbing inTelegramClient.__init__— the plain Telethon-style positional callTelegramClient(session, api_id, api_hash)silently setapi_hashto theapi_id, so login RPCs failed withApiIdInvalidError(FromBundlehit the same bug) — and makes the coverage gate measure the whole package instead of ~55% of it. 1.3.1 addedTelegramClient.FromBundle(authorized client from a JSON bundle + session file) and fully automatic releases (version bump onmain→ tag → PyPI + GHCR viaautotag.yml). 1.3.0 closed 5 architectural known-issues from 1.2.2:kPerformanceModedefault flipped toFalseso new tdata is actually encrypted (was using a hard-codedlocalKey), UTF-8 passcodes now work (was ASCII-only → crash), unknownlskTypekeys fail closed (was desyncing the stream),StorageAccountalways reads/writes MTP config (was data-loss class in perf mode), and the Docker image now installs from a hash-locked deps file for reproducible builds. - 359 tests on Python 3.10 / 3.11 / 3.12 / 3.13 / 3.14 (Docker matrix + GitHub
Actions matrix × Ubuntu / macOS / Windows). 356 pass on 3.13 / 3.14 and 355 on
3.10 – 3.12 — one test is gated on a dunder that only exists from 3.13. The
other 3 are opt-in and skip unless
OPENTELE_REAL_TDATA_PATHpoints at a real tdata folder. - Coverage: 81.3% of the whole
opentelepackage, CI gate 78%. Since 1.3.2 that is measured over all ~3165 statements — the pre-1.3.2 "84%" was computed over 1745, because.coveragercexcluded everyraise/except/passline and whole classes markednocov. Core wire-format modules:td/storage.py91%,td/qdatastream.py89%,td/account.py88%,td/mtp.py87%. - tdata compatibility: verified against Telegram Desktop 7.0.9, with no
version check in the way.
Storage.ReadFilevalidates theTDF$magic and the MD5 trailer, then reads the header's version field as information only (it becomesTDesktop.AppVersion); it is never compared against a floor or a ceiling, so nothing rejects a folder for being too new. Compatibility is decided by content instead. ThelskTypeenum intd/configs.pymatches TDesktop's own (storage_account.cpp) entry for entry,0x00–0x1E; the account-map reader dispatcheslskDraft(0x01) throughlskPrefs(0x1E), and an unrecognised key fails closed with a clear exception rather than desyncing the stream (see 1.3.0).lskUserMap(0x00) identifies the map file itself and is not written as a block by either side. Two naming and gating details worth knowing:0x11is still calledlskTrustedBotshere where TDesktop renamed itlskTrustedPeers(same ID), and the one hard equality in the MTProto path isMTP.Config.kVersion == 1—DcOptionsaccepts whatever positive version it finds on read and only writeskVersion = 2. Checked against tdesktopdevat the v7.0.9 release (2026-08-06). A later release could still require work here if it adds a block type, changes the layout of an existing one, or bumpsMTP.Config. - See CHANGELOG.md for the full per-release breakdown.
opentele-ng accepts attacker-influenced binary blobs (tdata files from the
filesystem), and version 1.0.3 added bounded-count guards on every loop that
reads a count field from a decrypted payload. If you find a malformed tdata
input that bypasses these guards or causes the library to read unbounded
memory or CPU, please report it privately: see SECURITY.md.
- Import name unchanged (
import opentele) — drop-in for code that already usesthedemons/opentele. - PyPI dist name is
opentele-ngto avoid collision with the original package. kMaxAccountsis6(Telegram's premium limit), not 3.@extend_classraises on attribute conflicts by default; setOPENTELE_EXTEND_STRICT=0for the old warning-only behaviour._settingsKeyisFileKey(0)by default; the upstreamFileKey(1851671142505648812)magic was removed in 1.0.1 (proper AES block padding added toStorage.PrepareEncryptedinstead).PyQt6is NOT a runtime dependency —opentele.td.qdatastreamprovides byte-compatible pure-Python replacements forQDataStream,QByteArray,QBuffer,QFile,QDir,QSysInfo.
opentele-ng keeps the upstream's ability to use official APIs through
the API class (API.TelegramDesktop, API.TelegramAndroid,
API.TelegramAndroidX, API.TelegramIOS, API.TelegramMacOS,
API.TelegramWeb_K, API.TelegramWeb_Z).
Per Telegram Terms of Service:
All accounts that sign up or log in using unofficial Telegram API clients are automatically put under observation to avoid violations of the Terms of Service.
Using an official API id/hash + lang_pack="tdesktop" (or ios, android,
etc.) makes the session indistinguishable from the corresponding official
client, which reduces spam-detection risk.
See ACKNOWLEDGMENTS.md.
MIT (same as upstream). See LICENSE.
