arpakitlib 1.8.4__py3-none-any.whl → 1.8.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/alembic/env.py +2 -2
- arpakitlib/_arpakit_project_template_v_2/arpakitlib_project_template_info.json +3 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/check_logging.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/check_sqlalchemy_db.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/drop_json_db.py +3 -3
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/drop_sqlalchemy_db.py +4 -3
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/generate_settings_env_example.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/init_json_db.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/init_sqlalchemy_db.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/reinit_json_db.py +3 -3
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/reinit_sqlalchemy_db.py +3 -3
- arpakitlib/_arpakit_project_template_v_2/command/remove_operations.py +13 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/remove_story_logs.py +4 -4
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/rm_all_records_in_json_db.py +3 -3
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/show_settings.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1/command/start_api_without_reload.py → _arpakit_project_template_v_2/command/start_api_for_not_prod.py} +3 -3
- arpakitlib/_arpakit_project_template_v_2/command/start_api_for_prod.py +19 -0
- arpakitlib/{_arpakit_project_template_v_1/command/start_api_with_reload.py → _arpakit_project_template_v_2/command/start_api_with_reload_for_not_prod.py} +3 -3
- arpakitlib/_arpakit_project_template_v_2/command/start_operation_executor_worker_for_not_prod.py +15 -0
- arpakitlib/{_arpakit_project_template_v_1/command/start_sync_operation_executor_workers.py → _arpakit_project_template_v_2/command/start_operation_executor_workers_for_not_prod.py} +3 -3
- arpakitlib/{_arpakit_project_template_v_1/command/start_sync_scheduled_operation_creator_worker.py → _arpakit_project_template_v_2/command/start_scheduled_operation_creator_worker_for_not_prod.py} +2 -2
- arpakitlib/_arpakit_project_template_v_2/command/start_tg_bot_for_prod.py +11 -0
- arpakitlib/_arpakit_project_template_v_2/project/api/asgi.py +3 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/auth.py +34 -5
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/create_api_app.py +8 -8
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/event.py +8 -8
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/exception.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/exception_handler.py +7 -7
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/response.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/router/main_router.py +1 -4
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/router/v1/check_auth.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/router/v1/clear_log_file.py +6 -7
- arpakitlib/{_arpakit_project_template_v_1/api/router/v1/arpakitlib_project_template.py → _arpakit_project_template_v_2/project/api/router/v1/get_arpakitlib_project_template_info.py} +3 -3
- arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/get_errors_info.py +33 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/router/v1/get_log_file.py +5 -6
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/router/v1/healthcheck.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/router/v1/main_router.py +14 -23
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/router/v1/now_utc_datetime.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/router/v1/raise_fake_error.py +5 -6
- arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/reinit_sqlalchemy_db.py +33 -0
- arpakitlib/_arpakit_project_template_v_2/project/api/schema/common/in_.py +5 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/schema/common/out.py +1 -1
- arpakitlib/_arpakit_project_template_v_2/project/api/schema/v1/in_.py +5 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/schema/v1/out.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/business_service/hello_world.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/business_service/remove_operations.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/core/cache_file_storage_in_dir.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/core/const.py +8 -4
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/core/dump_file_storage_in_dir.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/core/jinja2_templates.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/core/media_file_storage_in_dir.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/core/settings.py +3 -3
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/core/util.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/json_db/json_db.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/operation_execution/operation_executor_worker.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/operation_execution/scheduled_operation_creator_worker.py +3 -3
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/operation_execution/scheduled_operations.py +2 -2
- arpakitlib/_arpakit_project_template_v_2/project/resource/static/helloworld +1 -0
- arpakitlib/_arpakit_project_template_v_2/project/resource/static/openapi-favicon.png +0 -0
- arpakitlib/_arpakit_project_template_v_2/project/site/asgi.py +3 -0
- arpakitlib/_arpakit_project_template_v_2/project/site/create_site_app.py +5 -0
- arpakitlib/_arpakit_project_template_v_2/project/site/event.py +19 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sqladmin_/add_admin_in_app.py +4 -4
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sqladmin_/admin_auth.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sqladmin_/model_view.py +1 -1
- arpakitlib/_arpakit_project_template_v_2/project/sqlalchemy_db_/const.py +1 -0
- arpakitlib/{_arpakit_project_template_v_1/sqlalchemy_db → _arpakit_project_template_v_2/project/sqlalchemy_db_}/sqlalchemy_db.py +2 -2
- arpakitlib/{_arpakit_project_template_v_1/sqlalchemy_db → _arpakit_project_template_v_2/project/sqlalchemy_db_}/sqlalchemy_model.py +7 -4
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/blank/blank.py +24 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/tg_bot/const.py +1 -1
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/event.py +77 -0
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/filter_.py +69 -0
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/inline_/callback.py +37 -0
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/inline_/common.py +15 -0
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/static_/common.py +14 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/tg_bot/middleware/init_user.py +0 -3
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/middleware/middleware.py +12 -0
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/router/arpakitlib_project_template_info.py +14 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/tg_bot/router/error.py +4 -3
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/tg_bot/router/healthcheck.py +3 -2
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/router/main_router.py +12 -0
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/start_tg_bot.py +39 -0
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/tg_bot/tg_bot.py +1 -1
- arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/tg_bot/tg_bot_dispatcher.py +5 -4
- arpakitlib/_arpakit_project_template_v_2/project/tg_bot/util.py +1 -0
- arpakitlib/_arpakit_project_template_v_2/project/util/arpakitlib_project_template.py +17 -0
- arpakitlib/ar_aiogram_util.py +3 -123
- {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.6.dist-info}/METADATA +1 -1
- arpakitlib-1.8.6.dist-info/RECORD +260 -0
- arpakitlib/_arpakit_project_template_v_1/api/asgi.py +0 -3
- arpakitlib/_arpakit_project_template_v_1/api/router/v1/get_errors_info.py +0 -24
- arpakitlib/_arpakit_project_template_v_1/api/schema/common/in_.py +0 -5
- arpakitlib/_arpakit_project_template_v_1/api/schema/v1/in_.py +0 -5
- arpakitlib/_arpakit_project_template_v_1/arpakitlib_project_template.json +0 -3
- arpakitlib/_arpakit_project_template_v_1/command/remove_operations.py +0 -13
- arpakitlib/_arpakit_project_template_v_1/command/start_async_operation_executor_worker.py +0 -14
- arpakitlib/_arpakit_project_template_v_1/command/start_async_scheduled_operation_creator_worker.py +0 -14
- arpakitlib/_arpakit_project_template_v_1/command/start_sync_operation_executor_worker.py +0 -15
- arpakitlib/_arpakit_project_template_v_1/operation_execution/const.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/resource/static/openapi-favicon.png +0 -0
- arpakitlib/_arpakit_project_template_v_1/site/asgi.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/site/create_site_app.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/site/event.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/tg_bot/blank/blank.py +0 -5
- arpakitlib/_arpakit_project_template_v_1/tg_bot/blank/util.py +0 -12
- arpakitlib/_arpakit_project_template_v_1/tg_bot/event.py +0 -51
- arpakitlib/_arpakit_project_template_v_1/tg_bot/filter/not_prod_mode.py +0 -8
- arpakitlib/_arpakit_project_template_v_1/tg_bot/filter/prod_mode.py +0 -8
- arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/callback.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/common.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/static_/common.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/tg_bot/middleware/middleware.py +0 -12
- arpakitlib/_arpakit_project_template_v_1/tg_bot/router/arpakitlib_.py +0 -10
- arpakitlib/_arpakit_project_template_v_1/tg_bot/router/main_router.py +0 -14
- arpakitlib/_arpakit_project_template_v_1/tg_bot/start_tg_bot.py +0 -34
- arpakitlib/_arpakit_project_template_v_1/tg_bot/transmitted_tg_data.py +0 -58
- arpakitlib/_arpakit_project_template_v_1/tg_bot/util.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/util/__init__.py +0 -0
- arpakitlib/_arpakit_project_template_v_1/util/read_arpakitlib_project_template_file.py +0 -17
- arpakitlib-1.8.4.dist-info/RECORD +0 -262
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/.gitignore +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/.python-version +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/LICENSE +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/README.md +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/alembic/README +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/alembic/script.py.mako +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/alembic.ini +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/additional_model → _arpakit_project_template_v_2/command}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/alembic_history.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/alembic_revision_autogenerate.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/command/alembic_upgrade_head .sh → _arpakit_project_template_v_2/command/alembic_upgrade_head.sh} +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/beautify_json.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/docker_ps_a.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/docker_rm_postgres.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/docker_run_postgres.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/docker_start_postgres.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/docker_stop_postgres.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_commit.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_push_arpakit_company_github_1.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_push_arpakit_company_gitlab_1.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_push_arpakit_github_1.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_push_arpakit_gitlab_1.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_remote_v.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_set_arpakit_company_origin.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_set_arpakit_origin.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_set_divarteam_origin.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/git_status.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/hello_world.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_check.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_clear_cache.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_config.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_install.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_lock.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_remove_and_add_arpakitlib.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_show.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_show_arpakitlib.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_update.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/command/poetry_update_arpakitlib.sh +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2}/example.env +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/api → _arpakit_project_template_v_2/project}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/api/router → _arpakit_project_template_v_2/project/additional_model}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/additional_model/additional_model.py → _arpakit_project_template_v_2/project/additional_model/common.py} +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/api/router/v1 → _arpakit_project_template_v_2/project/api}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/const.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/openapi_ui.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/api/schema → _arpakit_project_template_v_2/project/api/router}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/api/schema/common → _arpakit_project_template_v_2/project/api/router/v1}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/api/schema/v1 → _arpakit_project_template_v_2/project/api/schema}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/schema/base_schema.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/business_service → _arpakit_project_template_v_2/project/api/schema/common}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/celery_ → _arpakit_project_template_v_2/project/api/schema/v1}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/api/util.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/command → _arpakit_project_template_v_2/project/business_service}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/core → _arpakit_project_template_v_2/project/celery_}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/json_db → _arpakit_project_template_v_2/project/core}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/note → _arpakit_project_template_v_2/project/json_db}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/resource/static → _arpakit_project_template_v_2/project/more}/helloworld +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/note/note_1.txt +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/note/note_2.txt +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/note/note_3.txt +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/note/note_4.txt +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/note/note_5.txt +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/operation_execution/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/sqlalchemy_db → _arpakit_project_template_v_2/project/operation_execution}/const.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/operation_execution/util.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/1 +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/healthcheck +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/redoc/redoc.standalone.js +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/favicon-16x16.png +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/favicon-32x32.png +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/index.css +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/index.html +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/oauth2-redirect.html +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-initializer.js +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui-bundle.js +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui-bundle.js.map +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui-es-bundle-core.js +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui-es-bundle-core.js.map +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui-es-bundle.js +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui-es-bundle.js.map +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui-standalone-preset.js +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui-standalone-preset.js.map +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui.css +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui.css.map +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui.js +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/resource/static/swagger-ui/swagger-ui.js.map +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sandbox/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sandbox/sandbox_1.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sandbox/sandbox_2.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sandbox/sandbox_3.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sandbox/sandbox_4.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sandbox/sandbox_5.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sandbox/sandbox_6.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sandbox/sandbox_7.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/site/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/site/consts.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/site/exception_handler.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/site/router/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/site/router/main_router.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/sqladmin_/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/sqlalchemy_db → _arpakit_project_template_v_2/project/sqlalchemy_db_}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/sqlalchemy_db → _arpakit_project_template_v_2/project/sqlalchemy_db_}/util.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/test_data/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/test_data/make_test_data_1.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/test_data/make_test_data_2.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/test_data/make_test_data_3.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/test_data/make_test_data_4.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/test_data/make_test_data_5.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/tg_bot/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1 → _arpakit_project_template_v_2/project}/tg_bot/blank/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/tg_bot/filter → _arpakit_project_template_v_2/project/tg_bot/kb}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/tg_bot/kb → _arpakit_project_template_v_2/project/tg_bot/kb/inline_}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/tg_bot/kb/inline_ → _arpakit_project_template_v_2/project/tg_bot/kb/static_}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/tg_bot/kb/static_ → _arpakit_project_template_v_2/project/tg_bot/middleware}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/tg_bot/middleware → _arpakit_project_template_v_2/project/tg_bot/router}/__init__.py +0 -0
- /arpakitlib/{_arpakit_project_template_v_1/tg_bot/router → _arpakit_project_template_v_2/project/util}/__init__.py +0 -0
- {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.6.dist-info}/LICENSE +0 -0
- {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.6.dist-info}/WHEEL +0 -0
- {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.6.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,260 @@
|
|
1
|
+
arpakitlib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
arpakitlib/_arpakit_project_template_v_2/.gitignore,sha256=BItFW9CofJiiKw3vEGSM2ZuK0d0wKQgxisMn-THIb7I,603
|
3
|
+
arpakitlib/_arpakit_project_template_v_2/.python-version,sha256=XMd40XBnlTFfBSmMldd-7VdqXNyFCy6wtxhw5e1mnhc,7
|
4
|
+
arpakitlib/_arpakit_project_template_v_2/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
5
|
+
arpakitlib/_arpakit_project_template_v_2/README.md,sha256=lfNQ7-IGnGZevzEnvOz8C9aZ7u_Sj4i55OKeCJMagdc,49
|
6
|
+
arpakitlib/_arpakit_project_template_v_2/alembic/README,sha256=MVlc9TYmr57RbhXET6QxgyCcwWP7w-vLkEsirENqiIQ,38
|
7
|
+
arpakitlib/_arpakit_project_template_v_2/alembic/env.py,sha256=nixwh3fLCGE-1E_DMv06GY3rsQ5b1WPcTMMgNxo3ACk,2465
|
8
|
+
arpakitlib/_arpakit_project_template_v_2/alembic/script.py.mako,sha256=MEqL-2qATlST9TAOeYgscMn1uy6HUS9NFvDgl93dMj8,635
|
9
|
+
arpakitlib/_arpakit_project_template_v_2/alembic.ini,sha256=8fuyeEvGBiPGbxEFy8ISBV3xX_fgVmuhEGpB10_B5Uo,3733
|
10
|
+
arpakitlib/_arpakit_project_template_v_2/arpakitlib_project_template_info.json,sha256=hc1BqLUMjtbGzTXksqqVA3GkeW1CtiBGLz1Zgd8p8Rc,48
|
11
|
+
arpakitlib/_arpakit_project_template_v_2/command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
+
arpakitlib/_arpakit_project_template_v_2/command/alembic_history.sh,sha256=OMnDNtHIksGh9iavWnzbtxcudZW4vjdcISsBXvzZSPw,22
|
13
|
+
arpakitlib/_arpakit_project_template_v_2/command/alembic_revision_autogenerate.sh,sha256=eWjXWMZ86mVu7RFCiKJm6jYjB4BelVJsmnAn50WIrLU,54
|
14
|
+
arpakitlib/_arpakit_project_template_v_2/command/alembic_upgrade_head.sh,sha256=RIkhv5e5ERZHoxmTvvo_nCeDeVqeVIam7CjVoE9_E4k,38
|
15
|
+
arpakitlib/_arpakit_project_template_v_2/command/beautify_json.py,sha256=JoJwN-GdI3HK_lTho043iNjLci2YrbdteeKB8gjwSL4,227
|
16
|
+
arpakitlib/_arpakit_project_template_v_2/command/check_logging.py,sha256=KeqcmJ2O-q4j87G9y13a9dRdWfuFs2-AXRO4EqUS7UI,219
|
17
|
+
arpakitlib/_arpakit_project_template_v_2/command/check_sqlalchemy_db.py,sha256=NgbakDecP2tFs_XjGyI1OPqMNRzi_azAdKwpGNrPtsk,246
|
18
|
+
arpakitlib/_arpakit_project_template_v_2/command/docker_ps_a.sh,sha256=nOQejihYlzstg9oROvYwHIsSLt2Sw0DWQEeT3GBaBNs,18
|
19
|
+
arpakitlib/_arpakit_project_template_v_2/command/docker_rm_postgres.sh,sha256=uIO5b_AsHEiHL_rWxayUd3asGA2sVw9gozyLMtkLMkE,56
|
20
|
+
arpakitlib/_arpakit_project_template_v_2/command/docker_run_postgres.sh,sha256=BOSv-n5RKcbk3OZ1X-7KaJrrh0LpFvRGaYjDvTnuvuU,328
|
21
|
+
arpakitlib/_arpakit_project_template_v_2/command/docker_start_postgres.sh,sha256=gaSO3zH6og5qegkn-63_QmOZA-cXHbwddHmKpTfm0EU,56
|
22
|
+
arpakitlib/_arpakit_project_template_v_2/command/docker_stop_postgres.sh,sha256=h2NeFBI0b9vZcf5fPhhxtepvAFhxl78Ct1wjfJWos24,55
|
23
|
+
arpakitlib/_arpakit_project_template_v_2/command/drop_json_db.py,sha256=s2RQuqWEDBgmbhRc-htNaaAR90HlPtWRHCS15fDhbLs,321
|
24
|
+
arpakitlib/_arpakit_project_template_v_2/command/drop_sqlalchemy_db.py,sha256=dOQr8iK3kkqwHsxonoMS3XVkbIQjLhzgUb-qLmVJX7Y,451
|
25
|
+
arpakitlib/_arpakit_project_template_v_2/command/generate_settings_env_example.py,sha256=gxZIYHyV2IgLdNmTcBZtFJMRC5UHz066DuLu2MEjaJg,449
|
26
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_commit.sh,sha256=AW1NEel-ZHaYeVWFlRbgZSYPQdnVKsTkpR_07RQL1Mw,42
|
27
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_push_arpakit_company_github_1.sh,sha256=Sx-OegryHeNTIfAOoCfj3Z3CF-XKEY0AJF5HVJAgGpU,70
|
28
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_push_arpakit_company_gitlab_1.sh,sha256=OL3mKrRjSXdYuxNA38PRMoeyEr9Qdtv82MhEs8bJuGA,70
|
29
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_push_arpakit_github_1.sh,sha256=j2wTeg7_tmJiWEtNAXpXjRSizEauoqF9uM679n6zidU,62
|
30
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_push_arpakit_gitlab_1.sh,sha256=W-85-OhGYLTijzM39G0Es74Y0VdbczELwS12owHN_Gs,62
|
31
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_remote_v.sh,sha256=DIcyWmY_mve_CmM1SND2gYgAGO7HaLtso3zvJfMqTRI,19
|
32
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_set_arpakit_company_origin.sh,sha256=zD57Uw_jF0ieegxk3c9hVzUHucpQDrbsQaML50Opy8Y,289
|
33
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_set_arpakit_origin.sh,sha256=J7qmaOAbAdwVo1_fwvbX1GcbL7AMPFG4ZU6zk45Y88s,240
|
34
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_set_divarteam_origin.sh,sha256=98p5MKUYaka5UkOH1NMaPnZt_pS_pVrY0niCvR5oHL8,135
|
35
|
+
arpakitlib/_arpakit_project_template_v_2/command/git_status.sh,sha256=N9JGYX5_UfCdirw4EQYzu4sS7pMLGrF4-QrTSTcpUtA,16
|
36
|
+
arpakitlib/_arpakit_project_template_v_2/command/hello_world.py,sha256=6aDbntxZ6e4Mbf2sQEb4uVazUDbJX7kEaSJn6SYwR6U,87
|
37
|
+
arpakitlib/_arpakit_project_template_v_2/command/init_json_db.py,sha256=PbznS7t2nuk1NCaf_6TCssjjuUW4G2lEQIjkQTmt-ys,215
|
38
|
+
arpakitlib/_arpakit_project_template_v_2/command/init_sqlalchemy_db.py,sha256=70EiEJHvsRmuOh9t-lY5D_jOF0y6mtSa_iW1cu-HBAk,240
|
39
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_check.sh,sha256=mxkbFqw-mVlAkP_klLoXDANbIoKEu6Uj98tZ3pLKlpU,19
|
40
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_clear_cache.sh,sha256=5NmoMsA377JCeTMLERzE2GZywgi8mXQDTQ_yhIJtR8k,139
|
41
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_config.sh,sha256=gIctNLSvRJmER_iU_HwPpHR83adZV12LoXcoWfY9M00,26
|
42
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_install.sh,sha256=oLSrFGHKIRWc-1VEiM9wPRUNPTjtYJ3hEKwbeCpCvlk,153
|
43
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_lock.sh,sha256=9oiTdi8ynGQWctQjI3g4ThGkvpT07-g5ajLmG47iVh8,17
|
44
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_remove_and_add_arpakitlib.sh,sha256=-DvxXI-oaAQxIZFtiCfNBhqpRgJcWWuxhoHb9Nou0a4,197
|
45
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_show.sh,sha256=pclR9efCNrrGyJR2HrdDM4PCUFGg0OSlRtjQ3Srv8W8,24
|
46
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_show_arpakitlib.sh,sha256=q2bMtxwfr24-qGRrDi6aw6ryumqrBe42fht-V19NqxY,37
|
47
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_update.sh,sha256=ZtoXIC4Qq7PMTDxQMwUxvkYC6lTc5LC23ILTywWbyoU,164
|
48
|
+
arpakitlib/_arpakit_project_template_v_2/command/poetry_update_arpakitlib.sh,sha256=hh7vj-yKgKqLfaGb8cjsJ_NTa7fBtE4s3yxzte4D8bw,163
|
49
|
+
arpakitlib/_arpakit_project_template_v_2/command/reinit_json_db.py,sha256=vRjyo8VzaN2xvzAWVDq4oW06sNZZmGuVFTedoE_NQhE,323
|
50
|
+
arpakitlib/_arpakit_project_template_v_2/command/reinit_sqlalchemy_db.py,sha256=ZmacFAxonE20TQoMs8b0uukTG-gpPHzX0eEoLss_0lQ,348
|
51
|
+
arpakitlib/_arpakit_project_template_v_2/command/remove_operations.py,sha256=Sn7A9UFrgFVMSdskfaHqXFrpnGOwxgu2vWiuRXH6bYY,331
|
52
|
+
arpakitlib/_arpakit_project_template_v_2/command/remove_story_logs.py,sha256=k9XmP8hOCMGOnkk8pfmU73iJ6jPS3nnsOK5jkd-taSw,503
|
53
|
+
arpakitlib/_arpakit_project_template_v_2/command/rm_all_records_in_json_db.py,sha256=mSyd-ENNfOJEZT1a8Ze5PrfNNtqOt1GVpIs5t0alKPQ,331
|
54
|
+
arpakitlib/_arpakit_project_template_v_2/command/show_settings.py,sha256=qIandHkM7R95eERk5jw8SX254P440h_XxS1RDtlLIKY,276
|
55
|
+
arpakitlib/_arpakit_project_template_v_2/command/start_api_for_not_prod.py,sha256=UoPkeKfSh1Ekq2Gxf3fv8aHrSVF_Xi4C14eBliXU6x0,364
|
56
|
+
arpakitlib/_arpakit_project_template_v_2/command/start_api_for_prod.py,sha256=L1Qa5_YDH-YYs31WJIT0fcgj_vgeUopXKD9vzAL105E,368
|
57
|
+
arpakitlib/_arpakit_project_template_v_2/command/start_api_with_reload_for_not_prod.py,sha256=YVKe6uP4cs1ow4Bd2ptiDRcHv_eGHaABlp2SgfMI2oM,363
|
58
|
+
arpakitlib/_arpakit_project_template_v_2/command/start_operation_executor_worker_for_not_prod.py,sha256=X8dE5OcTEVKjbcXdU0QMstXbi8RyYWPzATHtbQHyBIs,413
|
59
|
+
arpakitlib/_arpakit_project_template_v_2/command/start_operation_executor_workers_for_not_prod.py,sha256=pVfnAwSKKupVHinwqXAkQOkjwZ-WCRuO7AUGjfAQhzs,717
|
60
|
+
arpakitlib/_arpakit_project_template_v_2/command/start_scheduled_operation_creator_worker_for_not_prod.py,sha256=NuimX6etxQ9EU0VYOWw43AGiuOsZf8a4wilAd3ZzmRY,329
|
61
|
+
arpakitlib/_arpakit_project_template_v_2/command/start_tg_bot_for_prod.py,sha256=AJ1AxfdpbayBhScy6yAPVkSWnHJjzOTHxEewwGKaJMQ,200
|
62
|
+
arpakitlib/_arpakit_project_template_v_2/example.env,sha256=KAyUmiMLIHTo-q2um3kEvsD20Dz6mAX9gkLEqDXixzE,910
|
63
|
+
arpakitlib/_arpakit_project_template_v_2/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
|
+
arpakitlib/_arpakit_project_template_v_2/project/additional_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
65
|
+
arpakitlib/_arpakit_project_template_v_2/project/additional_model/common.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
|
66
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/asgi.py,sha256=ES3YGwNxWUHVyD6e2ii6QkvTyB-vlVmr8_PhfVIXQ4Y,78
|
68
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/auth.py,sha256=Ptudno03yOndmlpnkf6NbtCSnU6q27qOOC6dAmE2fRI,10819
|
69
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/const.py,sha256=J9bqaRRiIc3RLn6SJTvdfDvFrSsM_Ixii9t2M8dA5Jc,433
|
70
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/create_api_app.py,sha256=3jdYXS0unrXYc6XGy6b8RPCoqC6iWNq7tRrAc6lhVd4,2268
|
71
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/event.py,sha256=OwY9ECruH5tWHA4748irsjRIYA8zHfNjskP25lOYt5Q,2414
|
72
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/exception.py,sha256=L2GyA6iWmTBDg8bUX2kIML9wYct_fjVvFBL4A9itNBk,1274
|
73
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/exception_handler.py,sha256=dTJipFnXZHKT4YEOCMq_5rVdqCrT8YJ5Po1wK-dhLLA,11881
|
74
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/openapi_ui.py,sha256=_56-dxdVhL8uMPpG4u1hccCIvLCSYL9qieC5qCTXvbE,900
|
75
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/response.py,sha256=EEQnJOCnR6ns8QxnBxLxtQebupS96G34a12NtjOKNC0,1068
|
76
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/main_router.py,sha256=l5fHSOrxNVeNu60TYI4H5nfJqPSDQZHfEKh03d3Zu7o,211
|
78
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
79
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/check_auth.py,sha256=snNXKvma4b1N9vI-c2rkgkLSO2hlyuOFyKP9kcQNAN4,1067
|
80
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/clear_log_file.py,sha256=Bq5sSlGHf4fyp9KM287Tb9CF1jxaF_LkJMC_Ey9ZPMQ,1221
|
81
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/get_arpakitlib_project_template_info.py,sha256=lezA10obNDc_aJpOeHIhJVfclUhSRYH86sJVz4_rgKE,668
|
82
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/get_errors_info.py,sha256=vEIAY48EFY_zhbNnc5HTeAcm3FZEkNdHA53qw89gP50,1144
|
83
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/get_log_file.py,sha256=mBw-r6Xt-1mFHxIVihV4P6lDG3YA7lyoi3hfBR1VHu0,1079
|
84
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/healthcheck.py,sha256=O2MzUonpADIafYIegbBe1JrJEndIZIFzqeLuDAH4Mro,486
|
85
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/main_router.py,sha256=F_6jjYrjKbfeb7ZviqHIfYhNk42NfpdLQjHu6ABZgxc,1525
|
86
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/now_utc_datetime.py,sha256=C1THyD_jrKbDooxxf6Qa06uOwWepvJF_q0tkrw7bqqo,534
|
87
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/raise_fake_error.py,sha256=yN6FBxbS8cfVEWL9V_GA7OZTMZTS0yo6lcpqO8XyWyc,1398
|
88
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/router/v1/reinit_sqlalchemy_db.py,sha256=Y2ONlpJZmM7Mw5frXBjlmUHMkrKTeqrcRlAXISTyD10,1064
|
89
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/schema/base_schema.py,sha256=DX6Yz63JHoNlgmZnpss2PuRgEtBh3PPlxM6wImYLpXo,718
|
91
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/schema/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/schema/common/in_.py,sha256=pRScg2GVwrWZWkky-U3tjws9BHQvOm2cfRq-SYBMptA,89
|
93
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/schema/common/out.py,sha256=WndTEE0q3OZg56VYItDRDkqGQ1f_NZd4lPTcPW3_p3Q,1435
|
94
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/schema/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/schema/v1/in_.py,sha256=qAT48Ewrz5OpGjX0SXbQaMv_SA_NWJ0iRl6AkIR1Azo,85
|
96
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/schema/v1/out.py,sha256=MxkLz5hMCPG4XrViXrYNZgMV9gv4CH9gnilw_ecaVpI,1224
|
97
|
+
arpakitlib/_arpakit_project_template_v_2/project/api/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
|
+
arpakitlib/_arpakit_project_template_v_2/project/business_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
|
+
arpakitlib/_arpakit_project_template_v_2/project/business_service/hello_world.py,sha256=lvWlVF6SlnC33swSCd-_QK6guxBg50myOd8cPS7hZrA,251
|
100
|
+
arpakitlib/_arpakit_project_template_v_2/project/business_service/remove_operations.py,sha256=E2F8xonPeZovKKOHv-XDmsQUHvks8A6R89PVhF_pAQI,1780
|
101
|
+
arpakitlib/_arpakit_project_template_v_2/project/celery_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
|
+
arpakitlib/_arpakit_project_template_v_2/project/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
|
+
arpakitlib/_arpakit_project_template_v_2/project/core/cache_file_storage_in_dir.py,sha256=0lKPKvrs30DlAZwNS5ydPsQ9ETFLBjZqEcNv8LoQVCU,623
|
104
|
+
arpakitlib/_arpakit_project_template_v_2/project/core/const.py,sha256=w9wA72mJ8sGyxrMYo1NFCi-RU97RqDdgos0-anFj0ys,963
|
105
|
+
arpakitlib/_arpakit_project_template_v_2/project/core/dump_file_storage_in_dir.py,sha256=u3-vStMGaseMsRLuJmQK04UDhaez9vw6o5jyHb1fwNg,617
|
106
|
+
arpakitlib/_arpakit_project_template_v_2/project/core/jinja2_templates.py,sha256=jCNLaBauGC7YNvZdTLNHuPp7hmRGt94O23Skg6ewo7o,352
|
107
|
+
arpakitlib/_arpakit_project_template_v_2/project/core/media_file_storage_in_dir.py,sha256=fMofTsfJtA8pp5lEUhucEUu3PBsmj-elaRZzExDsdLI,623
|
108
|
+
arpakitlib/_arpakit_project_template_v_2/project/core/settings.py,sha256=r4HI3wJnVCd2cF2Q4Jl-pS7awHN8LZF8cnmz2OTT_GI,6257
|
109
|
+
arpakitlib/_arpakit_project_template_v_2/project/core/util.py,sha256=1ha9UrguVPsTSjoMHhVZVCD0_mNBfhIDGEvcG1nA4Zw,667
|
110
|
+
arpakitlib/_arpakit_project_template_v_2/project/json_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
|
+
arpakitlib/_arpakit_project_template_v_2/project/json_db/json_db.py,sha256=tBML-z4Y7uY8f_0ggcxvlDNt15Sf93Jr_OUeHwWxqOA,724
|
112
|
+
arpakitlib/_arpakit_project_template_v_2/project/more/helloworld,sha256=eH7Hbcr9IMGQjrCTahL5Ht0QWrXNfswrGuIDJkg0Xf8,11
|
113
|
+
arpakitlib/_arpakit_project_template_v_2/project/note/note_1.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
114
|
+
arpakitlib/_arpakit_project_template_v_2/project/note/note_2.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
115
|
+
arpakitlib/_arpakit_project_template_v_2/project/note/note_3.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
116
|
+
arpakitlib/_arpakit_project_template_v_2/project/note/note_4.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
117
|
+
arpakitlib/_arpakit_project_template_v_2/project/note/note_5.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
118
|
+
arpakitlib/_arpakit_project_template_v_2/project/operation_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
119
|
+
arpakitlib/_arpakit_project_template_v_2/project/operation_execution/const.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
|
120
|
+
arpakitlib/_arpakit_project_template_v_2/project/operation_execution/operation_executor_worker.py,sha256=-fAm54jXWf0ZX9h2UHbqdBuEEze6lAiv9D01AXL4Z9I,10812
|
121
|
+
arpakitlib/_arpakit_project_template_v_2/project/operation_execution/scheduled_operation_creator_worker.py,sha256=6ENkAJQOwG5BNc1tn_okQX49aZ-PBNDM7Vs5uYv9goE,4139
|
122
|
+
arpakitlib/_arpakit_project_template_v_2/project/operation_execution/scheduled_operations.py,sha256=BNqlXqHjf7-Bno-HtpCdJho0CFZdi6NUmGOTgIuPDkc,1721
|
123
|
+
arpakitlib/_arpakit_project_template_v_2/project/operation_execution/util.py,sha256=nau1QnUh37CL6rfniwQ7rfQkh5Rf8qE01ruFdNv4H8k,785
|
124
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
125
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/1,sha256=IIO7Wvjwlr2-LPSQ7Y8O35hcI6t0_s8zqITDxkYCO8I,11
|
126
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/healthcheck,sha256=IIO7Wvjwlr2-LPSQ7Y8O35hcI6t0_s8zqITDxkYCO8I,11
|
127
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/helloworld,sha256=eH7Hbcr9IMGQjrCTahL5Ht0QWrXNfswrGuIDJkg0Xf8,11
|
128
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/openapi-favicon.png,sha256=CuptowzQaCQsbXlunWIr_9akhvJ0TDIXHyuXBAFtM4I,5279
|
129
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/redoc/redoc.standalone.js,sha256=WCuodUNv1qVh0oW5fjnJDwb5AwOue73jKHdI9z8iGKU,909365
|
130
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/favicon-16x16.png,sha256=ryStYE3Xs7zaj5dauXMHX0ovcKQIeUShL474tjo-B8I,665
|
131
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/favicon-32x32.png,sha256=PtYS9B4FDKXnAAytbxy-fn2jn2X8qZwC6Z5lkQVuWDc,628
|
132
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/index.css,sha256=kySAfUJFZaFjm7KfN1TI1NRcEAnGdnTpluMzVfaSnOc,202
|
133
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/index.html,sha256=CQ4GiP7gFQsqZGmGrgCEd3xTvXQrEbbS2GR4Cf3Dtzs,703
|
134
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/oauth2-redirect.html,sha256=OX_TCiSZzSxfNBGt4Mp_vXhtUBFjnKeKBoJNWAuDwSI,2715
|
135
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-initializer.js,sha256=qJUDTyTxLXzYHsR8mNpPFXIdnZqNJAXyLyFwSCH4HQI,539
|
136
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui-bundle.js,sha256=VhdK-yl3MfMUpomLN-IdkwUyYAyoWCswpbnO37n0unk,1457477
|
137
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui-bundle.js.map,sha256=XA0HBcAHnjwbJK6IBi38JZaPT5dU3o-hTLtUiviZaVQ,1920878
|
138
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui-es-bundle-core.js,sha256=R-ylVahX5LpejNWzCnvZXdTMZInpRebAeb_z-LahTr8,462140
|
139
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui-es-bundle-core.js.map,sha256=_dFNrzlNxvS0KoCeu9djr3xJ68VerSuMfyZiiTrhZRQ,1572266
|
140
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui-es-bundle.js,sha256=Q0LozAGcpiZ4lmpSPdeRYFE3wANDMCBOgiYD5fhq7Ro,1457231
|
141
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui-es-bundle.js.map,sha256=Fx8FqHESauTfZu1AoD33rQuXMatMMv32mjq7jP7TW7I,1912421
|
142
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui-standalone-preset.js,sha256=wkbyZwvfcW1zj3tvwhJ-Jx2xIzLGfBJu_MQi4d5cKN0,230007
|
143
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui-standalone-preset.js.map,sha256=Y2JB5Bwr5afywvXmw_lyIRGbefR6zvxhsglWioWFv9Q,330036
|
144
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui.css,sha256=jzPZlgJTFwSdSphk9CHqsrKiR4cvOIAm-pTGVJEyWec,152072
|
145
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui.css.map,sha256=5wq8eXMLU6Zxb45orZPL1zAsBFJReFw6GjYqGpUX3hg,262650
|
146
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui.js,sha256=yHKu9z0C2kOO5j9n9D8oQzuBLeEoMGrFcMWQN27V554,339285
|
147
|
+
arpakitlib/_arpakit_project_template_v_2/project/resource/static/swagger-ui/swagger-ui.js.map,sha256=jeX-b8zAm2jsTGGCznrc49McbLKSfXspwECPhEAp0Xc,1159444
|
148
|
+
arpakitlib/_arpakit_project_template_v_2/project/sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
149
|
+
arpakitlib/_arpakit_project_template_v_2/project/sandbox/sandbox_1.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
150
|
+
arpakitlib/_arpakit_project_template_v_2/project/sandbox/sandbox_2.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
151
|
+
arpakitlib/_arpakit_project_template_v_2/project/sandbox/sandbox_3.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
152
|
+
arpakitlib/_arpakit_project_template_v_2/project/sandbox/sandbox_4.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
153
|
+
arpakitlib/_arpakit_project_template_v_2/project/sandbox/sandbox_5.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
154
|
+
arpakitlib/_arpakit_project_template_v_2/project/sandbox/sandbox_6.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
155
|
+
arpakitlib/_arpakit_project_template_v_2/project/sandbox/sandbox_7.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
156
|
+
arpakitlib/_arpakit_project_template_v_2/project/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
157
|
+
arpakitlib/_arpakit_project_template_v_2/project/site/asgi.py,sha256=uaRqA6QhXxDrYaNZil1USIIASRu0t5_hW0-DrbehF1g,82
|
158
|
+
arpakitlib/_arpakit_project_template_v_2/project/site/consts.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
159
|
+
arpakitlib/_arpakit_project_template_v_2/project/site/create_site_app.py,sha256=j2VtoUE47TSIDYs0sonSMnEa01R8YqO9WEcJF4_rtYE,89
|
160
|
+
arpakitlib/_arpakit_project_template_v_2/project/site/event.py,sha256=bNe5LvPGRiKZoR1RuuPU3Qn6t9LIPvinRwo9xPENUPk,290
|
161
|
+
arpakitlib/_arpakit_project_template_v_2/project/site/exception_handler.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
|
+
arpakitlib/_arpakit_project_template_v_2/project/site/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
163
|
+
arpakitlib/_arpakit_project_template_v_2/project/site/router/main_router.py,sha256=J5jNfgd-3OiWTtuubimEUz6wrOogupj9PkUdDmwz-2U,62
|
164
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqladmin_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
165
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqladmin_/add_admin_in_app.py,sha256=T4vkJJEjO63dRlsN_ItY1-E2UAgdiJ083l3dY9KWwho,759
|
166
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqladmin_/admin_auth.py,sha256=nmeWM4nYi0TWs1XXNvK9fMyIRJyzyTjdBg9-gtmPxvs,1848
|
167
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqladmin_/model_view.py,sha256=JcrO6FoAuJHslqURbZSHimPR5TxQpebgzQr0bJnx49M,2334
|
168
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqlalchemy_db_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
169
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqlalchemy_db_/const.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
|
170
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqlalchemy_db_/sqlalchemy_db.py,sha256=9J2ne0pYh9NajXrNllsJ3LLGALi4Cgywe5SZFLPPSng,754
|
171
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqlalchemy_db_/sqlalchemy_model.py,sha256=B19iftlxkbu3i5xm4hNzlc4w0uQbiKBLZFwPcXkbzlc,4727
|
172
|
+
arpakitlib/_arpakit_project_template_v_2/project/sqlalchemy_db_/util.py,sha256=rr-wYqK898FcLwg6Oa9j9lYfvBPs4ujKiY0rRTfwLqg,554
|
173
|
+
arpakitlib/_arpakit_project_template_v_2/project/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
174
|
+
arpakitlib/_arpakit_project_template_v_2/project/test_data/make_test_data_1.py,sha256=yRKf6HYZ2do2g7tAUB172nHA_u-yS9cyHhbinahc7sc,285
|
175
|
+
arpakitlib/_arpakit_project_template_v_2/project/test_data/make_test_data_2.py,sha256=tBhhXKKlSUh_fEYoOvGRuBKUJxPentya1h_6lcd-hk0,285
|
176
|
+
arpakitlib/_arpakit_project_template_v_2/project/test_data/make_test_data_3.py,sha256=0xV1EWfadkpSIso5gReDsOwdXunhovx14m-FWGCeJj0,285
|
177
|
+
arpakitlib/_arpakit_project_template_v_2/project/test_data/make_test_data_4.py,sha256=L6c4IUz9Mi2axalGgzVJVqT94lShARVmB596PJ3BCpE,285
|
178
|
+
arpakitlib/_arpakit_project_template_v_2/project/test_data/make_test_data_5.py,sha256=TN-weOT2xpB0wBkdaJ1F7t8YD63MNN_bZINjPJOfV9g,285
|
179
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/blank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
181
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/blank/blank.py,sha256=PLXOQc-oz8BxR_Cqn2VKwy0rT7Jj8KSl76eXtgcwyXY,511
|
182
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/const.py,sha256=yd9QGqP_N8_4QXq41K1AXlMKhwXMhB2cFsxKZGjPrcs,683
|
183
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/event.py,sha256=C_DqvjPKTtJxqay7Le58dzQNOnTj12TAIFKR1rPMoTk,2663
|
184
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/filter_.py,sha256=XV4RFm3dGCS4Ax6sVvwZ9xCGdiG973aNytK1qDvhFoA,2136
|
185
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/inline_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
187
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/inline_/callback.py,sha256=3zKMd5o9wDm3yOk8e7fUvjjH9KR0TI35dmxOXHYhdQ4,1009
|
188
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/inline_/common.py,sha256=ZfnoP_hx9GfAVTNAj-rhJ7GmsNi_ZCZSh3CpPf3wOfg,455
|
189
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/static_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/kb/static_/common.py,sha256=bR6pPUmnQKaMTzr_GQ9snbJUy4NFEoH8om7IxPtgzms,452
|
191
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/middleware/init_user.py,sha256=3ArOPuysRD54n-vvdlqDWB2GRuOeU6yp0DKnOn02jYA,554
|
193
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/middleware/middleware.py,sha256=IOrGl6GjohQfq7tkwwTdd-ul3GYDsJ05DAJfF8rh6UA,337
|
194
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
195
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/router/arpakitlib_project_template_info.py,sha256=mDPX1V90QmVmfb_esIElPpnyxqIy9urlzVNpm6NI6JY,526
|
196
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/router/error.py,sha256=uX2oaJnFeJfOR-OpJLX5UKJeToM6vZEcJhukA6L33Zs,261
|
197
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/router/healthcheck.py,sha256=5lU6heuM-XxxgWZdQHbocjOdtWkeb2BbYRE_wJvkfFw,359
|
198
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/router/main_router.py,sha256=tsYPFyx6vtXQXIAU71swVxYDFzmwgxar4Uw-a_2pyS0,401
|
199
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/start_tg_bot.py,sha256=vkBcHIjYAPxBJt3YU3NefLQNJduZ9p7zALeGaUNf4xQ,1245
|
200
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/tg_bot.py,sha256=z6AQl0s38G82i6L-IIG3ZevHg-aMl526GjcNRQm15xU,734
|
201
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/tg_bot_dispatcher.py,sha256=CUTYSiVEQrOcOe1pTl8BAHZIDIqurwVQEy0zCmab8Z8,660
|
202
|
+
arpakitlib/_arpakit_project_template_v_2/project/tg_bot/util.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
|
203
|
+
arpakitlib/_arpakit_project_template_v_2/project/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
204
|
+
arpakitlib/_arpakit_project_template_v_2/project/util/arpakitlib_project_template.py,sha256=syA_IuszHVub0zm0sVdB4_7rPJXwXRW4JmQ4qHbjXPk,396
|
205
|
+
arpakitlib/ar_additional_model_util.py,sha256=GFg-glLCxH9X95R2bhTJsscVwv37FgE1qbaAAyXrnIE,917
|
206
|
+
arpakitlib/ar_aiogram_util.py,sha256=E2mwKy9cW3oq8o51OBfJwhiLnK4y5TgPRYSzwYgQG7Q,8596
|
207
|
+
arpakitlib/ar_arpakit_lib_module_util.py,sha256=g9uWwTK2eEzmErqwYeVgXDYVMREN8m5CdmgEumAEQfw,5919
|
208
|
+
arpakitlib/ar_arpakit_project_template_util.py,sha256=5-o6eTmh-2DqsIqmo63SXw7ttExhmuAehMNc4s0GdtU,3278
|
209
|
+
arpakitlib/ar_arpakit_schedule_uust_api_client_util.py,sha256=_T_HeDCy2EwbYw0q5FnCJngU2fAZYMNd25gEtmagJN0,15813
|
210
|
+
arpakitlib/ar_arpakit_schedule_uust_site_util.py,sha256=8wLct9Gd4MWkXzB6nSmETAwTPLw8lfpWgx0LoWSAOvg,1643
|
211
|
+
arpakitlib/ar_arpakitlib_cli_util.py,sha256=--t-J019t-R35AZhi1cQyH5H8iHPiWeBjyH9Z5_Fg5o,2678
|
212
|
+
arpakitlib/ar_base64_util.py,sha256=aZkg2cZTuAaP2IWeG_LXJ6RO7qhyskVwec-Lks0iM-k,676
|
213
|
+
arpakitlib/ar_base_worker_util.py,sha256=gWQefz0KRM7OSnimWCiNETthox9x72X8Pt-R0ez-LII,5894
|
214
|
+
arpakitlib/ar_blank_util.py,sha256=6O54Z8NnCg8BXxUVWt-oo1kqzt0836k9KJeJofwmj0g,113
|
215
|
+
arpakitlib/ar_cache_file_util.py,sha256=Fo2pH-Zqm966KWFBHG_pbiySGZvhIFCYqy7k1weRfJ0,3476
|
216
|
+
arpakitlib/ar_class_util.py,sha256=i76pQW_7k_S2m_DlQh6xNjtggv9Col3WSx9W_bwk98E,722
|
217
|
+
arpakitlib/ar_cryptomus_api_client_util.py,sha256=cvp3u0NtuB0nIVeiljllMuxz9ECVPqR3EyBGWS2YAl8,247
|
218
|
+
arpakitlib/ar_datetime_util.py,sha256=Xe1NiT9oPQzNSG7RVRkhukhbg4i-hhS5ImmV7sPUc8o,971
|
219
|
+
arpakitlib/ar_dict_util.py,sha256=cF5LQJ6tLqyGoEXfDljMDZrikeZoWPw7CgINHIFGvXM,419
|
220
|
+
arpakitlib/ar_dream_ai_api_client_util.py,sha256=Z1oii_XSsgunYx17SdcHl54S4KPQti7-MJs0xXZ8vL0,2830
|
221
|
+
arpakitlib/ar_encrypt_decrypt_util.py,sha256=GhWnp7HHkbhwFVVCzO1H07m-5gryr4yjWsXjOaNQm1Y,520
|
222
|
+
arpakitlib/ar_enumeration_util.py,sha256=ZOkH1-duDcjQelJrdJ-nJ8h7wePFAgmpg_8e63Cyp0E,3072
|
223
|
+
arpakitlib/ar_exception_util.py,sha256=3hZKsj34TZVdmd4JAQz7w515smWqB8o3gTwAEjuMdnI,408
|
224
|
+
arpakitlib/ar_file_storage_in_dir_util.py,sha256=D3e3rGuHoI6xqAA5mVvEpVVpOWY1jyjNsjj2UhyHRbE,3674
|
225
|
+
arpakitlib/ar_file_util.py,sha256=GUdJYm1tUZnYpY-SIPRHAZBHGra8NKy1eYEI0D5AfhY,489
|
226
|
+
arpakitlib/ar_func_util.py,sha256=SN7VXsnP-7Hli6QFNZK_rl-n6qq1juJGvy3DlsiM8jE,984
|
227
|
+
arpakitlib/ar_hash_util.py,sha256=Iqy6KBAOLBQMFLWv676boI5sV7atT2B-fb7aCdHOmIQ,340
|
228
|
+
arpakitlib/ar_http_request_util.py,sha256=4f10gbsReyi_93OAn0ErIPzJdzKEcnzs_3wGRk7-YAI,5424
|
229
|
+
arpakitlib/ar_ip_util.py,sha256=aEAa1Hvobh9DWX7cmBAPLqnXSTiKe2hRk-WJaiKMaI8,1009
|
230
|
+
arpakitlib/ar_json_db_util.py,sha256=5nELpAY1_5_iTN4nMcutQtJQ5Nt52-xiKELxEH65RkY,7240
|
231
|
+
arpakitlib/ar_json_util.py,sha256=wJOsN8N7Rs7r8cTgMDXrmFa1GOkcD-LghqFEYXc8zGA,1083
|
232
|
+
arpakitlib/ar_jwt_util.py,sha256=Rhm4ywoTAn6yOV8NLjDASfAtAtheROxxDP40G3XjnuQ,761
|
233
|
+
arpakitlib/ar_list_of_dicts_to_xlsx.py,sha256=MyjEl4Jl4beLVZqLVQMMv0-XDtBD3Xh4Z_ZPDJeFu04,745
|
234
|
+
arpakitlib/ar_list_util.py,sha256=2woOAHAU8oTIiVjZ8GLnx15odEaoQUq3Q0JPxlufFF0,457
|
235
|
+
arpakitlib/ar_logging_util.py,sha256=V4jypypFG1cj4nXae7JiBnRRfm02OTnZSEermx-wlDY,1668
|
236
|
+
arpakitlib/ar_mongodb_util.py,sha256=2ECkTnGAZ92qxioL-fmN6R4yZOSr3bXdXLWTzT1C3vk,4038
|
237
|
+
arpakitlib/ar_need_type_util.py,sha256=l4ky_15KKwqgYf2WTgEaKfBI15jZbnszOeQjwC0YUmk,2312
|
238
|
+
arpakitlib/ar_openai_api_client_util.py,sha256=_XmlApvHFMSyjvZydPa_kASIt9LsFrZmSC7YEzIG8Bg,1806
|
239
|
+
arpakitlib/ar_parse_command.py,sha256=-s61xcATIsfw1eV_iD3xi-grsitbGzSDoAFc5V0OFy4,3447
|
240
|
+
arpakitlib/ar_postgresql_util.py,sha256=1AuLjEaa1Lg4pzn-ukCVnDi35Eg1k91APRTqZhIJAdo,945
|
241
|
+
arpakitlib/ar_rat_func_util.py,sha256=Ca10o3RJwyx_DJLxjTxgHDO6NU3M6CWgUR4bif67OE4,2006
|
242
|
+
arpakitlib/ar_retry_func_util.py,sha256=LB4FJRsu2cssnPw6X8bCEcaGpQsXhkLkgeU37w1t9fU,2250
|
243
|
+
arpakitlib/ar_run_cmd_util.py,sha256=D_rPavKMmWkQtwvZFz-Io5Ak8eSODHkcFeLPzNVC68g,1072
|
244
|
+
arpakitlib/ar_schedule_uust_api_client_util.py,sha256=rXI2_3OTaIBgR-GixM1Ti-Ue1f9nOcO3EUpYRqdGpYM,6973
|
245
|
+
arpakitlib/ar_settings_util.py,sha256=Y5wi_cmsjDjfJpM0VJHjbo0NoVPKfypKaD1USowwDtQ,1327
|
246
|
+
arpakitlib/ar_sleep_util.py,sha256=OaLtRaJQWMkGjfj_mW1RB2P4RaSWsAIH8LUoXqsH0zM,1061
|
247
|
+
arpakitlib/ar_sqladmin_util.py,sha256=Jd33EX_fAso4bvrcDhNEYOUlUHkudbadNGOJDg7rqhQ,301
|
248
|
+
arpakitlib/ar_sqlalchemy_util.py,sha256=o9LwEE_DfNr1mD5wzJ4X2ciUPzFo95wwSGdqggs29FM,9247
|
249
|
+
arpakitlib/ar_ssh_runner_util.py,sha256=e9deuUdBW7Eh0Exx2nTBhk57SaOZYaJaSjNk8q6dbJk,6804
|
250
|
+
arpakitlib/ar_steam_payment_api_client_util.py,sha256=onvb3jt9bWfsCLbVLaApbN_-cqCu1CduVhM9GhG5yTA,250
|
251
|
+
arpakitlib/ar_str_util.py,sha256=yU5gOwNXUQaH5b_tM5t6fXUn9oUcv5EQbVnq2wXXIpQ,3378
|
252
|
+
arpakitlib/ar_type_util.py,sha256=Cs_tef-Fc5xeyAF54KgISCsP11NHyzIsglm4S3Xx7iM,4049
|
253
|
+
arpakitlib/ar_wata_api_client.py,sha256=gdHOqDbuqxhTjVDtRW1DvkRJLdDofCrOq51GTctzLns,242
|
254
|
+
arpakitlib/ar_yookassa_api_client_util.py,sha256=VozuZeCJjmLd1zj2BdC9WfiAQ3XYOrIMsdpNK-AUlm0,5347
|
255
|
+
arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
|
256
|
+
arpakitlib-1.8.6.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
257
|
+
arpakitlib-1.8.6.dist-info/METADATA,sha256=RDlB4LttqdfIweMslJ6iItD4A1dlQLrJVE5rydOoPh4,3316
|
258
|
+
arpakitlib-1.8.6.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
259
|
+
arpakitlib-1.8.6.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
|
260
|
+
arpakitlib-1.8.6.dist-info/RECORD,,
|
@@ -1,24 +0,0 @@
|
|
1
|
-
import fastapi.requests
|
2
|
-
from fastapi import APIRouter
|
3
|
-
|
4
|
-
from api.const import APIErrorCodes, APIErrorSpecificationCodes
|
5
|
-
from api.schema.common.out import ErrorCommonSO, ErrorsInfoCommonSO
|
6
|
-
|
7
|
-
api_router = APIRouter()
|
8
|
-
|
9
|
-
|
10
|
-
@api_router.get(
|
11
|
-
"",
|
12
|
-
name="Get errors info",
|
13
|
-
status_code=fastapi.status.HTTP_200_OK,
|
14
|
-
response_model=ErrorsInfoCommonSO | ErrorCommonSO,
|
15
|
-
)
|
16
|
-
async def _(
|
17
|
-
*,
|
18
|
-
request: fastapi.requests.Request,
|
19
|
-
response: fastapi.responses.Response,
|
20
|
-
):
|
21
|
-
return ErrorsInfoCommonSO(
|
22
|
-
api_error_codes=APIErrorCodes.values_list(),
|
23
|
-
api_error_specification_codes=APIErrorSpecificationCodes.values_list()
|
24
|
-
)
|
@@ -1,13 +0,0 @@
|
|
1
|
-
from business_service.remove_operations import remove_operations
|
2
|
-
from core.settings import get_cached_settings
|
3
|
-
from core.util import setup_logging
|
4
|
-
|
5
|
-
|
6
|
-
def __command():
|
7
|
-
setup_logging()
|
8
|
-
get_cached_settings().raise_if_mode_type_prod()
|
9
|
-
remove_operations()
|
10
|
-
|
11
|
-
|
12
|
-
if __name__ == '__main__':
|
13
|
-
__command()
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import asyncio
|
2
|
-
|
3
|
-
from core.util import setup_logging
|
4
|
-
from operation_execution.operation_executor_worker import create_operation_executor_worker
|
5
|
-
|
6
|
-
|
7
|
-
def __command():
|
8
|
-
setup_logging()
|
9
|
-
worker = create_operation_executor_worker()
|
10
|
-
asyncio.run(worker.async_safe_run())
|
11
|
-
|
12
|
-
|
13
|
-
if __name__ == '__main__':
|
14
|
-
__command()
|
arpakitlib/_arpakit_project_template_v_1/command/start_async_scheduled_operation_creator_worker.py
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
import asyncio
|
2
|
-
|
3
|
-
from core.util import setup_logging
|
4
|
-
from operation_execution.scheduled_operation_creator_worker import create_scheduled_operation_creator_worker
|
5
|
-
|
6
|
-
|
7
|
-
async def __command():
|
8
|
-
setup_logging()
|
9
|
-
worker = create_scheduled_operation_creator_worker()
|
10
|
-
await worker.async_safe_run()
|
11
|
-
|
12
|
-
|
13
|
-
if __name__ == '__main__':
|
14
|
-
asyncio.run(__command())
|
@@ -1,15 +0,0 @@
|
|
1
|
-
from core.util import setup_logging
|
2
|
-
from operation_execution.operation_executor_worker import OperationExecutorWorker
|
3
|
-
from sqlalchemy_db.sqlalchemy_db import get_cached_sqlalchemy_db
|
4
|
-
|
5
|
-
|
6
|
-
def __command():
|
7
|
-
setup_logging()
|
8
|
-
worker = OperationExecutorWorker(
|
9
|
-
sqlalchemy_db=get_cached_sqlalchemy_db(),
|
10
|
-
)
|
11
|
-
worker.sync_safe_run()
|
12
|
-
|
13
|
-
|
14
|
-
if __name__ == '__main__':
|
15
|
-
__command()
|
File without changes
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,51 +0,0 @@
|
|
1
|
-
import logging
|
2
|
-
from typing import Callable
|
3
|
-
|
4
|
-
from aiogram import Dispatcher
|
5
|
-
|
6
|
-
from tg_bot.transmitted_tg_data import get_cached_transmitted_tg_bot_data
|
7
|
-
|
8
|
-
_logger = logging.getLogger(__name__)
|
9
|
-
|
10
|
-
|
11
|
-
async def on_startup():
|
12
|
-
_logger.info("start")
|
13
|
-
|
14
|
-
if get_cached_transmitted_tg_bot_data().media_file_storage_in_dir is not None:
|
15
|
-
get_cached_transmitted_tg_bot_data().media_file_storage_in_dir.init()
|
16
|
-
|
17
|
-
if get_cached_transmitted_tg_bot_data().cache_file_storage_in_dir is not None:
|
18
|
-
get_cached_transmitted_tg_bot_data().cache_file_storage_in_dir.init()
|
19
|
-
|
20
|
-
if get_cached_transmitted_tg_bot_data().dump_file_storage_in_dir is not None:
|
21
|
-
get_cached_transmitted_tg_bot_data().dump_file_storage_in_dir.init()
|
22
|
-
|
23
|
-
if get_cached_transmitted_tg_bot_data().settings.api_init_sqlalchemy_db:
|
24
|
-
get_cached_transmitted_tg_bot_data().sqlalchemy_db.init()
|
25
|
-
|
26
|
-
if get_cached_transmitted_tg_bot_data().settings.api_init_json_db:
|
27
|
-
get_cached_transmitted_tg_bot_data().json_db.init()
|
28
|
-
|
29
|
-
_logger.info("finish")
|
30
|
-
|
31
|
-
|
32
|
-
async def on_shutdown(*args, **kwargs):
|
33
|
-
_logger.info("start")
|
34
|
-
_logger.info("finish")
|
35
|
-
|
36
|
-
|
37
|
-
def get_tg_bot_startup_events() -> list[Callable]:
|
38
|
-
res = [on_startup]
|
39
|
-
return res
|
40
|
-
|
41
|
-
|
42
|
-
def get_tg_bot_shutdown_events() -> list[Callable]:
|
43
|
-
res = [on_shutdown]
|
44
|
-
return res
|
45
|
-
|
46
|
-
|
47
|
-
def add_events_to_tg_bot_dispatcher(*, tg_bot_dispatcher: Dispatcher):
|
48
|
-
for tg_bot_event in get_tg_bot_startup_events():
|
49
|
-
tg_bot_dispatcher.startup.register(tg_bot_event)
|
50
|
-
for tg_bot_event in get_tg_bot_shutdown_events():
|
51
|
-
tg_bot_dispatcher.shutdown.register(tg_bot_event)
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import aiogram
|
2
|
-
|
3
|
-
from tg_bot.middleware.init_user import InitUserTgBotMiddleware
|
4
|
-
|
5
|
-
|
6
|
-
def register_tg_bot_middleware(
|
7
|
-
*,
|
8
|
-
tg_bot_dp: aiogram.Dispatcher,
|
9
|
-
**kwargs
|
10
|
-
) -> aiogram.Dispatcher:
|
11
|
-
tg_bot_dp.update.outer_middleware.register(InitUserTgBotMiddleware())
|
12
|
-
return tg_bot_dp
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import aiogram.filters
|
2
|
-
|
3
|
-
from tg_bot.const import TgBotCommands
|
4
|
-
|
5
|
-
tg_bot_router = aiogram.Router()
|
6
|
-
|
7
|
-
|
8
|
-
@tg_bot_router.message(aiogram.filters.Command(TgBotCommands.arpakitlib))
|
9
|
-
async def _(m: aiogram.types.Message, **kwargs):
|
10
|
-
await m.answer(text="arpakitlib")
|
@@ -1,14 +0,0 @@
|
|
1
|
-
from aiogram import Router
|
2
|
-
|
3
|
-
from tg_bot.router import error
|
4
|
-
from tg_bot.router import healthcheck
|
5
|
-
|
6
|
-
main_tg_bot_router = Router()
|
7
|
-
|
8
|
-
# Healthcheck
|
9
|
-
|
10
|
-
main_tg_bot_router.include_router(router=healthcheck.tg_bot_router)
|
11
|
-
|
12
|
-
# Error
|
13
|
-
|
14
|
-
main_tg_bot_router.include_router(router=error.tg_bot_router)
|
@@ -1,34 +0,0 @@
|
|
1
|
-
from arpakitlib.ar_aiogram_util import start_aiogram_tg_bot_with_webhook
|
2
|
-
from core.util import setup_logging
|
3
|
-
from tg_bot.event import add_events_to_tg_bot_dispatcher
|
4
|
-
from tg_bot.tg_bot import create_tg_bot
|
5
|
-
from tg_bot.tg_bot_dispatcher import create_tg_bot_dispatcher
|
6
|
-
from tg_bot.transmitted_tg_data import get_cached_transmitted_tg_bot_data
|
7
|
-
|
8
|
-
|
9
|
-
def start_tg_bot():
|
10
|
-
setup_logging()
|
11
|
-
|
12
|
-
transmitted_tg_bot_data = get_cached_transmitted_tg_bot_data()
|
13
|
-
|
14
|
-
tg_bot = create_tg_bot()
|
15
|
-
|
16
|
-
tg_bot_dispatcher = create_tg_bot_dispatcher()
|
17
|
-
|
18
|
-
add_events_to_tg_bot_dispatcher(tg_bot_dispatcher=tg_bot_dispatcher)
|
19
|
-
|
20
|
-
if transmitted_tg_bot_data.settings.tg_bot_webhook_enabled:
|
21
|
-
tg_bot_dispatcher.start_polling(tg_bot)
|
22
|
-
else:
|
23
|
-
start_aiogram_tg_bot_with_webhook(
|
24
|
-
dispatcher=tg_bot_dispatcher,
|
25
|
-
bot=tg_bot,
|
26
|
-
webhook_secret=transmitted_tg_bot_data.settings.tg_bot_webhook_secret,
|
27
|
-
webhook_path=transmitted_tg_bot_data.settings.tg_bot_webhook_path,
|
28
|
-
webhook_server_hostname=transmitted_tg_bot_data.settings.tg_bot_webhook_server_hostname,
|
29
|
-
webhook_server_port=transmitted_tg_bot_data.settings.tg_bot_webhook_server_port
|
30
|
-
)
|
31
|
-
|
32
|
-
|
33
|
-
if __name__ == '__main__':
|
34
|
-
start_tg_bot()
|