An edited 1.24.0 version of the full-featured Telegram client library for Python 3
Project description
Forked Telethon
Telethon 1.24.0 with Layer 140
pip install newthon
Reactions
client.send_reaction(peer, message, "😢", big=False), 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)
Requests of join and events for ChatAction events
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)
using raw api to accept old requests
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
))
iter_participant
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)
Content privacy
chat.noforwards will return True for chats with forward restriction enabled, same applies to bot messages with message.noforwards
spoilers
You can use ||Text|| to create spoilers, or, for HTML <tg-spoiler>Text</tg-spoiler>
to create underline markdown, use –Text–
also you can now get a single message using the link in get/iter_messages()
client.get_messages("https://t.me/username/1")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.