arpakitlib 1.8.4__py3-none-any.whl → 1.8.5__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.
Files changed (71) hide show
  1. arpakitlib/_arpakit_project_template_v_1/alembic/env.py +1 -1
  2. arpakitlib/_arpakit_project_template_v_1/api/auth.py +31 -2
  3. arpakitlib/_arpakit_project_template_v_1/api/event.py +1 -1
  4. arpakitlib/_arpakit_project_template_v_1/api/exception_handler.py +2 -2
  5. arpakitlib/_arpakit_project_template_v_1/api/router/main_router.py +0 -3
  6. arpakitlib/_arpakit_project_template_v_1/api/router/v1/clear_log_file.py +4 -5
  7. arpakitlib/_arpakit_project_template_v_1/api/router/v1/get_errors_info.py +10 -1
  8. arpakitlib/_arpakit_project_template_v_1/api/router/v1/get_log_file.py +4 -5
  9. arpakitlib/_arpakit_project_template_v_1/api/router/v1/main_router.py +12 -20
  10. arpakitlib/_arpakit_project_template_v_1/api/router/v1/raise_fake_error.py +4 -5
  11. arpakitlib/_arpakit_project_template_v_1/api/router/v1/reinit_sqlalchemy_db.py +33 -0
  12. arpakitlib/_arpakit_project_template_v_1/api/schema/v1/out.py +1 -1
  13. arpakitlib/_arpakit_project_template_v_1/business_service/remove_operations.py +2 -2
  14. arpakitlib/_arpakit_project_template_v_1/command/check_sqlalchemy_db.py +1 -1
  15. arpakitlib/_arpakit_project_template_v_1/command/drop_sqlalchemy_db.py +2 -1
  16. arpakitlib/_arpakit_project_template_v_1/command/init_sqlalchemy_db.py +1 -1
  17. arpakitlib/_arpakit_project_template_v_1/command/reinit_sqlalchemy_db.py +1 -1
  18. arpakitlib/_arpakit_project_template_v_1/command/remove_story_logs.py +2 -2
  19. arpakitlib/_arpakit_project_template_v_1/command/start_api_for_prod.py +19 -0
  20. arpakitlib/_arpakit_project_template_v_1/command/{start_sync_operation_executor_worker.py → start_operation_executor_worker_for_not_prod.py} +1 -1
  21. arpakitlib/_arpakit_project_template_v_1/command/{start_sync_operation_executor_workers.py → start_operation_executor_workers_for_not_prod.py} +1 -1
  22. arpakitlib/_arpakit_project_template_v_1/command/start_tg_bot_for_prod.py +11 -0
  23. arpakitlib/_arpakit_project_template_v_1/core/const.py +3 -1
  24. arpakitlib/_arpakit_project_template_v_1/core/settings.py +2 -2
  25. arpakitlib/_arpakit_project_template_v_1/more/helloworld +1 -0
  26. arpakitlib/_arpakit_project_template_v_1/operation_execution/operation_executor_worker.py +2 -2
  27. arpakitlib/_arpakit_project_template_v_1/operation_execution/scheduled_operation_creator_worker.py +2 -2
  28. arpakitlib/_arpakit_project_template_v_1/operation_execution/scheduled_operations.py +1 -1
  29. arpakitlib/_arpakit_project_template_v_1/sqladmin_/add_admin_in_app.py +1 -1
  30. arpakitlib/_arpakit_project_template_v_1/sqladmin_/model_view.py +1 -1
  31. arpakitlib/_arpakit_project_template_v_1/{sqlalchemy_db → sqlalchemy_db_}/sqlalchemy_db.py +1 -1
  32. arpakitlib/_arpakit_project_template_v_1/{sqlalchemy_db → sqlalchemy_db_}/sqlalchemy_model.py +1 -1
  33. arpakitlib/_arpakit_project_template_v_1/tg_bot/blank/blank.py +20 -1
  34. arpakitlib/_arpakit_project_template_v_1/tg_bot/const.py +1 -1
  35. arpakitlib/_arpakit_project_template_v_1/tg_bot/event.py +41 -15
  36. arpakitlib/_arpakit_project_template_v_1/tg_bot/filter_.py +69 -0
  37. arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/callback.py +37 -0
  38. arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/common.py +15 -0
  39. arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/static_/common.py +14 -0
  40. arpakitlib/_arpakit_project_template_v_1/tg_bot/middleware/init_user.py +0 -3
  41. arpakitlib/_arpakit_project_template_v_1/tg_bot/middleware/middleware.py +4 -4
  42. arpakitlib/_arpakit_project_template_v_1/tg_bot/router/arpakitlib_project_template_info.py +14 -0
  43. arpakitlib/_arpakit_project_template_v_1/tg_bot/router/error.py +0 -3
  44. arpakitlib/_arpakit_project_template_v_1/tg_bot/router/healthcheck.py +2 -1
  45. arpakitlib/_arpakit_project_template_v_1/tg_bot/router/main_router.py +7 -3
  46. arpakitlib/_arpakit_project_template_v_1/tg_bot/start_tg_bot.py +19 -14
  47. arpakitlib/_arpakit_project_template_v_1/tg_bot/tg_bot_dispatcher.py +3 -2
  48. arpakitlib/_arpakit_project_template_v_1/util/read_arpakitlib_project_template_file.py +1 -1
  49. arpakitlib/ar_aiogram_util.py +3 -123
  50. {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.5.dist-info}/METADATA +1 -1
  51. {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.5.dist-info}/RECORD +63 -65
  52. arpakitlib/_arpakit_project_template_v_1/command/start_async_operation_executor_worker.py +0 -14
  53. arpakitlib/_arpakit_project_template_v_1/command/start_async_scheduled_operation_creator_worker.py +0 -14
  54. arpakitlib/_arpakit_project_template_v_1/tg_bot/blank/util.py +0 -12
  55. arpakitlib/_arpakit_project_template_v_1/tg_bot/filter/__init__.py +0 -0
  56. arpakitlib/_arpakit_project_template_v_1/tg_bot/filter/not_prod_mode.py +0 -8
  57. arpakitlib/_arpakit_project_template_v_1/tg_bot/filter/prod_mode.py +0 -8
  58. arpakitlib/_arpakit_project_template_v_1/tg_bot/router/arpakitlib_.py +0 -10
  59. arpakitlib/_arpakit_project_template_v_1/tg_bot/transmitted_tg_data.py +0 -58
  60. /arpakitlib/_arpakit_project_template_v_1/api/router/v1/{arpakitlib_project_template.py → arpakitlib_project_template_info.py} +0 -0
  61. /arpakitlib/_arpakit_project_template_v_1/{arpakitlib_project_template.json → arpakitlib_project_template_info.json} +0 -0
  62. /arpakitlib/_arpakit_project_template_v_1/command/{alembic_upgrade_head .sh → alembic_upgrade_head.sh} +0 -0
  63. /arpakitlib/_arpakit_project_template_v_1/command/{start_api_with_reload.py → start_api_with_reload_for_not_prod.py} +0 -0
  64. /arpakitlib/_arpakit_project_template_v_1/command/{start_api_without_reload.py → start_api_without_reload_for_not_prod.py} +0 -0
  65. /arpakitlib/_arpakit_project_template_v_1/command/{start_sync_scheduled_operation_creator_worker.py → start_scheduled_operation_creator_worker_for_not_prod.py} +0 -0
  66. /arpakitlib/_arpakit_project_template_v_1/{sqlalchemy_db → sqlalchemy_db_}/__init__.py +0 -0
  67. /arpakitlib/_arpakit_project_template_v_1/{sqlalchemy_db → sqlalchemy_db_}/const.py +0 -0
  68. /arpakitlib/_arpakit_project_template_v_1/{sqlalchemy_db → sqlalchemy_db_}/util.py +0 -0
  69. {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.5.dist-info}/LICENSE +0 -0
  70. {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.5.dist-info}/WHEEL +0 -0
  71. {arpakitlib-1.8.4.dist-info → arpakitlib-1.8.5.dist-info}/entry_points.txt +0 -0
@@ -6,31 +6,32 @@ arpakitlib/_arpakit_project_template_v_1/README.md,sha256=lfNQ7-IGnGZevzEnvOz8C9
6
6
  arpakitlib/_arpakit_project_template_v_1/additional_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  arpakitlib/_arpakit_project_template_v_1/additional_model/additional_model.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
8
8
  arpakitlib/_arpakit_project_template_v_1/alembic/README,sha256=MVlc9TYmr57RbhXET6QxgyCcwWP7w-vLkEsirENqiIQ,38
9
- arpakitlib/_arpakit_project_template_v_1/alembic/env.py,sha256=KfEFfq_n1OB03boIi-hTwAGNcZxTamyoFnIqJ6Ybj3w,2448
9
+ arpakitlib/_arpakit_project_template_v_1/alembic/env.py,sha256=SfTVV-rmVEH9GTccYPiS9rsTTS_orfNfgl6pGeJTD1c,2449
10
10
  arpakitlib/_arpakit_project_template_v_1/alembic/script.py.mako,sha256=MEqL-2qATlST9TAOeYgscMn1uy6HUS9NFvDgl93dMj8,635
11
11
  arpakitlib/_arpakit_project_template_v_1/alembic.ini,sha256=8fuyeEvGBiPGbxEFy8ISBV3xX_fgVmuhEGpB10_B5Uo,3733
12
12
  arpakitlib/_arpakit_project_template_v_1/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  arpakitlib/_arpakit_project_template_v_1/api/asgi.py,sha256=Ega7OCnOR-DBMlIa2cCkNKeYxn_kdGyye3JWxL0ESVs,70
14
- arpakitlib/_arpakit_project_template_v_1/api/auth.py,sha256=KrhXxRWzjp2FYwGt_HjszG2Ko0Zh_OA81uP9VzbIsnA,9528
14
+ arpakitlib/_arpakit_project_template_v_1/api/auth.py,sha256=aZQmRe100exnn9an31JLp-ou6_YeCPhBqDvewBKX5iA,10795
15
15
  arpakitlib/_arpakit_project_template_v_1/api/const.py,sha256=J9bqaRRiIc3RLn6SJTvdfDvFrSsM_Ixii9t2M8dA5Jc,433
16
16
  arpakitlib/_arpakit_project_template_v_1/api/create_api_app.py,sha256=RKPtT1VAUcIVoB-j1VIJZRq48BXJTK0W6QHyz8MGHmA,2204
17
- arpakitlib/_arpakit_project_template_v_1/api/event.py,sha256=VsYL8-ZouheWAV18fuEtj06WXcgATKGqQLMxN-yo04U,2349
17
+ arpakitlib/_arpakit_project_template_v_1/api/event.py,sha256=CObO41fugluo0y-JFGLcqmBRCXp76n2LZgHYo9lBmLM,2350
18
18
  arpakitlib/_arpakit_project_template_v_1/api/exception.py,sha256=Oe8TbtQu14AuG0fuXC0PbomoHVvMUbY7xQ9LNJ3Gs0A,1258
19
- arpakitlib/_arpakit_project_template_v_1/api/exception_handler.py,sha256=QNxvltcAzA5y-6Q0IFtFD8yU7hvcB4VL6KuP7763jLY,11823
19
+ arpakitlib/_arpakit_project_template_v_1/api/exception_handler.py,sha256=NO-Sng3m95skpvV6kewWwL1bM0ok76UFtiu1wTSnp4U,11825
20
20
  arpakitlib/_arpakit_project_template_v_1/api/openapi_ui.py,sha256=_56-dxdVhL8uMPpG4u1hccCIvLCSYL9qieC5qCTXvbE,900
21
21
  arpakitlib/_arpakit_project_template_v_1/api/response.py,sha256=sN09yKNnEPawHnXhdJtDnctIA6SuSVOEnRGsy53g7rg,1060
22
22
  arpakitlib/_arpakit_project_template_v_1/api/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- arpakitlib/_arpakit_project_template_v_1/api/router/main_router.py,sha256=gsrQSWsecqE-gDyB8X3Gck4pu5JIH70Y5YgE8Xxe2mU,221
23
+ arpakitlib/_arpakit_project_template_v_1/api/router/main_router.py,sha256=M_o3ItjBTkoPF1hALqLik4QNY1-mb84pQFNUgbeGSYU,203
24
24
  arpakitlib/_arpakit_project_template_v_1/api/router/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- arpakitlib/_arpakit_project_template_v_1/api/router/v1/arpakitlib_project_template.py,sha256=ATHsMWl3UYZvoPecQFqY26E9pZN_JvxY8FmMTJ3iRBU,664
25
+ arpakitlib/_arpakit_project_template_v_1/api/router/v1/arpakitlib_project_template_info.py,sha256=ATHsMWl3UYZvoPecQFqY26E9pZN_JvxY8FmMTJ3iRBU,664
26
26
  arpakitlib/_arpakit_project_template_v_1/api/router/v1/check_auth.py,sha256=-8venYRCA9ReAiEwUhINDn0a0zzmAEFqGsMq3rOv34o,1051
27
- arpakitlib/_arpakit_project_template_v_1/api/router/v1/clear_log_file.py,sha256=Y_37hJJAVgEU6jXF4DqxyLgA6aFl8hqDwowhP7u5rz4,1303
28
- arpakitlib/_arpakit_project_template_v_1/api/router/v1/get_errors_info.py,sha256=zBdwWNe5l44cP58wIKSsuLiITHJeR90vkMZfpMRxXDE,654
29
- arpakitlib/_arpakit_project_template_v_1/api/router/v1/get_log_file.py,sha256=p8mjwsM3RA6oGoOzWkQvafA-MFteAEsq3P2lqAEz96E,1169
27
+ arpakitlib/_arpakit_project_template_v_1/api/router/v1/clear_log_file.py,sha256=dsdYT4sm2_zZPEh1Upf3g_GpP92tfIH5nTHO5649JQc,1197
28
+ arpakitlib/_arpakit_project_template_v_1/api/router/v1/get_errors_info.py,sha256=TxVsyyFyVmoZXetmXRVPd69QqrNyLZEWGRGlZee9_OA,1120
29
+ arpakitlib/_arpakit_project_template_v_1/api/router/v1/get_log_file.py,sha256=jYK0gcOjYYjGQEGbzn_rMZFrmAlApMxSrwriFfls3Gs,1063
30
30
  arpakitlib/_arpakit_project_template_v_1/api/router/v1/healthcheck.py,sha256=NbbTNG1ZXU1Vp4NZ2uNln3504w1Fq5oYZgZKj1k_TkQ,470
31
- arpakitlib/_arpakit_project_template_v_1/api/router/v1/main_router.py,sha256=sEv_8I44cfBQ2qjBbJ74g9o6Qi4zfPCWxDIe-9ds4zc,1417
31
+ arpakitlib/_arpakit_project_template_v_1/api/router/v1/main_router.py,sha256=SbQNCz_ZOA8j3FCQWO1M6pvwmhBAso63hfK1bc3KVMA,1508
32
32
  arpakitlib/_arpakit_project_template_v_1/api/router/v1/now_utc_datetime.py,sha256=wrGbDHdT4l8CsiwodUKnwDpNeHBI5PURJa-wduYcGw8,526
33
- arpakitlib/_arpakit_project_template_v_1/api/router/v1/raise_fake_error.py,sha256=My-GAWtREWw8CH_1D0qWHlzJHM_Tf0uefEjVjNYWpfA,1488
33
+ arpakitlib/_arpakit_project_template_v_1/api/router/v1/raise_fake_error.py,sha256=ijAQgzHT7xNtzAI2Ha7-jhDSm71Bd8KCFtKQuYgjdqk,1382
34
+ arpakitlib/_arpakit_project_template_v_1/api/router/v1/reinit_sqlalchemy_db.py,sha256=AWmu-GOzh3u3TplrzdK5hqs1WNnI01KEgAEGwC2XZD0,1029
34
35
  arpakitlib/_arpakit_project_template_v_1/api/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
36
  arpakitlib/_arpakit_project_template_v_1/api/schema/base_schema.py,sha256=DX6Yz63JHoNlgmZnpss2PuRgEtBh3PPlxM6wImYLpXo,718
36
37
  arpakitlib/_arpakit_project_template_v_1/api/schema/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -38,27 +39,27 @@ arpakitlib/_arpakit_project_template_v_1/api/schema/common/in_.py,sha256=erYXm5K
38
39
  arpakitlib/_arpakit_project_template_v_1/api/schema/common/out.py,sha256=lIfk3Iy_fp9S6OcniqP7FRcBFmaxX8CPLEGa6JspULA,1427
39
40
  arpakitlib/_arpakit_project_template_v_1/api/schema/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
41
  arpakitlib/_arpakit_project_template_v_1/api/schema/v1/in_.py,sha256=E0BEx6G1G2eMM7uagPZkSIi3E6vmNWh12syqpxs0LD8,77
41
- arpakitlib/_arpakit_project_template_v_1/api/schema/v1/out.py,sha256=aAQgwAccYxsFV3EkBoieCmpKJGf0oKSutP4twd1OSUA,1207
42
+ arpakitlib/_arpakit_project_template_v_1/api/schema/v1/out.py,sha256=XSVKwiLEuvBxwfhFgb55WNOhznsEixiR_7BGWZwEgbI,1208
42
43
  arpakitlib/_arpakit_project_template_v_1/api/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- arpakitlib/_arpakit_project_template_v_1/arpakitlib_project_template.json,sha256=2sMZhjY1rxF3jwA5UhRAsMnrwPOsyEaflYvHOanhVXU,48
44
+ arpakitlib/_arpakit_project_template_v_1/arpakitlib_project_template_info.json,sha256=2sMZhjY1rxF3jwA5UhRAsMnrwPOsyEaflYvHOanhVXU,48
44
45
  arpakitlib/_arpakit_project_template_v_1/business_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
46
  arpakitlib/_arpakit_project_template_v_1/business_service/hello_world.py,sha256=JI5355SMuEtzLtsv00OKuJ-CxzH0dSDlpRkhPL6oiaM,243
46
- arpakitlib/_arpakit_project_template_v_1/business_service/remove_operations.py,sha256=Ulvj2UcKcHWgS7E3DlrWXVpCOTLxeM-PGdwpRmUIdZQ,1762
47
+ arpakitlib/_arpakit_project_template_v_1/business_service/remove_operations.py,sha256=UScPtvKHtaFNZ6sWonb1C_wFkXK7eEurt6gaxhMi13s,1764
47
48
  arpakitlib/_arpakit_project_template_v_1/celery_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
49
  arpakitlib/_arpakit_project_template_v_1/command/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
50
  arpakitlib/_arpakit_project_template_v_1/command/alembic_history.sh,sha256=OMnDNtHIksGh9iavWnzbtxcudZW4vjdcISsBXvzZSPw,22
50
51
  arpakitlib/_arpakit_project_template_v_1/command/alembic_revision_autogenerate.sh,sha256=eWjXWMZ86mVu7RFCiKJm6jYjB4BelVJsmnAn50WIrLU,54
51
- arpakitlib/_arpakit_project_template_v_1/command/alembic_upgrade_head .sh,sha256=RIkhv5e5ERZHoxmTvvo_nCeDeVqeVIam7CjVoE9_E4k,38
52
+ arpakitlib/_arpakit_project_template_v_1/command/alembic_upgrade_head.sh,sha256=RIkhv5e5ERZHoxmTvvo_nCeDeVqeVIam7CjVoE9_E4k,38
52
53
  arpakitlib/_arpakit_project_template_v_1/command/beautify_json.py,sha256=JoJwN-GdI3HK_lTho043iNjLci2YrbdteeKB8gjwSL4,227
53
54
  arpakitlib/_arpakit_project_template_v_1/command/check_logging.py,sha256=Byjh3Hn_aMKLL2D90M7tUCcUoj3zbZQiG5Sy_yV1F3I,211
54
- arpakitlib/_arpakit_project_template_v_1/command/check_sqlalchemy_db.py,sha256=_CFNp2IAocCGemNmVJfNtbknl712F1f9gcFY0iofqxg,229
55
+ arpakitlib/_arpakit_project_template_v_1/command/check_sqlalchemy_db.py,sha256=4E7B72_lrdbV98nyE-UILyBelJ5bC6H6lyix4PpyC6s,230
55
56
  arpakitlib/_arpakit_project_template_v_1/command/docker_ps_a.sh,sha256=nOQejihYlzstg9oROvYwHIsSLt2Sw0DWQEeT3GBaBNs,18
56
57
  arpakitlib/_arpakit_project_template_v_1/command/docker_rm_postgres.sh,sha256=uIO5b_AsHEiHL_rWxayUd3asGA2sVw9gozyLMtkLMkE,56
57
58
  arpakitlib/_arpakit_project_template_v_1/command/docker_run_postgres.sh,sha256=BOSv-n5RKcbk3OZ1X-7KaJrrh0LpFvRGaYjDvTnuvuU,328
58
59
  arpakitlib/_arpakit_project_template_v_1/command/docker_start_postgres.sh,sha256=gaSO3zH6og5qegkn-63_QmOZA-cXHbwddHmKpTfm0EU,56
59
60
  arpakitlib/_arpakit_project_template_v_1/command/docker_stop_postgres.sh,sha256=h2NeFBI0b9vZcf5fPhhxtepvAFhxl78Ct1wjfJWos24,55
60
61
  arpakitlib/_arpakit_project_template_v_1/command/drop_json_db.py,sha256=O4RWmGrJXupv_8Y16pfRtrKRXGL0G8kNNm3FgXulIj0,297
61
- arpakitlib/_arpakit_project_template_v_1/command/drop_sqlalchemy_db.py,sha256=g1SOIaVR5oQd1GYZ1pxRBsCduUzBJ-H_V1Wlocnqcks,373
62
+ arpakitlib/_arpakit_project_template_v_1/command/drop_sqlalchemy_db.py,sha256=0RvpecVUVBOFPGi5Cc3KjLtbktxvVRA5HQ2VzAapXco,427
62
63
  arpakitlib/_arpakit_project_template_v_1/command/generate_settings_env_example.py,sha256=6dJPTs8jBiFXTPUyLeYsjhkduBfhplYBXNZhw9_hymM,433
63
64
  arpakitlib/_arpakit_project_template_v_1/command/git_commit.sh,sha256=AW1NEel-ZHaYeVWFlRbgZSYPQdnVKsTkpR_07RQL1Mw,42
64
65
  arpakitlib/_arpakit_project_template_v_1/command/git_push_arpakit_company_github_1.sh,sha256=Sx-OegryHeNTIfAOoCfj3Z3CF-XKEY0AJF5HVJAgGpU,70
@@ -72,7 +73,7 @@ arpakitlib/_arpakit_project_template_v_1/command/git_set_divarteam_origin.sh,sha
72
73
  arpakitlib/_arpakit_project_template_v_1/command/git_status.sh,sha256=N9JGYX5_UfCdirw4EQYzu4sS7pMLGrF4-QrTSTcpUtA,16
73
74
  arpakitlib/_arpakit_project_template_v_1/command/hello_world.py,sha256=6aDbntxZ6e4Mbf2sQEb4uVazUDbJX7kEaSJn6SYwR6U,87
74
75
  arpakitlib/_arpakit_project_template_v_1/command/init_json_db.py,sha256=jz5aX-wnNjoI1mOHOQheiQZNTT3zfmEMzbxNAJWqFB8,199
75
- arpakitlib/_arpakit_project_template_v_1/command/init_sqlalchemy_db.py,sha256=SZxyLg9o8aAvzJkB3dANIDJiVMyApEWarPqgwuxXD9w,223
76
+ arpakitlib/_arpakit_project_template_v_1/command/init_sqlalchemy_db.py,sha256=DPPyfSL0Nc1IKBDVp6A2IvzCIOfgOgAd0PdzL0WFN1w,224
76
77
  arpakitlib/_arpakit_project_template_v_1/command/poetry_check.sh,sha256=mxkbFqw-mVlAkP_klLoXDANbIoKEu6Uj98tZ3pLKlpU,19
77
78
  arpakitlib/_arpakit_project_template_v_1/command/poetry_clear_cache.sh,sha256=5NmoMsA377JCeTMLERzE2GZywgi8mXQDTQ_yhIJtR8k,139
78
79
  arpakitlib/_arpakit_project_template_v_1/command/poetry_config.sh,sha256=gIctNLSvRJmER_iU_HwPpHR83adZV12LoXcoWfY9M00,26
@@ -84,29 +85,30 @@ arpakitlib/_arpakit_project_template_v_1/command/poetry_show_arpakitlib.sh,sha25
84
85
  arpakitlib/_arpakit_project_template_v_1/command/poetry_update.sh,sha256=ZtoXIC4Qq7PMTDxQMwUxvkYC6lTc5LC23ILTywWbyoU,164
85
86
  arpakitlib/_arpakit_project_template_v_1/command/poetry_update_arpakitlib.sh,sha256=hh7vj-yKgKqLfaGb8cjsJ_NTa7fBtE4s3yxzte4D8bw,163
86
87
  arpakitlib/_arpakit_project_template_v_1/command/reinit_json_db.py,sha256=8PPAkThlMFVtDNu_YxS6auPUiDvfsGTMMfrpRGYVFmg,299
87
- arpakitlib/_arpakit_project_template_v_1/command/reinit_sqlalchemy_db.py,sha256=oLwBDfJVPUUK3snrZiyiI1kvFuYAgo2wHcxnGAbLPjM,323
88
+ arpakitlib/_arpakit_project_template_v_1/command/reinit_sqlalchemy_db.py,sha256=k2vpIkYFLXVFcSFthurHmBBgrOs3cKMaOMrJthgBUv0,324
88
89
  arpakitlib/_arpakit_project_template_v_1/command/remove_operations.py,sha256=SyxUQFWXBksBGsBlFclg7I420WsAezBrA3ayw-qgrMY,307
89
- arpakitlib/_arpakit_project_template_v_1/command/remove_story_logs.py,sha256=atsLb-8hFHoabHC8nDVoh9V2mfjcWQjsNXbKBz79v_Y,469
90
+ arpakitlib/_arpakit_project_template_v_1/command/remove_story_logs.py,sha256=yCdJahhEdVRE1Vn-Kn7lm4nT43pNbgAsnSvOXaqUI1Q,471
90
91
  arpakitlib/_arpakit_project_template_v_1/command/rm_all_records_in_json_db.py,sha256=nkeB4xSP2oc5cB-27q4aKOgA75Gy5KUqz4Oy9Geuy6o,307
91
92
  arpakitlib/_arpakit_project_template_v_1/command/show_settings.py,sha256=oYt-t58h-Ojc5jq7RpCmkc6yF_yJ6h6c_cT0B0EVUqU,268
92
- arpakitlib/_arpakit_project_template_v_1/command/start_api_with_reload.py,sha256=u5kQIW9qS18hp50VK_jPUGxKjmXWYJeX3Osdukj-Wjg,339
93
- arpakitlib/_arpakit_project_template_v_1/command/start_api_without_reload.py,sha256=BAWxg3G2sySwyyOU14Ifd55qhKlrCgH9tDAs9JVXpsM,340
94
- arpakitlib/_arpakit_project_template_v_1/command/start_async_operation_executor_worker.py,sha256=WiW9jygTV84rRT4ix0IywIugWmdhGk9ckCrnZukGe_o,316
95
- arpakitlib/_arpakit_project_template_v_1/command/start_async_scheduled_operation_creator_worker.py,sha256=JNZ38ce3BYvt9vjn1ZWEm18Fmp6yr3bQdlQxnjGeXbI,355
96
- arpakitlib/_arpakit_project_template_v_1/command/start_sync_operation_executor_worker.py,sha256=g5HX0k9KeBTGsleASnPCmYg0GJEoPq58sweYwJWBNfo,388
97
- arpakitlib/_arpakit_project_template_v_1/command/start_sync_operation_executor_workers.py,sha256=3TA2lg-zdFMeGfJybWR9CIMU6TByFijM651I87Uehz8,692
98
- arpakitlib/_arpakit_project_template_v_1/command/start_sync_scheduled_operation_creator_worker.py,sha256=henoJ7v21EwTswsNuGsEZYlRNzHDJf3gqC5HW0NTEo8,313
93
+ arpakitlib/_arpakit_project_template_v_1/command/start_api_for_prod.py,sha256=OgI1wTX94W-sKGVsOL5GUzMiOwV2nsJsrfzwWjVFOh8,344
94
+ arpakitlib/_arpakit_project_template_v_1/command/start_api_with_reload_for_not_prod.py,sha256=u5kQIW9qS18hp50VK_jPUGxKjmXWYJeX3Osdukj-Wjg,339
95
+ arpakitlib/_arpakit_project_template_v_1/command/start_api_without_reload_for_not_prod.py,sha256=BAWxg3G2sySwyyOU14Ifd55qhKlrCgH9tDAs9JVXpsM,340
96
+ arpakitlib/_arpakit_project_template_v_1/command/start_operation_executor_worker_for_not_prod.py,sha256=p-WWTH6bTIvdNN3c-yolKgud_l9I7FHKz4cW-sXa3q8,389
97
+ arpakitlib/_arpakit_project_template_v_1/command/start_operation_executor_workers_for_not_prod.py,sha256=TGGQnq_8mE5oo207A65-7PpG0sx5JkM7gIQWl-QryZ8,693
98
+ arpakitlib/_arpakit_project_template_v_1/command/start_scheduled_operation_creator_worker_for_not_prod.py,sha256=henoJ7v21EwTswsNuGsEZYlRNzHDJf3gqC5HW0NTEo8,313
99
+ arpakitlib/_arpakit_project_template_v_1/command/start_tg_bot_for_prod.py,sha256=2rsYiA5Ei4nmzqUxRaPE0A6vbZfpTF9Aw7sUz-K6BE0,184
99
100
  arpakitlib/_arpakit_project_template_v_1/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
101
  arpakitlib/_arpakit_project_template_v_1/core/cache_file_storage_in_dir.py,sha256=FQ47te4IsyakOFlgjBK-IZj50qOLjckCtr1aPgh-Uaw,615
101
- arpakitlib/_arpakit_project_template_v_1/core/const.py,sha256=24qaTQCjxfwkqitUslE-mU78U3jrLclrj_nxbZ7zwj0,859
102
+ arpakitlib/_arpakit_project_template_v_1/core/const.py,sha256=hzEEqpi_VnTjyZnfBa2Rjwjx-9SNoaqhrsc8VHGQeQA,883
102
103
  arpakitlib/_arpakit_project_template_v_1/core/dump_file_storage_in_dir.py,sha256=ZhmrMmppibYnFh5ZhnlO22whEBXkVkbkzg-QpVH1Ph8,609
103
104
  arpakitlib/_arpakit_project_template_v_1/core/jinja2_templates.py,sha256=YneQ2AQccv8GFaZ7uSh2q8IhR2fk7O3crZrK3uouktI,344
104
105
  arpakitlib/_arpakit_project_template_v_1/core/media_file_storage_in_dir.py,sha256=Q3Nx41qTsfswL1akg0Puh8raaKBDLc4UJxf27A5LmGg,615
105
- arpakitlib/_arpakit_project_template_v_1/core/settings.py,sha256=7o-YPbYI95G2L46-U2w30tr96IMfLjzdSAy7UG0JFEc,6245
106
+ arpakitlib/_arpakit_project_template_v_1/core/settings.py,sha256=gXKYpcnXuSvYYyO1w12T8dKVkD1XiAJlXVKGTQW-J40,6249
106
107
  arpakitlib/_arpakit_project_template_v_1/core/util.py,sha256=B7YOzCfI0OcjoLz8LkDxrnTn3wrsgsR5Cw4qNZ2hqx8,659
107
108
  arpakitlib/_arpakit_project_template_v_1/example.env,sha256=KAyUmiMLIHTo-q2um3kEvsD20Dz6mAX9gkLEqDXixzE,910
108
109
  arpakitlib/_arpakit_project_template_v_1/json_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
110
  arpakitlib/_arpakit_project_template_v_1/json_db/json_db.py,sha256=bVGUBmkE-nios4RE9tzSsqyoz-sjOtIgAE7tVxOKkzE,716
111
+ arpakitlib/_arpakit_project_template_v_1/more/helloworld,sha256=eH7Hbcr9IMGQjrCTahL5Ht0QWrXNfswrGuIDJkg0Xf8,11
110
112
  arpakitlib/_arpakit_project_template_v_1/note/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
113
  arpakitlib/_arpakit_project_template_v_1/note/note_1.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
114
  arpakitlib/_arpakit_project_template_v_1/note/note_2.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -115,9 +117,9 @@ arpakitlib/_arpakit_project_template_v_1/note/note_4.txt,sha256=47DEQpj8HBSa-_TI
115
117
  arpakitlib/_arpakit_project_template_v_1/note/note_5.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
118
  arpakitlib/_arpakit_project_template_v_1/operation_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
119
  arpakitlib/_arpakit_project_template_v_1/operation_execution/const.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
- arpakitlib/_arpakit_project_template_v_1/operation_execution/operation_executor_worker.py,sha256=WWqm0aJHsB__XM9rszfBX3ejPI92p1LBwFjdA1rkZgA,10794
119
- arpakitlib/_arpakit_project_template_v_1/operation_execution/scheduled_operation_creator_worker.py,sha256=KXKQYa6z6Glg7SdnUjQnewB9Wf1DS7eoxfOwNvk8Yh4,4113
120
- arpakitlib/_arpakit_project_template_v_1/operation_execution/scheduled_operations.py,sha256=poos5iAKbkMYkbUN_BFkUDCANTMFuYSugFg2NqBlFMo,1704
120
+ arpakitlib/_arpakit_project_template_v_1/operation_execution/operation_executor_worker.py,sha256=6P8efKptmHjN0xCWI0xLfv6ZghazXE_soPrpXboiaKI,10796
121
+ arpakitlib/_arpakit_project_template_v_1/operation_execution/scheduled_operation_creator_worker.py,sha256=SxAkWM221rIV8Yh8-BkRkyLv5-HmLWXkXO8JDM0_Sjo,4115
122
+ arpakitlib/_arpakit_project_template_v_1/operation_execution/scheduled_operations.py,sha256=Pui2hLxkIuBNnpz90v4sFy6EwT2DafepZvI5UYG-wsM,1705
121
123
  arpakitlib/_arpakit_project_template_v_1/operation_execution/util.py,sha256=nau1QnUh37CL6rfniwQ7rfQkh5Rf8qE01ruFdNv4H8k,785
122
124
  arpakitlib/_arpakit_project_template_v_1/resource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
125
  arpakitlib/_arpakit_project_template_v_1/resource/static/1,sha256=IIO7Wvjwlr2-LPSQ7Y8O35hcI6t0_s8zqITDxkYCO8I,11
@@ -160,14 +162,14 @@ arpakitlib/_arpakit_project_template_v_1/site/exception_handler.py,sha256=47DEQp
160
162
  arpakitlib/_arpakit_project_template_v_1/site/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
163
  arpakitlib/_arpakit_project_template_v_1/site/router/main_router.py,sha256=J5jNfgd-3OiWTtuubimEUz6wrOogupj9PkUdDmwz-2U,62
162
164
  arpakitlib/_arpakit_project_template_v_1/sqladmin_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
- arpakitlib/_arpakit_project_template_v_1/sqladmin_/add_admin_in_app.py,sha256=-U8Q5zUcpVvH87xKnxMjU6DMObsdTwFyb-MvhnA3BTE,726
165
+ arpakitlib/_arpakit_project_template_v_1/sqladmin_/add_admin_in_app.py,sha256=Zs8Iv3cGuNWtT6Ow0xBmR6xcfnaC6g_ENqDjBC5mJXA,727
164
166
  arpakitlib/_arpakit_project_template_v_1/sqladmin_/admin_auth.py,sha256=ulWhRzuRg2sj2WvGQ_4RY_a88hBx8EEl_VBisQlGQBo,1840
165
- arpakitlib/_arpakit_project_template_v_1/sqladmin_/model_view.py,sha256=eY8J1N5jppG-MGyK8m_Q8lr-l1vZpc3A-_-E160sWKA,2325
166
- arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
- arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db/const.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
168
- arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db/sqlalchemy_db.py,sha256=qNWs-fn5Tl3yaf7EFzduUzM_fOhRa9TFwnNtxMa2vaU,737
169
- arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db/sqlalchemy_model.py,sha256=cGuDLatu-OvoigldikI1JQCfziUt9pFrflZ1jiED4V8,4595
170
- arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db/util.py,sha256=rr-wYqK898FcLwg6Oa9j9lYfvBPs4ujKiY0rRTfwLqg,554
167
+ arpakitlib/_arpakit_project_template_v_1/sqladmin_/model_view.py,sha256=eOyqoxZimgNfSamQrd7cwAOnybzJUZYQJNrTTRKfBjc,2326
168
+ arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db_/const.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
170
+ arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db_/sqlalchemy_db.py,sha256=htrIOs0r3gKXSVVnGMkty2KsD_25HuAka8ayjLsHkt0,738
171
+ arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db_/sqlalchemy_model.py,sha256=hNVYCC7Bl_TLGMrZ5qYxhikxgOI2prdkDx4lx8Gb-AU,4596
172
+ arpakitlib/_arpakit_project_template_v_1/sqlalchemy_db_/util.py,sha256=rr-wYqK898FcLwg6Oa9j9lYfvBPs4ujKiY0rRTfwLqg,554
171
173
  arpakitlib/_arpakit_project_template_v_1/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
174
  arpakitlib/_arpakit_project_template_v_1/test_data/make_test_data_1.py,sha256=yRKf6HYZ2do2g7tAUB172nHA_u-yS9cyHhbinahc7sc,285
173
175
  arpakitlib/_arpakit_project_template_v_1/test_data/make_test_data_2.py,sha256=tBhhXKKlSUh_fEYoOvGRuBKUJxPentya1h_6lcd-hk0,285
@@ -176,36 +178,32 @@ arpakitlib/_arpakit_project_template_v_1/test_data/make_test_data_4.py,sha256=L6
176
178
  arpakitlib/_arpakit_project_template_v_1/test_data/make_test_data_5.py,sha256=TN-weOT2xpB0wBkdaJ1F7t8YD63MNN_bZINjPJOfV9g,285
177
179
  arpakitlib/_arpakit_project_template_v_1/tg_bot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
180
  arpakitlib/_arpakit_project_template_v_1/tg_bot/blank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
- arpakitlib/_arpakit_project_template_v_1/tg_bot/blank/blank.py,sha256=gUiYrmq-JSMO4BOAn4pQThtVPW1EENcD25UnJ3kKLxc,87
180
- arpakitlib/_arpakit_project_template_v_1/tg_bot/blank/util.py,sha256=LrA7v4QC5RkivGmMChDkwizebh6V7OX5QvIU9p4QMv0,243
181
- arpakitlib/_arpakit_project_template_v_1/tg_bot/const.py,sha256=X4N2N_5fLQtWHjMWfBtLxT0ZOwb7DLmrSBIfuZo9rX8,639
182
- arpakitlib/_arpakit_project_template_v_1/tg_bot/event.py,sha256=cUO77PUth2D_HYF-U0F_nctrNOfYRPjZrmkOuz8ObZQ,1603
183
- arpakitlib/_arpakit_project_template_v_1/tg_bot/filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
- arpakitlib/_arpakit_project_template_v_1/tg_bot/filter/not_prod_mode.py,sha256=19e016Mg_gyeJG-58Hyba3UfERCOiaiPMHfhi74rI5c,231
185
- arpakitlib/_arpakit_project_template_v_1/tg_bot/filter/prod_mode.py,sha256=qRnG5-bKogakLxYIzA4aw5IZnFSYuf67894Hz1ygkz0,224
181
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/blank/blank.py,sha256=PLXOQc-oz8BxR_Cqn2VKwy0rT7Jj8KSl76eXtgcwyXY,511
182
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/const.py,sha256=yd9QGqP_N8_4QXq41K1AXlMKhwXMhB2cFsxKZGjPrcs,683
183
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/event.py,sha256=dhCpgpldnYs7b0GREf1x7sW2ThgEBoPbS1Ua3d50mUg,2599
184
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/filter_.py,sha256=baOHFJG40fLuJQKcjRWwSquVaqoJPPu7ehqgRU1L7iU,2128
186
185
  arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
186
  arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
- arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/callback.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
- arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/common.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/callback.py,sha256=3zKMd5o9wDm3yOk8e7fUvjjH9KR0TI35dmxOXHYhdQ4,1009
188
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/inline_/common.py,sha256=Nk6QalDg2r9eFXmp-IYzVkluWjd_iTOy-txHRE6wYg4,447
190
189
  arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/static_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
- arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/static_/common.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/kb/static_/common.py,sha256=bbARqq0XSZpZODu9KP1RCxzM5Kkde8MEOdO0EsqOY9c,444
192
191
  arpakitlib/_arpakit_project_template_v_1/tg_bot/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
193
- arpakitlib/_arpakit_project_template_v_1/tg_bot/middleware/init_user.py,sha256=bZf8VYe-R-fcjyy8z55plPqIF3FiIRQcW84hVNbZq5E,703
194
- arpakitlib/_arpakit_project_template_v_1/tg_bot/middleware/middleware.py,sha256=PRs0Jgnmf6pPEgNkHL8umDO42jV0g7KcgVdkxpG8NfQ,301
192
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/middleware/init_user.py,sha256=3ArOPuysRD54n-vvdlqDWB2GRuOeU6yp0DKnOn02jYA,554
193
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/middleware/middleware.py,sha256=RHJqBtG4POfbfmzJdI2YTC5tB6j_9uuezkbrSTAL_gw,329
195
194
  arpakitlib/_arpakit_project_template_v_1/tg_bot/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
196
- arpakitlib/_arpakit_project_template_v_1/tg_bot/router/arpakitlib_.py,sha256=BKnZPhe8HByxrDyoRS8I-98JuSIDES4X4OGBMqrEeWs,260
197
- arpakitlib/_arpakit_project_template_v_1/tg_bot/router/error.py,sha256=H5A_SV9NggjKEoURDdBh-waLuoxVKpXj1qFmquUdIBs,292
198
- arpakitlib/_arpakit_project_template_v_1/tg_bot/router/healthcheck.py,sha256=M_znCjKO0mWt7zyn4BB1-tJ2CkckrUJRvr1RqmHEbHs,262
199
- arpakitlib/_arpakit_project_template_v_1/tg_bot/router/main_router.py,sha256=lHHJ84w-1Gn1A88eGJsfcG3JAHKpZkvzRi9BgEjz6Dc,285
200
- arpakitlib/_arpakit_project_template_v_1/tg_bot/start_tg_bot.py,sha256=yffNga4DpFJRI_-GgIpVwhIbc3cW-xSalUMS0TcMEvI,1253
195
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/router/arpakitlib_project_template_info.py,sha256=8z4Z6ZkibEc-HJWt_X4r2qZd5vEJEp4Mn5gBWvjb0-4,522
196
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/router/error.py,sha256=bRNz-1rRur53lJGMuOluUaq4KEas7P_RvRs3WLXdkug,176
197
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/router/healthcheck.py,sha256=l2lg1aLXzXmOusp7R3J_JZxDYUmo5bjLVWGawX6isBs,343
198
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/router/main_router.py,sha256=a_e4cQQ_k82tlcWBv-oo0GRalfiZJ04mZy2DvJgAkBI,437
199
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/start_tg_bot.py,sha256=S3mJyi0--PSnf1aqC4CTp6dLKQGTp850LmkSSEEuYwI,1213
201
200
  arpakitlib/_arpakit_project_template_v_1/tg_bot/tg_bot.py,sha256=5oiiEfsJUzmMx_we5BshngkGmXJf4yZDx0SYZ8aeVQE,726
202
- arpakitlib/_arpakit_project_template_v_1/tg_bot/tg_bot_dispatcher.py,sha256=weGcocVPI3MO48vfFwGmc-V9xCW90KQfBddkQM3u_b4,634
203
- arpakitlib/_arpakit_project_template_v_1/tg_bot/transmitted_tg_data.py,sha256=Ncxqsc0fm3VbYuEovo-mtf8JTwbtXp8s5M3AuEJbXjY,2172
201
+ arpakitlib/_arpakit_project_template_v_1/tg_bot/tg_bot_dispatcher.py,sha256=T_b1LIgYsrBePm2YoyUV6k8KWbUJLh68lSZPMpjN8aQ,636
204
202
  arpakitlib/_arpakit_project_template_v_1/tg_bot/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
203
  arpakitlib/_arpakit_project_template_v_1/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
- arpakitlib/_arpakit_project_template_v_1/util/read_arpakitlib_project_template_file.py,sha256=zGJDvO5N4AajrpsP1NCt7DsIjBFbodBjr80KB-_fYcM,385
204
+ arpakitlib/_arpakit_project_template_v_1/util/read_arpakitlib_project_template_file.py,sha256=Uy8_TMad9txILO9NnH-xTiGfX1atldomARmOp4JSlnI,390
207
205
  arpakitlib/ar_additional_model_util.py,sha256=GFg-glLCxH9X95R2bhTJsscVwv37FgE1qbaAAyXrnIE,917
208
- arpakitlib/ar_aiogram_util.py,sha256=gTCJhvfk2FktvdbQvWFHiRP1iWRIV53C6So4gDpaw9w,12054
206
+ arpakitlib/ar_aiogram_util.py,sha256=E2mwKy9cW3oq8o51OBfJwhiLnK4y5TgPRYSzwYgQG7Q,8596
209
207
  arpakitlib/ar_arpakit_lib_module_util.py,sha256=g9uWwTK2eEzmErqwYeVgXDYVMREN8m5CdmgEumAEQfw,5919
210
208
  arpakitlib/ar_arpakit_project_template_util.py,sha256=5-o6eTmh-2DqsIqmo63SXw7ttExhmuAehMNc4s0GdtU,3278
211
209
  arpakitlib/ar_arpakit_schedule_uust_api_client_util.py,sha256=_T_HeDCy2EwbYw0q5FnCJngU2fAZYMNd25gEtmagJN0,15813
@@ -255,8 +253,8 @@ arpakitlib/ar_type_util.py,sha256=Cs_tef-Fc5xeyAF54KgISCsP11NHyzIsglm4S3Xx7iM,40
255
253
  arpakitlib/ar_wata_api_client.py,sha256=gdHOqDbuqxhTjVDtRW1DvkRJLdDofCrOq51GTctzLns,242
256
254
  arpakitlib/ar_yookassa_api_client_util.py,sha256=VozuZeCJjmLd1zj2BdC9WfiAQ3XYOrIMsdpNK-AUlm0,5347
257
255
  arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
258
- arpakitlib-1.8.4.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
259
- arpakitlib-1.8.4.dist-info/METADATA,sha256=BPl7-lR9QUSbAsjnadKDbPMXfJBT-DcKDSsTalwjaCA,3316
260
- arpakitlib-1.8.4.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
261
- arpakitlib-1.8.4.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
262
- arpakitlib-1.8.4.dist-info/RECORD,,
256
+ arpakitlib-1.8.5.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
257
+ arpakitlib-1.8.5.dist-info/METADATA,sha256=oGXXJ2J9PdTWbZuPxfpx_Nk6EgzSDKqJDK1-LGDPmQ4,3316
258
+ arpakitlib-1.8.5.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
259
+ arpakitlib-1.8.5.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
260
+ arpakitlib-1.8.5.dist-info/RECORD,,
@@ -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()
@@ -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,12 +0,0 @@
1
- from functools import lru_cache
2
-
3
- from tg_bot.blank.blank import TgBotBlank
4
-
5
-
6
- def get_create_tg_bot_blank() -> TgBotBlank:
7
- return TgBotBlank()
8
-
9
-
10
- @lru_cache()
11
- def get_cached_tg_bot_blank() -> TgBotBlank:
12
- return get_create_tg_bot_blank()
@@ -1,8 +0,0 @@
1
- from aiogram.filters import Filter
2
-
3
- from core.settings import get_cached_settings
4
-
5
-
6
- class NotProdModeFilter(Filter):
7
- async def __call__(self, *args, **kwargs) -> bool:
8
- return get_cached_settings().is_mode_type_not_prod
@@ -1,8 +0,0 @@
1
- from aiogram.filters import Filter
2
-
3
- from core.settings import get_cached_settings
4
-
5
-
6
- class ProdModeFilter(Filter):
7
- async def __call__(self, *args, **kwargs) -> bool:
8
- return get_cached_settings().is_mode_type_prod
@@ -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,58 +0,0 @@
1
- from functools import lru_cache
2
-
3
- from pydantic import BaseModel
4
-
5
- from arpakitlib.ar_file_storage_in_dir_util import FileStorageInDir
6
- from arpakitlib.ar_json_db_util import BaseJSONDb
7
- from arpakitlib.ar_sqlalchemy_util import SQLAlchemyDb
8
- from core.cache_file_storage_in_dir import get_cached_cache_file_storage_in_dir
9
- from core.dump_file_storage_in_dir import get_cached_dump_file_storage_in_dir
10
- from core.media_file_storage_in_dir import get_cached_media_file_storage_in_dir
11
- from core.settings import Settings, get_cached_settings
12
- from json_db.json_db import get_cached_json_db
13
- from sqlalchemy_db.sqlalchemy_db import get_cached_sqlalchemy_db
14
-
15
-
16
- class TransmittedTgBotData(BaseModel):
17
- settings: Settings | None = None
18
- sqlalchemy_db: SQLAlchemyDb | None = None
19
- json_db: BaseJSONDb | None = None
20
- media_file_storage_in_dir: FileStorageInDir | None = None
21
- cache_file_storage_in_dir: FileStorageInDir | None = None
22
- dump_file_storage_in_dir: FileStorageInDir | None = None
23
-
24
-
25
- def create_transmitted_tg_bot_data() -> TransmittedTgBotData:
26
- settings = get_cached_settings()
27
-
28
- sqlalchemy_db = get_cached_sqlalchemy_db() if settings.sqlalchemy_sync_db_url is not None else None
29
-
30
- json_db = get_cached_json_db() if settings.json_db_dirpath is not None else None
31
-
32
- media_file_storage_in_dir = (
33
- get_cached_media_file_storage_in_dir() if settings.media_dirpath is not None else None
34
- )
35
-
36
- cache_file_storage_in_dir = (
37
- get_cached_cache_file_storage_in_dir() if settings.cache_dirpath is not None else None
38
- )
39
-
40
- dump_file_storage_in_dir = (
41
- get_cached_dump_file_storage_in_dir() if settings.dump_dirpath is not None else None
42
- )
43
-
44
- transmitted_api_data = TransmittedTgBotData(
45
- settings=settings,
46
- sqlalchemy_db=sqlalchemy_db,
47
- json_db=json_db,
48
- media_file_storage_in_dir=media_file_storage_in_dir,
49
- cache_file_storage_in_dir=cache_file_storage_in_dir,
50
- dump_file_storage_in_dir=dump_file_storage_in_dir,
51
- )
52
-
53
- return transmitted_api_data
54
-
55
-
56
- @lru_cache()
57
- def get_cached_transmitted_tg_bot_data() -> TransmittedTgBotData:
58
- return create_transmitted_tg_bot_data()