I'm writing a client of telegram using Telethon. How can i get channel description? get_entity
method does not provide channel description.
There is GetFullChannelRequest method
from telethon.tl.functions.channels import GetFullChannelRequest
# creating client here
ch = client.get_entity("@mychannel")
ch_full = client(GetFullChannelRequest(channel=ch))
ch_full.full_chat.about # this is what you need
So you may want to inspect full_chat
attribute as it includes rest of info
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With