Metadata-Version: 2.1
Name: django-python-telegram-bot-adapter
Version: 0.1.3
Summary: Tiny django app for easier telegram bot creation
Home-page: https://github.com/DarkKeks/django-python-telegram-bot-adapter
Author: DarkKeks
Author-email: darkkeks@rambler.ru
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: Django (>=2.1)
Requires-Dist: python-telegram-bot (>=11.0.0)

django-python-telegram-bot-adapter
=====

1. Install django-python-telegram-bot-adapter 
    ``` 
    pip install django-python-telegram-bot-adapter
    ```
2. Add `bot_adapter` to your INSTALLED_APPS setting
    ```python
    INSTALLED_APPS = [
        ...
        'bot_adapter.apps.BotConfig',
    ]
    ```
3. Include URLconf in your project urls.py
    ```python
    path('/', include('bot_adapter.urls')),
    ```
4. Not you can create telegram bots
    ```python
    bot = Bot(TOKEN)
    bot.register(...)
    BotConfig.registry.add_bot(TOKEN, bot)
    ```

