Multi Sessions addon for Telethon
Project description
Multi Sessions addon for Telethon
Installing:
pip3 install tlmulticlient
How to use:
# importing multiclient library and other required imports
from tlmulticlient import MultiClient
import asyncio
from telethon import events
# create the multiclient
client = MultiClient(api_id=12345, api_hash='my_api_hash', sessions=['list', 'of', 'str_sessions'])
# listenting to new messages
@client.on(events.NewMessage)
def listener(event):
# Now we need to use `event.client.etc` instead of client.etc to be able to run a function on all the available clients!
await event.client.send_message(event.chat_id, "Hello World!")
# To find out from which session an event was triggered we use:
id = event.client.session_id # session id is the name of the session attached to the client which received the event.
if id == 'str_sessions':
print('This event was triggered from the session named str_sessions')
else:
print('This event was triggered from the session named {0}'.format(id))
# iterate though all the clients
for c in client:
print(c.session_id)
# run all the clients
loop = asyncio.get_event_loop()
client.run_all_clients(loop=loop)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tlmulticlient-0.0.5-py2.py3-none-any.whl.
File metadata
- Download URL: tlmulticlient-0.0.5-py2.py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.9.0a2+
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c640e842bf0bdf3282ea4cdf6f8ebcdb834906d7c3b69a1fbacdcc6d1d93d948
|
|
| MD5 |
4baa9ff65fe003615331a2caa703d0c6
|
|
| BLAKE2b-256 |
45e0140e516a77aefb4ae820453384f50aa1440c7d952d085dfe2ad6075e81c4
|