如何从电报组中抓取电报用户?

时间:2019-09-06 14:03:44

标签: python bots telegram telethon

因此,我已经尝试了很长时间,我找到了一些预制程序,但它们的价格为100美元。我已经尝试了多个应用程序和程序,例如Telegram Auto和Telegram Kit,但它们的成本很高,而且我现在没有这么多钱。

我正在尝试用Python和Telethon来做(没有很多经验)

我已经使用电报开发人员工具制作了一个应用程序,获取了API编号和哈希,并在线找到了以下代码

from telethon.tl.functions.messages import GetDialogsRequest
from telethon.tl.types import InputPeerEmpty
import csv

api_id = My API ID
api_hash = 'MY API HASH'
phone = 'MY PHONE'
client = TelegramClient(phone, api_id, api_hash)

client.connect()

chats = []
last_date = None
chunk_size = 200
groups=[]

result = client(GetDialogsRequest(
             offset_date=last_date,
             offset_id=0,
             offset_peer=InputPeerEmpty(),
             limit=chunk_size,
             hash = 0
         ))
chats.extend(result.chats)

for chat in chats:
    try:
        if chat.megagroup== True:
            groups.append(chat)
    except:
        continue

print('Choose a group to scrape members from:')
i=0
for g in groups:
    print(str(i) + '- ' + g.title)
    i+=1

g_index = input("Enter a Number: ")
target_group=groups[int(g_index)]

print('Fetching Members...')
all_participants = []
all_participants = client.get_participants(target_group, aggressive=True)

print('Saving In file...')
with open("members.csv","w",encoding='UTF-8') as f:
    writer = csv.writer(f,delimiter=",",lineterminator="\n")
    writer.writerow(['username','user id', 'access hash','name','group', 'group id'])
    for user in all_participants:
        if user.username:
            username= user.username
        else:
            username= ""
        if user.first_name:
            first_name= user.first_name
        else:
            first_name= ""
        if user.last_name:
            last_name= user.last_name
        else:
            last_name= ""
        name= (first_name + ' ' + last_name).strip()
        writer.writerow([username,user.id,user.access_hash,name,target_group.title, target_group.id])      
print('Members scraped successfully.')

我输入了我的信息,然后启动了程序,但是仍然出现此错误。

回溯(最近通话最近):   文件“ c:\ Users \ User \ Desktop \ export.py”,第23行,在     杂凑= 0   文件“ C:\ Users \ User \ AppData \ Local \ Programs \ Python \ Python37-32 \ lib \ site-packages \ telethon \ sync.py”,第39行,已同步     返回loop.run_until_complete(coro)   文件“ C:\ Users \ User \ AppData \ Local \ Programs \ Python \ Python37-32 \ lib \ asyncio \ base_events.py”,行579,在run_until_complete中     返回future.result()   调用中的文件“ C:\ Users \ User \ AppData \ Local \ Programs \ Python \ Python37-32 \ lib \ site-packages \ telethon \ client \ users.py”,第64行     结果=等待未来 telethon.errors.rpcerrorlist.AuthKeyUnregisteredError:密钥未在系统中注册(由GetDialogsRequest引起)

我到处搜索修复程序或教程,但没有找到任何东西。我唯一的选择就是来这里。

请帮助。

关于丹尼尔

1 个答案:

答案 0 :(得分:0)

诚然,有关该错误含义的文档aren't very clear,但是从它的外观看,您可能会受到非托管资源的困扰。文档本身建议here:

  

TelegramClient聚合了几个mixin类,以在漂亮的Pythonic界面中提供所有常用功能。每个mixin都有自己的方法,您都可以使用。

     

简而言之,要创建客户端,您必须运行:

     
   from telethon import TelegramClient

   client = TelegramClient(name, api_id, api_hash)

   async def main():
       # Now you can use all client methods listed below, like for example...
       await client.send_message('me', 'Hello to myself!')

   with client:
       client.loop.run_until_complete(main())
     

您不需要导入这些AuthMethods,MessageMethods等。它们一起是TelegramClient,您可以访问它们的所有方法。

     

请参阅客户参考以获取简短摘要。

考虑使用python的with语句来帮助管理client

顺便说一句,您是否知道为Telethon做出贡献的一位开发人员已经写了free and open source scraper?