mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-08-05 20:50:22 +03:00
Update README.rst
This commit is contained in:
parent
c9a65bc25d
commit
42b0c37169
20
README.rst
20
README.rst
|
@ -41,6 +41,26 @@ Creating a client
|
|||
client.start()
|
||||
|
||||
|
||||
Store sessions in Redis
|
||||
-----------------------
|
||||
|
||||
.. code:: python
|
||||
|
||||
from telethon import TelegramClient
|
||||
from telethon.sessions.redis import RedisSession
|
||||
import redis
|
||||
|
||||
# These example values won't work. You must get your own api_id and
|
||||
# api_hash from https://my.telegram.org, under API Development.
|
||||
api_id = 12345
|
||||
api_hash = '0123456789abcdef0123456789abcdef'
|
||||
|
||||
redis_connector = redis.Redis(host='localhost', port=6379, db=0, decode_responses=False)
|
||||
session = RedisSession('session_name', redis_connector)
|
||||
client = TelegramClient(session, api_id, api_hash)
|
||||
client.start()
|
||||
|
||||
|
||||
Doing stuff
|
||||
-----------
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user