【问题标题】:Read message with group name telethon (telegram)阅读组名为 Telethon(电报)的消息
【发布时间】:2020-01-03 14:09:00
【问题描述】:

我有 10 个不同名称的电报组。我可以使用来自 Telethon 库的以下示例代码打印消息。我还需要打印组名。

例如: G10001 Bhuvan 测试(组名用户名/电话消息)

#!/usr/bin/env python3
# A simple script to print some messages.
import os
import sys
import time

from telethon import TelegramClient, events, utils


def get_env(name, message, cast=str):
    if name in os.environ:
        return os.environ[name]
    while True:
        value = input(message)
        try:
            return cast(value)
        except ValueError as e:
            print(e, file=sys.stderr)
            time.sleep(1)


session = os.environ.get('TG_SESSION', 'printer')
api_id = get_env('TG_API_ID', 'Enter your API ID: ', int)
api_hash = get_env('TG_API_HASH', 'Enter your API hash: ')
proxy = None  # https://github.com/Anorov/PySocks

# Create and start the client so we can make requests (we don't here)
client = TelegramClient(session, api_id, api_hash, proxy=proxy).start()


# `pattern` is a regex, see https://docs.python.org/3/library/re.html
# Use https://regexone.com/ if you want a more interactive way of learning.
#
# "(?i)" makes it case-insensitive, and | separates "options".
@client.on(events.NewMessage(pattern=r''))#pattern=r'(?i).*\b(hello|hi)\b'))
async def handler(event):
    sender = await event.get_sender()
    #client.get_input_entity(PeerChannel(fwd.from_id))
    #channel = await event.get_channel()

    #group = event.group()
    #group = event.get_group()
    #print(group)
    #print(utils.get_peer_id(sender))
    #print(utils.get_input_location(sender))
    #print(utils.get_input_dialog(sender))
    #print(utils.get_inner_text(sender))

    #print(utils.get_extension(sender))
    #print(utils.get_attributes(sender))
    #print(utils.get_input_user(sender))

    name = utils.get_display_name(sender)
    print(name, 'said', event.text, '!')
    #print(utils.get_input_entity(PeerChannel(sender)))
    #print(utils.get_input_channel(get_input_peer(channel)))

try:
    print('(Press Ctrl+C to stop this)')
    client.run_until_disconnected()
finally:
    client.disconnect()

# Note: We used try/finally to show it can be done this way, but using:
#
#   with client:
#       client.run_until_disconnected()
#
# is almost always a better idea.

我还需要帮助才能向群组发送消息。我已经完成了下面给出的一些答案,这对我不起作用。

(Sending Telegram messages with Telethon: some entity parameters work, others don't?)

【问题讨论】:

    标签: python telegram telethon


    【解决方案1】:

    首先从传入事件中获取聊天:

    chat = await event.get_chat()
    

    打印组名:

    try:
            if chat.title:
                print(chat.title)
    except AttributeError:
            print('no such attribute present')
    

    向群组发送消息:

    await client.send_message(entity=chat.id,message='hi')
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-03-04
      • 1970-01-01
      • 2022-12-16
      • 2020-07-14
      • 1970-01-01
      • 2021-08-20
      相关资源
      最近更新 更多