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
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
Built Distribution
File details
Details for the file sqlalchemy_telethon_session-0.0.1.tar.gz
.
File metadata
- Download URL: sqlalchemy_telethon_session-0.0.1.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77bd603cd00dcb0c887eeffe41f89268446f04052bc58ec639d353bad4d97545 |
|
MD5 | 69a9915a3839819ed672e93679970645 |
|
BLAKE2b-256 | 97424e2be050b5210abc11d6fbe96a2717c8198979694d300ef2e2b8bb1f9051 |
File details
Details for the file sqlalchemy_telethon_session-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: sqlalchemy_telethon_session-0.0.1-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90bbae4336e53c20a69e112bf160f56dcfadb02061d473dc53164a6be3239701 |
|
MD5 | 2e565f5f38f13e9f036d2c22e405ef41 |
|
BLAKE2b-256 | 3b676c26133eafbb99d1371988e4c4732d18856ce4c210740d316a2f239d1a75 |