Norvoke commited on
Commit
58008ea
·
verified ·
1 Parent(s): 50ac6c2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +101 -3
README.md CHANGED
@@ -1,3 +1,101 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - ru
5
+ - en
6
+ size_categories:
7
+ - 1M<n<10M
8
+ tags:
9
+ - telegram
10
+ - news
11
+ - russia
12
+ - ukraine
13
+ - media
14
+ - nlp
15
+ - conflict
16
+ - geopolitics
17
+ pretty_name: Russian Telegram Channel Messages (2022–2026)
18
+ ---
19
+
20
+ # Russian Telegram Channel Messages (2022–2026)
21
+
22
+ A corpus of messages scraped from 25 Russian-language Telegram channels covering news, military commentary, and political discourse. The dataset spans from early 2022 through mid-2026.
23
+
24
+ ## Dataset Description
25
+
26
+ - **Size:** 1.16 GB
27
+ - **Format:** JSONL (one JSON object per line)
28
+ - **Languages:** Primarily Russian, some English
29
+
30
+ ## Channels
31
+
32
+ | Channel | Category |
33
+ |---------|----------|
34
+ | rian_ru | State news (RIA Novosti) |
35
+ | tass_agency | State news (TASS) |
36
+ | sputniknews | State news (Sputnik RU) |
37
+ | SputnikInt | State news (Sputnik International) |
38
+ | readovkanews | News aggregator |
39
+ | bbbreaking | Breaking news |
40
+ | ostorozhno_novosti | News |
41
+ | uranews | News |
42
+ | RKadyrov_95 | Political (Ramzan Kadyrov) |
43
+ | medvedev_telegram | Political (Dmitry Medvedev) |
44
+ | Putin_tg_Russia | Political (Putin-related) |
45
+ | SolovievLive | Political commentary (Vladimir Soloviev) |
46
+ | rybar | Military analysis |
47
+ | RVvoenkor | War correspondence |
48
+ | wargonzo | War correspondence |
49
+ | colonelcassad | Military blog |
50
+ | epoddubny | War correspondence |
51
+ | strelkovii | Military commentary |
52
+ | bloodysx | Conflict coverage |
53
+ | wartranslated | Translated war content |
54
+ | InfoDefenseRus | Information/defense |
55
+ | node_of_time_RUS | Geopolitical analysis |
56
+ | mir_sevodnia | World news |
57
+ | surf_noise1 | Commentary |
58
+ | moscowmap | Moscow-focused |
59
+
60
+ ## Schema
61
+
62
+ Each line is a JSON object with the following fields:
63
+
64
+ ```json
65
+ {
66
+ "channel": "rian_ru",
67
+ "id": 292458,
68
+ "date": 1746534499000,
69
+ "text": "Message text here..."
70
+ }
71
+ ```
72
+
73
+ | Field | Type | Description |
74
+ |-------|------|-------------|
75
+ | `channel` | string | Telegram channel username |
76
+ | `id` | integer | Message ID within the channel |
77
+ | `date` | integer | Unix timestamp in milliseconds |
78
+ | `text` | string | Message text content |
79
+
80
+ ## Collection Method
81
+
82
+ Messages were collected using the [Telethon](https://github.com/LonamiWebs/Telethon) library via the Telegram API. Only text messages are included; media-only posts were excluded.
83
+
84
+ ## Use Cases
85
+
86
+ - NLP research on Russian-language text
87
+ - Media and propaganda analysis
88
+ - Conflict and geopolitical discourse studies
89
+ - Sentiment analysis
90
+ - Topic modeling across state and independent media
91
+
92
+ ## Limitations
93
+
94
+ - Text only — no images, videos, or other media
95
+ - Some messages may have `null` date values
96
+ - Channel availability may change over time (channels can be banned or deleted)
97
+ - This dataset reflects the editorial perspective of the channels included, many of which are aligned with the Russian government
98
+
99
+ ## License
100
+
101
+ MIT