arpakitlib 1.7.133__py3-none-any.whl → 1.7.135__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/src/core/check_settings.py +2 -2
- arpakitlib/_arpakit_project_template/src/core/generate_settings_env_example.py +2 -2
- arpakitlib/_arpakit_project_template/src/db/check_conn_sqlalchemy_db.py +2 -2
- {arpakitlib-1.7.133.dist-info → arpakitlib-1.7.135.dist-info}/METADATA +1 -1
- {arpakitlib-1.7.133.dist-info → arpakitlib-1.7.135.dist-info}/RECORD +9 -10
- arpakitlib/_arpakit_project_template/manage/poetry_generate_requirements.txt.sh +0 -1
- {arpakitlib-1.7.133.dist-info → arpakitlib-1.7.135.dist-info}/LICENSE +0 -0
- {arpakitlib-1.7.133.dist-info → arpakitlib-1.7.135.dist-info}/NOTICE +0 -0
- {arpakitlib-1.7.133.dist-info → arpakitlib-1.7.135.dist-info}/WHEEL +0 -0
- {arpakitlib-1.7.133.dist-info → arpakitlib-1.7.135.dist-info}/entry_points.txt +0 -0
@@ -3,10 +3,10 @@ from src.core.settings import get_cached_settings
|
|
3
3
|
from src.core.util import setup_logging
|
4
4
|
|
5
5
|
|
6
|
-
def
|
6
|
+
def __check_settings():
|
7
7
|
setup_logging()
|
8
8
|
print(safely_transfer_obj_to_json_str(get_cached_settings().model_dump(mode="json")))
|
9
9
|
|
10
10
|
|
11
11
|
if __name__ == '__main__':
|
12
|
-
|
12
|
+
__check_settings()
|
@@ -6,11 +6,11 @@ from src.core.settings import Settings, get_cached_settings
|
|
6
6
|
from src.core.util import setup_logging
|
7
7
|
|
8
8
|
|
9
|
-
def
|
9
|
+
def __generate_settings_env_example():
|
10
10
|
setup_logging()
|
11
11
|
print(safely_transfer_obj_to_json_str(get_cached_settings().model_dump(mode="json")))
|
12
12
|
Settings.save_env_example_to_file(filepath=os.path.join(ProjectPaths.base_dirpath, "example.env"))
|
13
13
|
|
14
14
|
|
15
15
|
if __name__ == '__main__':
|
16
|
-
|
16
|
+
__generate_settings_env_example()
|
@@ -2,10 +2,10 @@ from src.core.util import setup_logging
|
|
2
2
|
from src.db.util import get_cached_sqlalchemy_db
|
3
3
|
|
4
4
|
|
5
|
-
def
|
5
|
+
def __check_conn_sqlalchemy_db():
|
6
6
|
setup_logging()
|
7
7
|
get_cached_sqlalchemy_db().check_conn()
|
8
8
|
|
9
9
|
|
10
10
|
if __name__ == '__main__':
|
11
|
-
|
11
|
+
__check_conn_sqlalchemy_db()
|
@@ -35,7 +35,6 @@ arpakitlib/_arpakit_project_template/manage/poetry_check.sh,sha256=mxkbFqw-mVlAk
|
|
35
35
|
arpakitlib/_arpakit_project_template/manage/poetry_clear_cache.sh,sha256=5NmoMsA377JCeTMLERzE2GZywgi8mXQDTQ_yhIJtR8k,139
|
36
36
|
arpakitlib/_arpakit_project_template/manage/poetry_config.sh,sha256=gIctNLSvRJmER_iU_HwPpHR83adZV12LoXcoWfY9M00,26
|
37
37
|
arpakitlib/_arpakit_project_template/manage/poetry_config_virtualenvs_in_project_true.sh,sha256=CHAGXfmyztxgimUQ4MC4IwnLzd2uZ7Da1Xvem_lw60w,47
|
38
|
-
arpakitlib/_arpakit_project_template/manage/poetry_generate_requirements.txt.sh,sha256=Df2ms0GlmAymMGqf9Bp2i3_DI61Ii1xYKf7S0By7tdw,76
|
39
38
|
arpakitlib/_arpakit_project_template/manage/poetry_install.sh,sha256=oLSrFGHKIRWc-1VEiM9wPRUNPTjtYJ3hEKwbeCpCvlk,153
|
40
39
|
arpakitlib/_arpakit_project_template/manage/poetry_lock.sh,sha256=9oiTdi8ynGQWctQjI3g4ThGkvpT07-g5ajLmG47iVh8,17
|
41
40
|
arpakitlib/_arpakit_project_template/manage/poetry_remove_and_add_arpakitlib.sh,sha256=-DvxXI-oaAQxIZFtiCfNBhqpRgJcWWuxhoHb9Nou0a4,197
|
@@ -88,13 +87,13 @@ arpakitlib/_arpakit_project_template/src/business_service/__init__.py,sha256=47D
|
|
88
87
|
arpakitlib/_arpakit_project_template/src/business_service/hello_world.py,sha256=pDCPv_1qC4yo3dKYt2kdz3GsiR53XDmYi1r7zzzj8co,193
|
89
88
|
arpakitlib/_arpakit_project_template/src/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
89
|
arpakitlib/_arpakit_project_template/src/core/check_logging.py,sha256=TXAG-v7rH3uSSyCgraEX-3gbDs4J2MGGaBJb1P-xj18,227
|
91
|
-
arpakitlib/_arpakit_project_template/src/core/check_settings.py,sha256=
|
90
|
+
arpakitlib/_arpakit_project_template/src/core/check_settings.py,sha256=tsmGvekVpgMk7MraC5-m1ICn9WX0GNe4dkt1Pq8xeZI,346
|
92
91
|
arpakitlib/_arpakit_project_template/src/core/const.py,sha256=86zjRG3umtjQWYUMPKGaNwHnXM-WSOF-2l0A-Le51kI,1504
|
93
|
-
arpakitlib/_arpakit_project_template/src/core/generate_settings_env_example.py,sha256=
|
92
|
+
arpakitlib/_arpakit_project_template/src/core/generate_settings_env_example.py,sha256=ql5moZitOZakJAhjx2P2aM0RRsglFhArwPR9OckyafM,545
|
94
93
|
arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=PhxYn8WvGVVev5qXGJSxPuOstByVmcruviiN3llGN9U,2473
|
95
94
|
arpakitlib/_arpakit_project_template/src/core/util.py,sha256=5R8gvcZdvuDQes45FBnLC2IDv2Jhajp1VhJJYNKYjMQ,1539
|
96
95
|
arpakitlib/_arpakit_project_template/src/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
|
-
arpakitlib/_arpakit_project_template/src/db/check_conn_sqlalchemy_db.py,sha256=
|
96
|
+
arpakitlib/_arpakit_project_template/src/db/check_conn_sqlalchemy_db.py,sha256=urdfQQxAdHNka6nwkxv1YG8cMsRKr8U6ddDxU92eWh4,251
|
98
97
|
arpakitlib/_arpakit_project_template/src/db/const.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
98
|
arpakitlib/_arpakit_project_template/src/db/init_sqlalchemy_db.py,sha256=gxCQT1bcJ-8Qos-zL8PnQ58i2GX_QkQnQSsSBKYR1f0,233
|
100
99
|
arpakitlib/_arpakit_project_template/src/db/reinit_sqlalchemy_db.py,sha256=WFcv3bt2AdSIwwhpkxzNsh09wpJCmuHux63fMt_iLTg,345
|
@@ -183,9 +182,9 @@ arpakitlib/ar_str_util.py,sha256=yU5gOwNXUQaH5b_tM5t6fXUn9oUcv5EQbVnq2wXXIpQ,337
|
|
183
182
|
arpakitlib/ar_type_util.py,sha256=BJ5FcS5Vkj9KFNJgoh0qGLazy-wCubqhND3vle0yOTo,3717
|
184
183
|
arpakitlib/ar_yookassa_api_client_util.py,sha256=sh4fcUkAkdOetFn9JYoTvjcSXP-M1wU04KEY-ECLfLg,5137
|
185
184
|
arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
|
186
|
-
arpakitlib-1.7.
|
187
|
-
arpakitlib-1.7.
|
188
|
-
arpakitlib-1.7.
|
189
|
-
arpakitlib-1.7.
|
190
|
-
arpakitlib-1.7.
|
191
|
-
arpakitlib-1.7.
|
185
|
+
arpakitlib-1.7.135.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
186
|
+
arpakitlib-1.7.135.dist-info/METADATA,sha256=9cPg3Dh-TmYqcrKDOsFTE5jy0Lc8JR-m4edBREjaIB4,3176
|
187
|
+
arpakitlib-1.7.135.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
|
188
|
+
arpakitlib-1.7.135.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
189
|
+
arpakitlib-1.7.135.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
|
190
|
+
arpakitlib-1.7.135.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
poetry export -f requirements.txt --without-hashes --output requirements.txt
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|