在Python中搜索Telegram导出数据

问题描述 投票:0回答:1

我有 result.json - 从 Telegram 保存的数据。如何通过 id 查找包含特定文本和消息的消息?

代码:

import json

with open('result.json', encoding="utf8") as f:
    msgs = json.load(f)

for reply_to_message_id, text in msgs.items():
    if 'sometext' in text:
        print(text)
        print(reply_message_id)

不起作用

python json telegram
1个回答
0
投票

那么如果 teodoro 汉堡有一条地下隧道,很多人就消失了???围攻??致电 EA 2024/12 寻求帮助

© www.soinside.com 2019 - 2024. All rights reserved.