Skip to main content

Telethon secret chat plugin

Project description

Secret chat plugin for telethon

This is still a work in progress so expect more commits to it. Used https://core.telegram.org/api/end-to-end at first but it wasn’t clear enough so I followed their advice and checked one of the implementations that had it https://github.com/danog/MadelineProto so this pluigin is based on daniil’s implementation at its core.

  • ☒ Accepting secret chats

  • ☒ Creating secret chats

  • ☒ Closing secret chats

  • ☒ Sending text messages

  • ☒ Recieving text messages

  • ☒ Uploading/downloading media

  • ☒ Dealing with rekeying¹

  • ☐ Saving secret chats keys to database²

  • ☐ Saving messages to database³

  • ☒ Automatic decryption/accepting/finishing

¹ Every 100 messages you need to recreate the auth key.

² Auth keys are saved client sides so if you restart the script you will lose all secret chats you had and can no longer recieve messages from them

³ There is no get_messages function in secret chats so users can’t see old messages.

Examples :

client = TelegramClient(...)

async def replier(event):
 # all events are encrypted by default
 if event.decrypted_event.message and event.decrypted_event.message == "hello":
     await event.reply("hi")


 manager = SecretChatManager(client, auto_accept=True)  # automatically accept new secret chats
 manager.add_secret_event_handler(func=replier) # we can specify the type of the event
 client.run_until_disconnected()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

telethon_secret_chat-0.1.13.tar.gz (18.7 kB view hashes)

Uploaded Source

Built Distribution

telethon_secret_chat-0.1.13-py3-none-any.whl (20.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page