Metadata-Version: 1.1
Name: django-telethon-authorization
Version: 0.1
Summary: Provide REST API for Telethon authorization
Home-page: https://github.com/porovozls
Author: Dmytro Smyk
Author-email: porovozls@gmail.com
License: BSD License
Description: =====
        Django Telethon Authorization
        =====
        
        Provide REST API for authorizing telegram sessions
        
        Quick start
        -----------
        
        1. Add "django-telethon-authorization" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'django-telethon-authorization',
            ]
        
        2. Include django-telethon-authorization URL's in your project urls.py like this::
        
            path('telegram-auth/', include('django_telethon_authorization.urls')),
        
        3. Run `python manage.py migrate` to create the  models.
        
        Endpoints
        ------------
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
