sinarezaei / django_telethon_multisession

0 stars 1 forks source link

!alt text alt text

Django Telethon MultiSession

A Telethon session storage implementation backed for Django ORM to use telethon in django projects.

Tested with:

Use the following command to install using pip:

pip install django-telethon-multisession

Usage example

Usage is very simple, just follow three simple steps below

Add Django-Telethon-Session to your installed apps

First add django telethon session to your installed apps in your django project settings:

INSTALLED_APPS = [
    ...,
    'django_telethon_multisession',
    ...
]

Migrate the database

Then run migrate command to create migrations in database.

python manage.py migrate

Use custom session

Use the session in django_telethon_multisession.sessions to initialize telegram client:

from django_telethon_multisession.sessions import DjangoMultiSession
client = TelegramClient(DjangoMultiSession("session_name"))

Feel free to send pull requests or report issues!