+-----------------------+
| Telethon 1.24.0 |
+-----------------------+
| layer: 144 |
+-----------------------+
A simple clone of the awesome Telegram MTproto client version 1.24.0 but with up to date components, You do not have to change previous code with telethon, as there are no breaking changes.
install: (if any issues, try uninstalling telethon first):
pip install -U newthon
client.send_file()
now works properly with albums
client.send_reaction(chat, message, "😢")
or shorter:
message.react("😁", big=True)
to send a reaction with animation(for pms) use big=True, and, to remove a reaction use remove=True:
message.react(remove=True)
- You can send files larger that 2GiB through Telegram
- Premium users will have .premium in their user object
- Premium stickers will also have .premium that might need dealing if you don't have subscription.
Use ||Text|| to create spoilers, for HTML use <tg-spoiler>Text</tg-spoiler> to create a customEmoji markdown use <emoji id="5373101475679443553">😉</emoji>. the id being the document id of any CustomEmoji Document.id in its pack.
- event.new_invite (only for bot accounts)
@bot.on(events.ChatAction(func=lambda e : e.new_join_request))
async def _(event):
event.approve_user(approved=True or False)
- event.new_approve for user accounts
@client.on(events.ChatAction(func=lambda e : e.new_approve))
async def _(event):
event.approve_user(approved=True/False)
- Getting them
result = client(functions.messages.GetChatInviteImportersRequest(
peer="chat",
offset_date=None,
offset_user=telethon.tl.types.InputUserEmpty(),
limit=1000
))
- manual approve
for a in result:
client(functions.messages.HideChatJoinRequestRequest(
peer='chat or username',
user_id='To-approve',
approved=True or False
))
- batch approve:
client(functions.messages.HideAllChatJoinRequestsRequest(
peer=entity,
approved=True or False
))
You can input a web bot button as an inline button or a keyboard button, sine it can be both. the default is inline button, you can use the inline=False to use it in a keyboard button
from telethon import Button
client.send_message(chat, "Open Google", buttons=Button.web("google", "https://google.com")
- note that webapp keyboard can be only a single button, it won't allow others with it.
client.send_message(chat, "YouTube", buttons=Button.web("google", "https://YouTube.com", inline=False)
chat.noforwards
will return True for chats with forward restriction enabled, same applies to bot messages with message.noforwards
You can use the argument noforwards=True
in sender methods.
client.send_message(chat, "lonami is god", noforwards=True)
you can now get a single message using the link in get/iter_messages.
client.get_messages("https://t.me/username/1")
The message object will also have .link attribute, which will return link of the message
aggressive True will sleep by default. its sleep value can be adjusted using the sleep parameter, this will make it sleep for that specified amount before processing next chunk.
client.get_participant(chat, aggressive=True, sleep=2)