Skip to main content

SQLAlchemy backend for Telethon session storage

Project description

A Telethon session storage implementation backed by SQLAlchemy.

Installation

telethon-session-sqlalchemy @ PyPI

pip install telethon-session-sqlalchemy

Usage

This session implementation can store multiple Sessions in the same database, but to do this, each session instance needs to have access to the same models and database session.

To get started, you need to create an AlchemySessionContainer which will contain that shared data. The simplest way to use AlchemySessionContainer is to simply pass it the database URL:

from alchemysession import AlchemySessionContainer
container = AlchemySessionContainer('postgres://user:pass@localhost/telethon')

If you already have SQLAlchemy set up for your own project, you can also pass the engine separately:

my_sqlalchemy_engine = sqlalchemy.create_engine('...')
container = AlchemySessionContainer(engine=my_sqlalchemy_engine)

By default, the session container will manage table creation/schema updates/etc automatically. If you want to manage everything yourself, you can pass your SQLAlchemy Session and declarative_base instances and set manage_tables to False:

from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import orm
import sqlalchemy
...
session_factory = orm.sessionmaker(bind=my_sqlalchemy_engine)
session = session_factory()
my_base = declarative_base()
...
container = AlchemySessionContainer(
    session=session, table_base=my_base, manage_tables=False
)

You always need to provide either engine or session to the container. If you set manage_tables=False and provide a session, engine is not needed. In any other case, engine is always required.

After you have your AlchemySessionContainer instance created, you can create new sessions by calling new_session:

session = container.new_session('some session id')
client = TelegramClient(session)

where some session id is an unique identifier for the session.

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-session-sqlalchemy-0.2.16.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

telethon_session_sqlalchemy-0.2.16-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file telethon-session-sqlalchemy-0.2.16.tar.gz.

File metadata

  • Download URL: telethon-session-sqlalchemy-0.2.16.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/49.6.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for telethon-session-sqlalchemy-0.2.16.tar.gz
Algorithm Hash digest
SHA256 f847c57302a102eb88e29ed95b8f4efa69582db2966fd806c21376b9a66ad4a8
MD5 026fa042c44b99b4d55a9dbcd8fa2336
BLAKE2b-256 d1bb1522ed4df397e95c50b3e745512516450ef04ad5d168c724cb3e6254a663

See more details on using hashes here.

File details

Details for the file telethon_session_sqlalchemy-0.2.16-py3-none-any.whl.

File metadata

  • Download URL: telethon_session_sqlalchemy-0.2.16-py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/49.6.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for telethon_session_sqlalchemy-0.2.16-py3-none-any.whl
Algorithm Hash digest
SHA256 2703968f4457232790c6411256ab9652ba991fc8647cd470cd099c41783a2795
MD5 f9b3ac5605bfcd280d97569ae0420a2b
BLAKE2b-256 15e95ba3be59ecabcc3a22a79b467317ac132b643cb824e6498afc72c32a0a5d

See more details on using hashes here.

Supported by

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