Skip to main content

Redis backend for Telethon session storage

Project description

A Telethon session storage implementation backed by Redis.

Usage

This session implementation can store multiple Sessions in the same key hive.

Installing

pip3 install teleredis

Upgrading

pip3 install -U teleredis

Quick start

from telethon import TelegramClient
from teleredis 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()

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

teleredis-0.1.3.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

teleredis-0.1.3-py3-none-any.whl (5.9 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