--- language: - ru - uk license: - other task_categories: - text-generation tags: - telegram - news - misc - scraped pretty_name: "UA/TG misc — 15 small channel stubs" --- # UA/TG misc — 15 small channel stubs A bundle of the **15 small Telegram channel exports** (10 of them kept non-empty text rows; the rest exported only media-only posts, stripped here) — stubs and partially scraped channels that did not reach the full 10k-message scrape that the main corpora ([`hausmer/ukr-tg-media`](https://huggingface.co/datasets/hausmer/ukr-tg-media), [`hausmer/ukr-tg-satire`](https://huggingface.co/datasets/hausmer/ukr-tg-satire)) got. Most are 1–30 text posts (some channels were only reachable briefly, others export empty media rows). This corpus contains **67 text posts** across the 15 channels ``channel24ua`, `latifundist`, `ukraine24tv`, `zsu_official`, `TruhaDnipro`, `truha_cherkasy`, `truha_lviv`, `truhalviv`, `truha_kyiv`, `truha_lutsk`, `news_live_ua`, `ukrainealert`, `ukrainska_pravda`, `trueuanews`, `unian_news``. ## Columns | column | type | description | |-----------|--------|----------------------------------------------------| | `id` | int64 | Telegram message id | | `date` | string | post timestamp, ISO format (UTC) | | `channel` | string | source channel name (15 distinct values) | | `text` | string | full message text (media stripped) | ## Caveat Content is © its respective authors/channels. Research snapshot, as-is, not sanctioned. Small/stub data — intended for completeness of the scrape, not as a standalone corpus. ## Usage ```python from datasets import load_dataset ds = load_dataset("hausmer/ua-tg-misc") print(ds["train"][0]) ```