arpakitlib 1.7.134__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.134.dist-info → arpakitlib-1.7.135.dist-info}/METADATA +1 -1
- {arpakitlib-1.7.134.dist-info → arpakitlib-1.7.135.dist-info}/RECORD +9 -9
- {arpakitlib-1.7.134.dist-info → arpakitlib-1.7.135.dist-info}/LICENSE +0 -0
- {arpakitlib-1.7.134.dist-info → arpakitlib-1.7.135.dist-info}/NOTICE +0 -0
- {arpakitlib-1.7.134.dist-info → arpakitlib-1.7.135.dist-info}/WHEEL +0 -0
- {arpakitlib-1.7.134.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()
|
@@ -87,13 +87,13 @@ arpakitlib/_arpakit_project_template/src/business_service/__init__.py,sha256=47D
|
|
87
87
|
arpakitlib/_arpakit_project_template/src/business_service/hello_world.py,sha256=pDCPv_1qC4yo3dKYt2kdz3GsiR53XDmYi1r7zzzj8co,193
|
88
88
|
arpakitlib/_arpakit_project_template/src/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
89
|
arpakitlib/_arpakit_project_template/src/core/check_logging.py,sha256=TXAG-v7rH3uSSyCgraEX-3gbDs4J2MGGaBJb1P-xj18,227
|
90
|
-
arpakitlib/_arpakit_project_template/src/core/check_settings.py,sha256=
|
90
|
+
arpakitlib/_arpakit_project_template/src/core/check_settings.py,sha256=tsmGvekVpgMk7MraC5-m1ICn9WX0GNe4dkt1Pq8xeZI,346
|
91
91
|
arpakitlib/_arpakit_project_template/src/core/const.py,sha256=86zjRG3umtjQWYUMPKGaNwHnXM-WSOF-2l0A-Le51kI,1504
|
92
|
-
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
|
93
93
|
arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=PhxYn8WvGVVev5qXGJSxPuOstByVmcruviiN3llGN9U,2473
|
94
94
|
arpakitlib/_arpakit_project_template/src/core/util.py,sha256=5R8gvcZdvuDQes45FBnLC2IDv2Jhajp1VhJJYNKYjMQ,1539
|
95
95
|
arpakitlib/_arpakit_project_template/src/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
|
-
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
|
97
97
|
arpakitlib/_arpakit_project_template/src/db/const.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
98
|
arpakitlib/_arpakit_project_template/src/db/init_sqlalchemy_db.py,sha256=gxCQT1bcJ-8Qos-zL8PnQ58i2GX_QkQnQSsSBKYR1f0,233
|
99
99
|
arpakitlib/_arpakit_project_template/src/db/reinit_sqlalchemy_db.py,sha256=WFcv3bt2AdSIwwhpkxzNsh09wpJCmuHux63fMt_iLTg,345
|
@@ -182,9 +182,9 @@ arpakitlib/ar_str_util.py,sha256=yU5gOwNXUQaH5b_tM5t6fXUn9oUcv5EQbVnq2wXXIpQ,337
|
|
182
182
|
arpakitlib/ar_type_util.py,sha256=BJ5FcS5Vkj9KFNJgoh0qGLazy-wCubqhND3vle0yOTo,3717
|
183
183
|
arpakitlib/ar_yookassa_api_client_util.py,sha256=sh4fcUkAkdOetFn9JYoTvjcSXP-M1wU04KEY-ECLfLg,5137
|
184
184
|
arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
|
185
|
-
arpakitlib-1.7.
|
186
|
-
arpakitlib-1.7.
|
187
|
-
arpakitlib-1.7.
|
188
|
-
arpakitlib-1.7.
|
189
|
-
arpakitlib-1.7.
|
190
|
-
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,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|