Skip to main content

A tool for parsing and exploring exported Telegram conversations

Project description

Telegram Export Explorer

A tool for parsing and exploring exported Telegram conversations

Like many families, mine uses Telegram to keep in touch. I was worried about losing that family chat history, though. Fortunately, Telegram offers the ability to export your conversations to HTML. You can find instructions at https://telegram.org/blog/export-and-more.

The exported files are a bit hard to navigate and search through. I've created this project to make it easier to browse through our chat history. It finds and parses the "messages.html" files and loads them into a SQLite database. In the future I'd like to build a Flask app to make exploration even easier. Until then, I'm using Datasette to browse our conversations. By using foreign keys in the database, Datasette makes navigation a breeze.

Hopefully other people can find this useful as well. If there are any features you'd like added, or bugs you'd like fixed, please file an issue in the repo. Note: If you include example data in your issue, please make sure to anonymize your example. I don't want to know what you and your family have been up to.

Warning: This project is still under very active development, and the API and database schemas will be changing. For the time being, you cannot rely on semantic versioning to keep you safe. (I'd be on release 100.0.0 by now if it were!)

Installation

pip install telegram_export_explorer

Usage

This package provides both a CLI interface and a Python library that can be used for parsing Telegram exports.

Assuming your exported chats are in ~/Downloads/my-family-chats/, and you want to create a SQLite database called messages.db, you can run:

build-telegram-db ~/Downloads/my-family-chats/ messages.db

If you want to generate the same database from your Python code, you could use something like this:

from telegram_export_explorer import build_db

build_db('~/Downloads/my-family-chats/', 'messages.db')

The generated database can be explored using Datasette:

datasette -o messages.db

Notes

  • The following messages are ignored because they don't include a timestamp
    • Voice chat-related messages
    • Pinned message notifications
    • Group photo changed
    • Group converted messages, for when a conversation is converted from one type to another
  • Invitation notifications are used to populate the members of a group chat, even if the inviter and invitee never post a message in the chat. This lets you know that your Aunt Dorthy was lurking but never posted.
  • Similar to invitation notifications, messages about a user joining a group record the user as a member of the group even if they never post.
  • Telegram messages contain a message id. This can't be trusted to be globally unique. The "messages" table contains a unique "id" field, and the Telegram message id is stored in the "message_id" field. I suspect the combination of "group_chat_id" and "message_id" is unique, but I'm not certain.
  • Message timestamps are stored in ISO-8601 format as UTC
  • If text is present in a message, its original html is stored in the "html_text" field, and the plaintext is stored in the "plain_text" field
  • If a message contains a poll, the question is stored in the "media_poll_question" field, and the entire poll is stored as HTML in "media_poll_html"

To Do

  • Add support for group title changes
  • Add support for forwarded messages
  • Add support for message replies
  • Add support for media file messages
  • Improve argument parsing
  • Create a Flask app to make this easier to navigate

Database Schema

erDiagram
    group_chats {
        integer id PK
        string title
    }

    group_chat_aliases {
        integer group_chat_id FK
        string title
    }
    group_chat_aliases }|--|| group_chats : "group_chat_id = id"

    messages_files {
        integer id PK
        string name
        integer group_chat_id FK
    }
    messages_files }|--|| group_chats : "group_chat_id = id"

    users {
        integer id PK
        string name
    }

    messages {
        integer id PK
        string message_id
        integer group_chat_id FK
        integer messages_file_id FK
        string timestamp
        integer sender_id FK
        string plain_text
        string html_text
        string media_poll_question
        string media_poll_html
    }
    messages }|--|| group_chats : "group_chat_id = id"
    messages }|--|| messages_files : "messages_file_id = id"
    messages }|--|| users : "sender_id = id"

    group_chat_memberships {
        integer group_chat_id FK
        integer user_id FK
    }
    group_chat_memberships }|--|{ group_chats : "group_chat_id = id"
    group_chat_memberships }|--|{ users : "user_id = id"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

telegram_export_explorer-0.0.1.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

telegram_export_explorer-0.0.1-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file telegram_export_explorer-0.0.1.tar.gz.

File metadata

File hashes

Hashes for telegram_export_explorer-0.0.1.tar.gz
Algorithm Hash digest
SHA256 51664a3199aa92095af3664278cbc3335aa82f0221b52b4a858146efeb4244c8
MD5 a99d791289e62ca75706dc28a3bc6351
BLAKE2b-256 f9260affc12ab7e23252fa01af022300daef8e1fee73b44c245d02ad188421f4

See more details on using hashes here.

File details

Details for the file telegram_export_explorer-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for telegram_export_explorer-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fb445d8e6b6994831be0c0372a968e6ab90d5bf373ae2425a3871bc50555080f
MD5 67cf06df63a76452b0ac9865254221af
BLAKE2b-256 6cf0837e9c1c2113255a124d6e6194b396d5d89a47f6656987cd7ef607fc213c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page