Redis backend for Pyrogram session storage
Project description
A Pyrogram session storage implementation backed by Redis.
Note: The hooks will not work until Pyrogram merge #6b37046 or use patched my pyrogram patched version.
Usage
This session implementation can store multiple Sessions in the same key hive.
Installing
pip3 install pyroredis
Upgrading
pip3 install -U pyroredis
Quick start
from pyrogram import Client from pyroredis 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_key = 12345 api_hash = '0123456789abcdef0123456789abcdef' session_name = "798xxxxxxx7" redis_connector = redis.Redis(host='localhost', port=6379, db=0, decode_responses=False) redis_session = RedisSession(redis_connector) client = Client(session_name=session_name, api_key=(api_key, api_hash)) client.load_session_hook = redis_session.load_session client.save_session_hook = redis_session.save_session client.start()
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.
Source Distribution
pyroredis-0.1.1.tar.gz
(3.5 kB
view details)
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 pyroredis-0.1.1.tar.gz.
File metadata
- Download URL: pyroredis-0.1.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d910142c04d24941f8746052bd01622f0cd67a8d445bb3f41bd7b919528ab4f
|
|
| MD5 |
2a16fd9bf26c8fc57d6f2d2e1e8095c1
|
|
| BLAKE2b-256 |
1c0f4381e3b78546ad0b4c0bea7722c5d9e153a1c28183fb7ee564ae47968207
|
File details
Details for the file pyroredis-0.1.1-py3-none-any.whl.
File metadata
- Download URL: pyroredis-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
416de353676a9952dde664bfccd66ff6701524118f23b1d66e4bb281fc48321d
|
|
| MD5 |
22394bedb5d5a59eb1a77872540143a5
|
|
| BLAKE2b-256 |
5aa03291718bf9679840455877b024ccfffbb231fd81e20075615c8cd753af12
|