{"id":39023651,"url":"https://github.com/krishukr/telegram-cjk-search-bot","last_synced_at":"2026-01-17T17:30:18.464Z","repository":{"id":182736666,"uuid":"669010111","full_name":"krishukr/telegram-cjk-search-bot","owner":"krishukr","description":"Search CJK messages of supergroups in Telegram","archived":false,"fork":false,"pushed_at":"2025-06-01T07:37:21.000Z","size":275,"stargazers_count":8,"open_issues_count":11,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-01T16:05:29.126Z","etag":null,"topics":["cjk","cjk-search","meilisearch","rust","telegram-bot","teloxide"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/krishukr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-07-21T06:12:37.000Z","updated_at":"2025-02-18T05:18:58.000Z","dependencies_parsed_at":"2024-01-01T03:24:14.465Z","dependency_job_id":"ae20c729-307c-40a8-9243-198ffd5a4961","html_url":"https://github.com/krishukr/telegram-cjk-search-bot","commit_stats":null,"previous_names":["krishukr/telegram-cjk-saerch-bot","krishukr/telegram-cjk-search-bot"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/krishukr/telegram-cjk-search-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishukr%2Ftelegram-cjk-search-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishukr%2Ftelegram-cjk-search-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishukr%2Ftelegram-cjk-search-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishukr%2Ftelegram-cjk-search-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/krishukr","download_url":"https://codeload.github.com/krishukr/telegram-cjk-search-bot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishukr%2Ftelegram-cjk-search-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28512906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cjk","cjk-search","meilisearch","rust","telegram-bot","teloxide"],"created_at":"2026-01-17T17:30:17.513Z","updated_at":"2026-01-17T17:30:18.368Z","avatar_url":"https://github.com/krishukr.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eTelegram-CJK-Search-Bot\u003c/h1\u003e\n\nA simple message-searching bot that supports CJK (Chinese, Japanese, Korean) languages.\n\u003c/div\u003e\n\n### Features\n\n- Search messages sorted by relevance.\n- Edited messages will be updated in the database as well.\n- Users can only search messages in chats they have already joined.\n\n### Quick Start\n\n1. Create a bot using [@BotFather](https://t.me/botfather) and save the token for later use.\n1. Edit the bot to turn ON inline mode and turn OFF privacy mode.\n1. Find a place to store all the data.\n1. `wget https://raw.githubusercontent.com/krishukr/telegram-cjk-search-bot/master/{docker-compose.yml,.env}`\n1. Edit the `.env` file to enter `TELOXIDE_TOKEN` with your token obtained from BotFather.\n1. `docker compose up -d`\n1. Add the bot to a chat of which you are the owner or admin. **Note: Supergroup only.**\n1. Send the command `/start@your_bot` to the bot.\n\nAnd you're all set! All **future** messages in this chat can be searched by sending your bot inline queries, like so: `@your_bot filter`.\n\nWant to index historical messages as well? Just follow these steps:\n\n1. Export the chat messages in JSON format.\n1. Place the `result.json` file in the `./history` directory.\n1. `docker compose run --rm bot /app/import`\n\nSince there are no documents for exported messages, unexpected issues may arise during this process.\n\nFeel free to reach me if you have any questions.\n\n### Frequently Asked Questions\n\n#### What is a \"supergroup\"?\n\nA supergroup is a type of Telegram group that supports larger member capacities and offers advanced features. Each message in a supergroup has a unique URL, which is necessary for searching and locating messages.\n\n#### How can I create one?\n\nTo create a supergroup, start by creating a public group in Telegram. Once the group is public, it converts into a supergroup automatically.\n\n#### What about my existing groups?\n\nIf you have existing private groups, just set the group to public, **save** the setting, and switch back to private. This gives you a private supergroup.\n\n#### Do you have a ready-to-use instance?\n\nOfficially, there is no public instance provided.\n\n#### How to update?\n\nThis projects follows [Semantic Versioning](https://semver.org). Docker image tags include `MAJOR.MINOR.PATCH` and `MAJOR.MINOR` .\n\n```sh\ndocker compose pull\ndocker compose up -d\n```\n\n### Development\n\nThis project utilzes Nix Flake to manage development and building environment. You can run `nix develop` to open an interactive shell or run `direnv allow` to integrate the environment with your workflow.\n\nPull requests and issues would be supremely welcomed.\n\n### Credits\n\nPowered by the blazing-fast [Meilisearch](https://www.meilisearch.com/).\n\nPowered by the easy-to-use [teloxide](https://github.com/teloxide/teloxide).\n\nInspired by [telegram-search-bot](https://github.com/Taosky/telegram-search-bot).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrishukr%2Ftelegram-cjk-search-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkrishukr%2Ftelegram-cjk-search-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrishukr%2Ftelegram-cjk-search-bot/lists"}