如何从 Telegram 获取公共频道的消息 [英] how to get messages of the public channels from Telegram

查看:157
本文介绍了如何从 Telegram 获取公共频道的消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在电报应用中读取一些公共频道的消息,我想将电报频道文本存储在文本文件中.我想使用python.我尝试使用 Telethon,但它太复杂了.我的代码有一些错误:

I need to read the messages of some public channels in the telegram application, I want to store telegram channle text in a text file. I want use python. I try with telethon but it's so complicated. my code have some error:

from telethon.tl.functions.messages import (GetHistoryRequest)
from telethon.tl.types import (
PeerChannel
)
client = TelegramClient(username, api_id, api_hash)
client.start()

offset_id = 0
limit = 100
all_messages = []
total_messages = 0
total_count_limit = 0

while True:
    print("Current Offset ID is:", offset_id, "; Total Messages:", total_messages)
    history = client(GetHistoryRequest(
        peer="https://t.me/futballbadnews",
        offset_id=offset_id,
        offset_date=None,
        add_offset=0,
        limit=limit,
        max_id=0,
        min_id=0,
        hash=0
    ))
    if not history.messages:
        break
    messages = history.messages
    for message in messages:
        all_messages.append(message.to_dict())
    offset_id = messages[len(messages) - 1].id
    total_messages = len(all_messages)
    if total_count_limit != 0 and total_messages >= total_count_limit:
        break   

错误:

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-24-52082a022807> in <module>()
---> 24     if not history.messages:

AttributeError: 'coroutine' object has no attribute 'messages'

推荐答案

如何使用 Telethon 从 Telegram 上的公共频道获取消息?

How to get messages from a public channel on Telegram using Telethon?

查看文档,因此您可以了解如何正确设置 get_messages 请求.

Take a look into the documentation, so you can see how to set up correctly the get_messages request.

import asyncio
from telethon import TelegramClient
from telethon.tl import functions, types

client = TelegramClient('YOUR_SESSION_NAME', 'YOUR_API_ID', 'YOUR_API_HASH')
client.start()

async def main():
    channel = await client.get_entity('CHANNEL USERNAME')
    messages = await client.get_messages(channel, limit= None) #pass your own args

    #then if you want to get all the messages text
    for x in messages:
        print(x.text) #return message.text


loop = asyncio.get_event_loop()
loop.run_until_complete(main())

这篇关于如何从 Telegram 获取公共频道的消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆