2018-05-07 12:30:55 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
|
|
# Copyright (C) 2017-2018 Dan Tès <https://github.com/delivrance>
|
|
|
|
#
|
|
|
|
# This file is part of Pyrogram.
|
|
|
|
#
|
|
|
|
# Pyrogram is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Pyrogram is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2018-02-26 14:43:03 +00:00
|
|
|
import time
|
|
|
|
|
|
|
|
from pyrogram import Client
|
|
|
|
from pyrogram.api.errors import FloodWait
|
|
|
|
|
2018-05-06 09:56:25 +00:00
|
|
|
"""This example shows how to retrieve the full message history of a chat"""
|
|
|
|
|
2018-04-14 16:46:54 +00:00
|
|
|
app = Client("my_account")
|
2018-02-26 14:43:03 +00:00
|
|
|
target = "me" # "me" refers to your own chat (Saved Messages)
|
2018-05-11 16:00:26 +00:00
|
|
|
messages = [] # List that will contain all the messages of the target chat
|
|
|
|
offset_id = 0 # ID of the last message of the chunk
|
2018-02-26 14:43:03 +00:00
|
|
|
|
2018-06-22 11:30:18 +00:00
|
|
|
app.start()
|
|
|
|
|
2018-02-26 14:43:03 +00:00
|
|
|
while True:
|
|
|
|
try:
|
2018-05-11 16:00:26 +00:00
|
|
|
m = app.get_history(target, offset_id=offset_id)
|
2018-02-26 14:43:03 +00:00
|
|
|
except FloodWait as e:
|
|
|
|
# For very large chats the method call can raise a FloodWait
|
2018-05-11 16:00:26 +00:00
|
|
|
print("waiting {}".format(e.x))
|
2018-02-26 14:43:03 +00:00
|
|
|
time.sleep(e.x) # Sleep X seconds before continuing
|
|
|
|
continue
|
|
|
|
|
2018-05-11 16:00:26 +00:00
|
|
|
if not m.messages:
|
|
|
|
break
|
2018-02-26 14:43:03 +00:00
|
|
|
|
2018-05-11 16:00:26 +00:00
|
|
|
messages += m.messages
|
|
|
|
offset_id = m.messages[-1].message_id
|
|
|
|
|
|
|
|
print("Messages: {}".format(len(messages)))
|
2018-02-26 14:43:03 +00:00
|
|
|
|
2018-04-14 16:46:54 +00:00
|
|
|
app.stop()
|
2018-02-26 16:01:33 +00:00
|
|
|
|
2018-05-11 16:00:26 +00:00
|
|
|
# Now the "messages" list contains all the messages sorted by date in
|
2018-02-26 14:43:03 +00:00
|
|
|
# descending order (from the most recent to the oldest one)
|