├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── constructor_telegram_bots ├── __init__.py ├── asgi.py ├── celery.py ├── fields.py ├── gunicorn.py ├── migrations.py ├── mixins.py ├── pagination.py ├── parsers.py ├── settings.py ├── urls.py ├── validators.py └── wsgi.py ├── donation ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_method_position_alter_section_position.py │ ├── 0003_alter_method_link.py │ ├── 0004_convert_html_to_markdown.py │ ├── 0005_alter_donation_date.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── translation.py ├── urls.py └── views.py ├── install.sh ├── instruction ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_section_position.py │ ├── 0003_convert_html_to_markdown.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── translation.py ├── urls.py └── views.py ├── languages ├── __init__.py ├── apps.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── makemessages.py ├── migrations │ └── __init__.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── locale ├── en │ └── LC_MESSAGES │ │ └── django.po └── uk │ └── LC_MESSAGES │ └── django.po ├── manage.py ├── poetry.lock ├── privacy_policy ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_section_position.py │ ├── 0003_convert_html_to_markdown.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── translation.py ├── urls.py └── views.py ├── pyproject.toml ├── telegram_bots ├── __init__.py ├── admin.py ├── apps.py ├── enums.py ├── hub │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── authentication.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── create_hub.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_telegrambotshub_microservice_token_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── serializers │ │ ├── __init__.py │ │ ├── api_request.py │ │ ├── background_task.py │ │ ├── condition.py │ │ ├── connection.py │ │ ├── database_operation.py │ │ ├── database_record.py │ │ ├── message.py │ │ ├── telegram_bot.py │ │ ├── trigger.py │ │ ├── user.py │ │ └── variable.py │ ├── service │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── api.py │ │ └── schemas.py │ ├── tests │ │ ├── __init__.py │ │ ├── api_request.py │ │ ├── background_task.py │ │ ├── condition.py │ │ ├── database_operation.py │ │ ├── database_record.py │ │ ├── message.py │ │ ├── mixins.py │ │ ├── telegram_bot.py │ │ ├── trigger.py │ │ ├── user.py │ │ ├── utils.py │ │ └── variable.py │ ├── urls.py │ ├── utils.py │ └── views │ │ ├── __init__.py │ │ ├── api_request.py │ │ ├── background_task.py │ │ ├── condition.py │ │ ├── database_operation.py │ │ ├── database_record.py │ │ ├── message.py │ │ ├── mixins.py │ │ ├── telegram_bot.py │ │ ├── trigger.py │ │ ├── user.py │ │ └── variable.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_backgroundtaskapirequest_url_and_more.py │ ├── 0003_rename_file_command_and_more.py │ ├── 0004_trigger_triggercommand_triggermessage_and_more.py │ ├── 0005_apirequest_and_more.py │ ├── 0006_databaseoperation_databasecreateoperation_and_more.py │ ├── 0007_rename_is_delete_user_message_commandsettings_delete_user_message_and_more.py │ ├── 0008_remove_connection_telegram_bo_source__bb2efb_idx_and_more.py │ ├── 0009_alter_apirequest_body_alter_apirequest_headers_and_more.py │ ├── 0010_update_text_variables.py │ ├── 0011_alter_triggermessage_text.py │ ├── 0012_rename_commands_models.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── api_request.py │ ├── background_task.py │ ├── base.py │ ├── condition.py │ ├── connection.py │ ├── database_operation.py │ ├── database_record.py │ ├── message.py │ ├── telegram_bot.py │ ├── trigger.py │ ├── user.py │ └── variable.py ├── serializers │ ├── __init__.py │ ├── api_request.py │ ├── background_task.py │ ├── base.py │ ├── condition.py │ ├── connection.py │ ├── database_operation.py │ ├── database_record.py │ ├── message.py │ ├── mixins.py │ ├── telegram_bot.py │ ├── trigger.py │ ├── user.py │ └── variable.py ├── tasks.py ├── tests │ ├── __init__.py │ ├── api_request.py │ ├── background_task.py │ ├── condition.py │ ├── connection.py │ ├── database_operation.py │ ├── database_record.py │ ├── message.py │ ├── mixins.py │ ├── stats.py │ ├── telegram_bot.py │ ├── trigger.py │ ├── user.py │ └── variable.py ├── urls.py ├── utils.py └── views │ ├── __init__.py │ ├── api_request.py │ ├── background_task.py │ ├── condition.py │ ├── connection.py │ ├── database_operation.py │ ├── database_record.py │ ├── message.py │ ├── mixins.py │ ├── stats.py │ ├── telegram_bot.py │ ├── trigger.py │ ├── user.py │ └── variable.py ├── users ├── __init__.py ├── admin.py ├── apps.py ├── authentication.py ├── backends.py ├── data.py ├── enums.py ├── exceptions.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── routers.py ├── serializers.py ├── tasks.py ├── tests.py ├── tokens.py ├── urls.py ├── utils.py └── views.py └── utils ├── __init__.py └── html.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: EXG1O 2 | custom: https://constructor.exg1o.org/donation 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/SECURITY.md -------------------------------------------------------------------------------- /constructor_telegram_bots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/__init__.py -------------------------------------------------------------------------------- /constructor_telegram_bots/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/asgi.py -------------------------------------------------------------------------------- /constructor_telegram_bots/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/celery.py -------------------------------------------------------------------------------- /constructor_telegram_bots/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/fields.py -------------------------------------------------------------------------------- /constructor_telegram_bots/gunicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/gunicorn.py -------------------------------------------------------------------------------- /constructor_telegram_bots/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/migrations.py -------------------------------------------------------------------------------- /constructor_telegram_bots/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/mixins.py -------------------------------------------------------------------------------- /constructor_telegram_bots/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/pagination.py -------------------------------------------------------------------------------- /constructor_telegram_bots/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/parsers.py -------------------------------------------------------------------------------- /constructor_telegram_bots/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/settings.py -------------------------------------------------------------------------------- /constructor_telegram_bots/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/urls.py -------------------------------------------------------------------------------- /constructor_telegram_bots/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/validators.py -------------------------------------------------------------------------------- /constructor_telegram_bots/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/constructor_telegram_bots/wsgi.py -------------------------------------------------------------------------------- /donation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /donation/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/admin.py -------------------------------------------------------------------------------- /donation/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/apps.py -------------------------------------------------------------------------------- /donation/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/migrations/0001_initial.py -------------------------------------------------------------------------------- /donation/migrations/0002_alter_method_position_alter_section_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/migrations/0002_alter_method_position_alter_section_position.py -------------------------------------------------------------------------------- /donation/migrations/0003_alter_method_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/migrations/0003_alter_method_link.py -------------------------------------------------------------------------------- /donation/migrations/0004_convert_html_to_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/migrations/0004_convert_html_to_markdown.py -------------------------------------------------------------------------------- /donation/migrations/0005_alter_donation_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/migrations/0005_alter_donation_date.py -------------------------------------------------------------------------------- /donation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /donation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/models.py -------------------------------------------------------------------------------- /donation/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/serializers.py -------------------------------------------------------------------------------- /donation/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/tests.py -------------------------------------------------------------------------------- /donation/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/translation.py -------------------------------------------------------------------------------- /donation/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/urls.py -------------------------------------------------------------------------------- /donation/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/donation/views.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/install.sh -------------------------------------------------------------------------------- /instruction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instruction/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/admin.py -------------------------------------------------------------------------------- /instruction/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/apps.py -------------------------------------------------------------------------------- /instruction/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/migrations/0001_initial.py -------------------------------------------------------------------------------- /instruction/migrations/0002_alter_section_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/migrations/0002_alter_section_position.py -------------------------------------------------------------------------------- /instruction/migrations/0003_convert_html_to_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/migrations/0003_convert_html_to_markdown.py -------------------------------------------------------------------------------- /instruction/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instruction/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/models.py -------------------------------------------------------------------------------- /instruction/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/serializers.py -------------------------------------------------------------------------------- /instruction/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/tests.py -------------------------------------------------------------------------------- /instruction/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/translation.py -------------------------------------------------------------------------------- /instruction/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/urls.py -------------------------------------------------------------------------------- /instruction/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/instruction/views.py -------------------------------------------------------------------------------- /languages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/languages/apps.py -------------------------------------------------------------------------------- /languages/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/management/commands/makemessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/languages/management/commands/makemessages.py -------------------------------------------------------------------------------- /languages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/languages/serializers.py -------------------------------------------------------------------------------- /languages/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/languages/tests.py -------------------------------------------------------------------------------- /languages/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/languages/urls.py -------------------------------------------------------------------------------- /languages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/languages/views.py -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/manage.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/poetry.lock -------------------------------------------------------------------------------- /privacy_policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /privacy_policy/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/admin.py -------------------------------------------------------------------------------- /privacy_policy/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/apps.py -------------------------------------------------------------------------------- /privacy_policy/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/migrations/0001_initial.py -------------------------------------------------------------------------------- /privacy_policy/migrations/0002_alter_section_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/migrations/0002_alter_section_position.py -------------------------------------------------------------------------------- /privacy_policy/migrations/0003_convert_html_to_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/migrations/0003_convert_html_to_markdown.py -------------------------------------------------------------------------------- /privacy_policy/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /privacy_policy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/models.py -------------------------------------------------------------------------------- /privacy_policy/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/serializers.py -------------------------------------------------------------------------------- /privacy_policy/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/tests.py -------------------------------------------------------------------------------- /privacy_policy/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/translation.py -------------------------------------------------------------------------------- /privacy_policy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/urls.py -------------------------------------------------------------------------------- /privacy_policy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/privacy_policy/views.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/pyproject.toml -------------------------------------------------------------------------------- /telegram_bots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telegram_bots/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/admin.py -------------------------------------------------------------------------------- /telegram_bots/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/apps.py -------------------------------------------------------------------------------- /telegram_bots/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/enums.py -------------------------------------------------------------------------------- /telegram_bots/hub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telegram_bots/hub/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/admin.py -------------------------------------------------------------------------------- /telegram_bots/hub/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/apps.py -------------------------------------------------------------------------------- /telegram_bots/hub/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/authentication.py -------------------------------------------------------------------------------- /telegram_bots/hub/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telegram_bots/hub/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telegram_bots/hub/management/commands/create_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/management/commands/create_hub.py -------------------------------------------------------------------------------- /telegram_bots/hub/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/migrations/0001_initial.py -------------------------------------------------------------------------------- /telegram_bots/hub/migrations/0002_alter_telegrambotshub_microservice_token_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/migrations/0002_alter_telegrambotshub_microservice_token_and_more.py -------------------------------------------------------------------------------- /telegram_bots/hub/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telegram_bots/hub/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/models.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/__init__.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/api_request.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/background_task.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/condition.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/connection.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/database_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/database_operation.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/database_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/database_record.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/message.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/telegram_bot.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/trigger.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/user.py -------------------------------------------------------------------------------- /telegram_bots/hub/serializers/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/serializers/variable.py -------------------------------------------------------------------------------- /telegram_bots/hub/service/__init__.py: -------------------------------------------------------------------------------- 1 | from .api import API 2 | 3 | __all__ = ['API'] 4 | -------------------------------------------------------------------------------- /telegram_bots/hub/service/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/service/adapters.py -------------------------------------------------------------------------------- /telegram_bots/hub/service/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/service/api.py -------------------------------------------------------------------------------- /telegram_bots/hub/service/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/service/schemas.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/__init__.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/api_request.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/background_task.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/condition.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/database_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/database_operation.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/database_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/database_record.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/message.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/mixins.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/telegram_bot.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/trigger.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/user.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/utils.py -------------------------------------------------------------------------------- /telegram_bots/hub/tests/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/tests/variable.py -------------------------------------------------------------------------------- /telegram_bots/hub/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/urls.py -------------------------------------------------------------------------------- /telegram_bots/hub/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/utils.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/__init__.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/api_request.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/background_task.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/condition.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/database_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/database_operation.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/database_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/database_record.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/message.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/mixins.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/telegram_bot.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/trigger.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/user.py -------------------------------------------------------------------------------- /telegram_bots/hub/views/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/hub/views/variable.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0001_initial.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0002_alter_backgroundtaskapirequest_url_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0002_alter_backgroundtaskapirequest_url_and_more.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0003_rename_file_command_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0003_rename_file_command_and_more.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0004_trigger_triggercommand_triggermessage_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0004_trigger_triggercommand_triggermessage_and_more.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0005_apirequest_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0005_apirequest_and_more.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0006_databaseoperation_databasecreateoperation_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0006_databaseoperation_databasecreateoperation_and_more.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0007_rename_is_delete_user_message_commandsettings_delete_user_message_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0007_rename_is_delete_user_message_commandsettings_delete_user_message_and_more.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0008_remove_connection_telegram_bo_source__bb2efb_idx_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0008_remove_connection_telegram_bo_source__bb2efb_idx_and_more.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0009_alter_apirequest_body_alter_apirequest_headers_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0009_alter_apirequest_body_alter_apirequest_headers_and_more.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0010_update_text_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0010_update_text_variables.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0011_alter_triggermessage_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0011_alter_triggermessage_text.py -------------------------------------------------------------------------------- /telegram_bots/migrations/0012_rename_commands_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/migrations/0012_rename_commands_models.py -------------------------------------------------------------------------------- /telegram_bots/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telegram_bots/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/__init__.py -------------------------------------------------------------------------------- /telegram_bots/models/api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/api_request.py -------------------------------------------------------------------------------- /telegram_bots/models/background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/background_task.py -------------------------------------------------------------------------------- /telegram_bots/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/base.py -------------------------------------------------------------------------------- /telegram_bots/models/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/condition.py -------------------------------------------------------------------------------- /telegram_bots/models/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/connection.py -------------------------------------------------------------------------------- /telegram_bots/models/database_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/database_operation.py -------------------------------------------------------------------------------- /telegram_bots/models/database_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/database_record.py -------------------------------------------------------------------------------- /telegram_bots/models/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/message.py -------------------------------------------------------------------------------- /telegram_bots/models/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/telegram_bot.py -------------------------------------------------------------------------------- /telegram_bots/models/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/trigger.py -------------------------------------------------------------------------------- /telegram_bots/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/user.py -------------------------------------------------------------------------------- /telegram_bots/models/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/models/variable.py -------------------------------------------------------------------------------- /telegram_bots/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/__init__.py -------------------------------------------------------------------------------- /telegram_bots/serializers/api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/api_request.py -------------------------------------------------------------------------------- /telegram_bots/serializers/background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/background_task.py -------------------------------------------------------------------------------- /telegram_bots/serializers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/base.py -------------------------------------------------------------------------------- /telegram_bots/serializers/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/condition.py -------------------------------------------------------------------------------- /telegram_bots/serializers/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/connection.py -------------------------------------------------------------------------------- /telegram_bots/serializers/database_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/database_operation.py -------------------------------------------------------------------------------- /telegram_bots/serializers/database_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/database_record.py -------------------------------------------------------------------------------- /telegram_bots/serializers/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/message.py -------------------------------------------------------------------------------- /telegram_bots/serializers/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/mixins.py -------------------------------------------------------------------------------- /telegram_bots/serializers/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/telegram_bot.py -------------------------------------------------------------------------------- /telegram_bots/serializers/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/trigger.py -------------------------------------------------------------------------------- /telegram_bots/serializers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/user.py -------------------------------------------------------------------------------- /telegram_bots/serializers/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/serializers/variable.py -------------------------------------------------------------------------------- /telegram_bots/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tasks.py -------------------------------------------------------------------------------- /telegram_bots/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/__init__.py -------------------------------------------------------------------------------- /telegram_bots/tests/api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/api_request.py -------------------------------------------------------------------------------- /telegram_bots/tests/background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/background_task.py -------------------------------------------------------------------------------- /telegram_bots/tests/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/condition.py -------------------------------------------------------------------------------- /telegram_bots/tests/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/connection.py -------------------------------------------------------------------------------- /telegram_bots/tests/database_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/database_operation.py -------------------------------------------------------------------------------- /telegram_bots/tests/database_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/database_record.py -------------------------------------------------------------------------------- /telegram_bots/tests/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/message.py -------------------------------------------------------------------------------- /telegram_bots/tests/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/mixins.py -------------------------------------------------------------------------------- /telegram_bots/tests/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/stats.py -------------------------------------------------------------------------------- /telegram_bots/tests/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/telegram_bot.py -------------------------------------------------------------------------------- /telegram_bots/tests/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/trigger.py -------------------------------------------------------------------------------- /telegram_bots/tests/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/user.py -------------------------------------------------------------------------------- /telegram_bots/tests/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/tests/variable.py -------------------------------------------------------------------------------- /telegram_bots/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/urls.py -------------------------------------------------------------------------------- /telegram_bots/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/utils.py -------------------------------------------------------------------------------- /telegram_bots/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/__init__.py -------------------------------------------------------------------------------- /telegram_bots/views/api_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/api_request.py -------------------------------------------------------------------------------- /telegram_bots/views/background_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/background_task.py -------------------------------------------------------------------------------- /telegram_bots/views/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/condition.py -------------------------------------------------------------------------------- /telegram_bots/views/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/connection.py -------------------------------------------------------------------------------- /telegram_bots/views/database_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/database_operation.py -------------------------------------------------------------------------------- /telegram_bots/views/database_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/database_record.py -------------------------------------------------------------------------------- /telegram_bots/views/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/message.py -------------------------------------------------------------------------------- /telegram_bots/views/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/mixins.py -------------------------------------------------------------------------------- /telegram_bots/views/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/stats.py -------------------------------------------------------------------------------- /telegram_bots/views/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/telegram_bot.py -------------------------------------------------------------------------------- /telegram_bots/views/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/trigger.py -------------------------------------------------------------------------------- /telegram_bots/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/user.py -------------------------------------------------------------------------------- /telegram_bots/views/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/telegram_bots/views/variable.py -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/authentication.py -------------------------------------------------------------------------------- /users/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/backends.py -------------------------------------------------------------------------------- /users/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/data.py -------------------------------------------------------------------------------- /users/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/enums.py -------------------------------------------------------------------------------- /users/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/exceptions.py -------------------------------------------------------------------------------- /users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/models.py -------------------------------------------------------------------------------- /users/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/routers.py -------------------------------------------------------------------------------- /users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/serializers.py -------------------------------------------------------------------------------- /users/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/tasks.py -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/tokens.py -------------------------------------------------------------------------------- /users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/urls.py -------------------------------------------------------------------------------- /users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/utils.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/users/views.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXG1O/Constructor-Telegram-Bots/HEAD/utils/html.py --------------------------------------------------------------------------------