#!/usr/bin/python3 # -*- coding:utf8 -*- import codecs import re
address = r'(0x[a-z0-9A-Z]{40})' name = r'\[@([a-z0-9A-Z]+)\]' date = r'\d{2}\.\d{2}\.\d{4} \d{2}\:\d{2}\:\d{2}' ID = r', (.+) \['
with open(r'telegram.txt','r',encoding="utf8") as f: for line in f.readlines(): print(line) if re.search(ID,line): #username = re.search(name,line) time = re.search(date,line) Telid = re.search(ID,line) print('---------------------------') #print(username.group(1)) print(time.group()) print(Telid.group(1)) print('---------------------------')
.....11.03.2018 16:15:50, carl cui [@cuiyysw]: >>upgraded the group to a supergroup<<
---------------------------
11.03.2018 16:15:50
carl cui
---------------------------
.....11.03.2018 16:18:02, carl cui [@cuiyysw]: >>changed group name to "Naus.io_Global"<<
---------------------------
11.03.2018 16:18:02
carl cui
---------------------------
.....11.03.2018 23:29:14, carl cui [@cuiyysw]: >>invited 小魔女 灵儿 [@loloplay]<<
---------------------------
11.03.2018 23:29:14
carl cui [@cuiyysw]: >>invited 小魔女 灵儿
---------------------------
.....12.03.2018 21:58:00, Den: >>joined the group<<
.....12.03.2018 21:58:49, Федя [@Ovod13]: >>joined the group<<
---------------------------
12.03.2018 21:58:49
Федя
---------------------------
12.03.2018 21:59:54, Den: Арим
.....12.03.2018 22:00:30, Den: >>left the group<<
.....12.03.2018 22:01:07, Nata [@Nataly9900]: >>joined the group<<
---------------------------
12.03.2018 22:01:07
Nata
---------------------------
.....12.03.2018 22:01:16, Sergey Lizunov [@strahara]: >>joined the group<<
---------------------------
12.03.2018 22:01:16
Sergey Lizunov
---------------------------
12.03.2018 22:02:03, Sergey Lizunov [@strahara]: 0xfa7c4fe34cEA9289f97bED26f7106AcB3523001F
---------------------------
12.03.2018 22:02:03
Sergey Lizunov
---------------------------
.....12.03.2018 22:03:47, Van Pham [@vanphamn]: >>joined the group<<
---------------------------
12.03.2018 22:03:47
Van Pham
---------------------------
12.03.2018 22:03:52, Van Pham [@vanphamn]: 0x4907d01FAD88F4c5F4fF0c6877328b9234FBcef5
---------------------------
12.03.2018 22:03:52
Van Pham
---------------------------
.....12.03.2018 22:05:44, Денис Назаров [@Astroden]: >>joined the group<<
---------------------------
12.03.2018 22:05:44
Денис Назаров
---------------------------
.....12.03.2018 22:05:54, SAJIB MAX [@sajibmax113]: >>joined the group<<
---------------------------
12.03.2018 22:05:54
SAJIB MAX
---------------------------
.....12.03.2018 22:06:00, Jean Nguessan [@Jeanlenoir]: >>joined the group<<
---------------------------
12.03.2018 22:06:00
Jean Nguessan
---------------------------
.....12.03.2018 22:06:32, vu khuong: >>joined the group<<
12.03.2018 22:06:41, vu khuong: 0x2c3c4ED46A54f3107CFDfC9CBf95C4dFAc3487E2
.....12.03.2018 22:07:47, Степан Рязанов [@m171pe]: >>joined the group<<
---------------------------
12.03.2018 22:07:47
Степан Рязанов
---------------------------
12.03.2018 22:07:50, 小魔女 灵儿 [@loloplay]: HI ALL,Thank you for your participation. Our event has just ended. If you are interested in our next NAB token reward, please join our Telegram group or WeChat group for more information. (
---------------------------
12.03.2018 22:07:50
小魔女 灵儿
---------------------------
.....12.03.2018 22:08:23, 小魔女 灵儿 [@loloplay]: >>unsupported service message type: messageActionPinMessage<<
---------------------------
12.03.2018 22:08:23
小魔女 灵儿
---------------------------
.....12.03.2018 22:08:38, Sergey Lizunov [@strahara]: >>left the group<<
---------------------------
12.03.2018 22:08:38
Sergey Lizunov
---------------------------
.....12.03.2018 22:11:02, Andrey Mishin [@Zoar1975]: >>joined the group<<
---------------------------
12.03.2018 22:11:02
Andrey Mishin
---------------------------
12.03.2018 22:11:18, Andrey Mishin [@Zoar1975]: 0xb72bf806bf1b11d955f84a0871f158322987e3c8
---------------------------
12.03.2018 22:11:18
Andrey Mishin
---------------------------
.....12.03.2018 22:11:20, raju malakomda [@malakomda]: >>joined the group<<
---------------------------
12.03.2018 22:11:20
raju malakomda
---------------------------
12.03.2018 22:11:21, SAJIB MAX [@sajibmax113]: thanks
---------------------------
12.03.2018 22:11:21
SAJIB MAX
---------------------------
Second Attempt: Chrome extension to save telegram chat history (works well)
Dumps your Telegram chat history with an active peer to plaintext. Perhaps, many of us like Telegram messenger and use it for conversations with friends. However, we were a bit disappointed by the absence of any sort of easy-accessible “Save Conversation” feature in the messenger. Therefore, we’ve written a Chrome extension for it! More info at https://github.com/pigpagnet/save-telegram-chat-history.
import re text = r'12.03.2018 22:03:52, Van Pham [@vanphamn]: 0x4907d01FAD88F4c5F4fF0c6877328b9234FBcef5' name = r'\[@([a-z0-9A-Z]+)\]' print(re.search(name,text).group(1))
import re text = '''Your Telegram History in "Naus.io_Global [@NausGlobal]" .....11.03.2018 16:15:50, carl cui [@cuiyysw]: >>upgraded the group to a supergroup<< .....11.03.2018 16:18:02, carl cui [@cuiyysw]: >>changed group name to "Naus.io_Global"<< .....11.03.2018 23:29:14, carl cui [@cuiyysw]: >>invited 小魔女 灵儿 [@loloplay]<< .....12.03.2018 21:58:00, Den: >>joined the group<< .....12.03.2018 21:58:49, Федя [@Ovod13]: >>joined the group<< 12.03.2018 21:59:54, Den: Арим .....12.03.2018 22:00:30, Den: >>left the group<< .....12.03.2018 22:01:07, Nata [@Nataly9900]: >>joined the group<< .....12.03.2018 22:01:16, Sergey Lizunov [@strahara]: >>joined the group<< 12.03.2018 22:02:03, Sergey Lizunov [@strahara]: 0xfa7c4fe34cEA9289f97bED26f7106AcB3523001F .....12.03.2018 22:03:47, Van Pham [@vanphamn]: >>joined the group<< ''' content = text.split('\n') address = r'(0x[a-z0-9A-Z]{40})'
for i in content: if re.search(address,i): eth = re.search(address,i) print(eth)
#!/usr/bin/python3 # -*- coding:utf8 -*- import codecs import re
address = r'(0x[a-z0-9A-Z]{40})' name = r'\[@([a-z0-9A-Z]+)\]' date = r'\d{2}\.\d{2}\.\d{4} \d{2}\:\d{2}\:\d{2}' ID = r', (.+) \['
with open(r'telegram_group_history__Naus.io_Global [@NausGlobal]_from20180311-1615_to20180504-1504__downloaded2018_05_04--18-22-55.txt','r',encoding='utf-8') as f: with open('telegram20180504.csv','w',encoding='utf-8') as w: for line in f.readlines(): if re.search(address,line) and re.search(name,line): eth = re.search(address,line).group() username = re.search(name,line).group(1) time = re.search(date,line).group() telid = re.search(ID,line).group(1) w.write('{},{},{},{}\n'.format(time,telid,username,eth)) print('The End')
The End
1 2 3 4 5 6 7 8
# first try has bug in name, it will not get chat of users who have set usernames
import re n1 ='02.05.2018 15:07:00, wu long: 0xb1A45043Ed0aDABc6e2F658BaE0eb8EA4d311294' n2 ='.....02.05.2018 15:08:07, Yasin Kartal [@yasinnkrtl]: >>joined the group<<' name = r',(.+):' print(re.search(name,n1).group(1).strip()) print(re.search(name,n2).group(1).strip())
#!/usr/bin/python3 # -*- coding:utf8 -*- import codecs import re
address = r'(0x[a-z0-9A-Z]{40})' name = r',(.+):' date = r'\d{2}\.\d{2}\.\d{4} \d{2}\:\d{2}\:\d{2}'
with open(r'telegram_group_history__Naus.io_Global [@NausGlobal]_from20180311-1615_to20180504-1504__downloaded2018_05_04--18-22-55.txt','r',encoding='utf-8') as f: with open('telegram20180505.csv','w',encoding='utf-8') as w: for line in f.readlines(): if re.search(address,line)and re.search(name,line): eth = re.search(address,line).group() username = re.search(name,line).group(1) time = re.search(date,line).group() w.write('{},{},{}\n'.format(time,username,eth)) print('The End')