这是我的代码,我需要一种方法来获取 True/False 布尔值来确定收到的链接是否是组链接。
client = TelegramClient('session', api_id, api_hash)
#check whether there's a 'joinchat' in the msg text?
@client.on(events.NewMessage(outgoing=False, pattern=r'(?i).*joinchat/'))
async def my_event_handler(event):
#extract the hash of that link
hash = re.search('(?<=joinchat\/)(\w+[-]?\S\w+)', event.raw_text).group(0)
慕斯王
相关分类