From 7a1132445f67d451c58f87ae4c92f1fac6abb9dc Mon Sep 17 00:00:00 2001 From: Anatoly Date: Sat, 2 Apr 2022 23:34:08 +0300 Subject: [PATCH] Added indication --- grab_samples.py | 1 + 1 file changed, 1 insertion(+) diff --git a/grab_samples.py b/grab_samples.py index 3b164a3..939f1af 100644 --- a/grab_samples.py +++ b/grab_samples.py @@ -33,6 +33,7 @@ with TelegramClient('bot', api_id, api_hash) as client: f = open("data/data.txt", "w") for chat in chats: + print(f'Collecting {chat}') for message in client.iter_messages(chat): try: f.write(cleanup(message.text))