arpakitlib 1.7.118__py3-none-any.whl → 1.7.123__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/example.env +4 -0
- arpakitlib/_arpakit_project_template/manage/hello_world.py +2 -2
- arpakitlib/_arpakit_project_template/manage/json_beutify.py +2 -2
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py +4 -4
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py +4 -4
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_3.py +4 -4
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_4.py +4 -4
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_5.py +4 -4
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py +4 -4
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py +4 -4
- arpakitlib/_arpakit_project_template/src/admin1/add_admin_in_app.py +3 -1
- arpakitlib/_arpakit_project_template/src/admin1/admin_auth.py +4 -7
- arpakitlib/_arpakit_project_template/src/admin1/model_view.py +5 -0
- arpakitlib/_arpakit_project_template/src/api/create_api_app.py +8 -51
- arpakitlib/_arpakit_project_template/src/api/event.py +51 -2
- arpakitlib/_arpakit_project_template/src/api/start_api_for_dev_with_reload.py +12 -4
- arpakitlib/_arpakit_project_template/src/api/{start_api_for_dev.py → start_api_for_dev_without_reload.py} +3 -3
- arpakitlib/_arpakit_project_template/src/api/transmitted_api_data.py +4 -0
- arpakitlib/_arpakit_project_template/src/business_service/hello_world.py +12 -0
- arpakitlib/_arpakit_project_template/{manage/logging_check.py → src/core/check_logging.py} +3 -3
- arpakitlib/_arpakit_project_template/{manage/settings_check.py → src/core/check_settings.py} +2 -0
- arpakitlib/_arpakit_project_template/src/core/generate_settings_env_example.py +16 -0
- arpakitlib/_arpakit_project_template/{manage/sqlalchemy_db_init.py → src/db/init_sqlalchemy_db.py} +2 -2
- arpakitlib/_arpakit_project_template/{manage/sqlalchemy_db_reinit.py → src/db/reinit_sqlalchemy_db.py} +4 -2
- arpakitlib/_arpakit_project_template/src/operation_execution/scheduled_operations.py +3 -3
- arpakitlib/_arpakit_project_template/src/operation_execution/{start_operation_executor_worker_for_dev.py → start_operation_executor_worker.py} +5 -4
- arpakitlib/_arpakit_project_template/src/operation_execution/{start_scheduled_operation_creator_worker_for_dev.py → start_scheduled_operation_creator_worker.py} +6 -4
- arpakitlib/_arpakit_project_template/src/operation_execution/util.py +0 -19
- arpakitlib/_arpakit_project_template/src/tg_bot/__init__.py +0 -0
- arpakitlib/_arpakit_project_template/src/tg_bot/router/__init__.py +0 -0
- arpakitlib/_arpakit_project_template/src/tg_bot/start_tg_bot.py +0 -0
- arpakitlib/ar_fastapi_util.py +0 -33
- arpakitlib/ar_settings_util.py +14 -5
- {arpakitlib-1.7.118.dist-info → arpakitlib-1.7.123.dist-info}/METADATA +1 -1
- {arpakitlib-1.7.118.dist-info → arpakitlib-1.7.123.dist-info}/RECORD +40 -42
- arpakitlib/_arpakit_project_template/AUTHOR.md +0 -4
- arpakitlib/_arpakit_project_template/manage/example_nginx_proxy.nginx +0 -14
- arpakitlib/_arpakit_project_template/manage/example_poetry_arpakitlib.sh +0 -1
- arpakitlib/_arpakit_project_template/manage/example_pyproject.toml +0 -23
- arpakitlib/_arpakit_project_template/manage/example_systemd.service +0 -12
- arpakitlib/_arpakit_project_template/manage/requirements.txt +0 -208
- arpakitlib/_arpakit_project_template/manage/settings_generate_env_example.py +0 -13
- /arpakitlib/_arpakit_project_template/{manage/sqlalchemy_db_check_conn.py → src/db/check_conn_sqlalchemy_db.py} +0 -0
- {arpakitlib-1.7.118.dist-info → arpakitlib-1.7.123.dist-info}/LICENSE +0 -0
- {arpakitlib-1.7.118.dist-info → arpakitlib-1.7.123.dist-info}/NOTICE +0 -0
- {arpakitlib-1.7.118.dist-info → arpakitlib-1.7.123.dist-info}/WHEEL +0 -0
- {arpakitlib-1.7.118.dist-info → arpakitlib-1.7.123.dist-info}/entry_points.txt +0 -0
arpakitlib/ar_fastapi_util.py
CHANGED
@@ -25,10 +25,8 @@ from starlette import status
|
|
25
25
|
from starlette.middleware.cors import CORSMiddleware
|
26
26
|
from starlette.staticfiles import StaticFiles
|
27
27
|
|
28
|
-
from arpakitlib.ar_base_worker_util import BaseWorker, safe_run_worker_in_background
|
29
28
|
from arpakitlib.ar_dict_util import combine_dicts
|
30
29
|
from arpakitlib.ar_enumeration_util import Enumeration
|
31
|
-
from arpakitlib.ar_file_storage_in_dir_util import FileStorageInDir
|
32
30
|
from arpakitlib.ar_func_util import raise_if_not_async_func, is_async_function, is_async_object
|
33
31
|
from arpakitlib.ar_json_util import safely_transfer_obj_to_json_str_to_json_obj
|
34
32
|
from arpakitlib.ar_logging_util import setup_normal_logging
|
@@ -431,37 +429,6 @@ class BaseShutdownAPIEvent:
|
|
431
429
|
self._logger.info("on_shutdown ends")
|
432
430
|
|
433
431
|
|
434
|
-
class InitSqlalchemyDBStartupAPIEvent(BaseStartupAPIEvent):
|
435
|
-
def __init__(self, sqlalchemy_db: SQLAlchemyDB):
|
436
|
-
super().__init__()
|
437
|
-
self.sqlalchemy_db = sqlalchemy_db
|
438
|
-
|
439
|
-
async def async_on_startup(self, *args, **kwargs):
|
440
|
-
self.sqlalchemy_db.init()
|
441
|
-
|
442
|
-
|
443
|
-
class SafeRunWorkerStartupAPIEvent(BaseStartupAPIEvent):
|
444
|
-
def __init__(self, workers: list[BaseWorker], safe_run_in_background_mode: str):
|
445
|
-
super().__init__()
|
446
|
-
self.workers = workers
|
447
|
-
self.safe_run_in_background_mode = safe_run_in_background_mode
|
448
|
-
|
449
|
-
async def async_on_startup(self, *args, **kwargs):
|
450
|
-
for worker in self.workers:
|
451
|
-
_ = safe_run_worker_in_background(worker=worker, mode=self.safe_run_in_background_mode)
|
452
|
-
|
453
|
-
|
454
|
-
class InitFileStoragesInDir(BaseStartupAPIEvent):
|
455
|
-
def __init__(self, file_storages_in_dir: list[FileStorageInDir | None]):
|
456
|
-
super().__init__()
|
457
|
-
file_storages_in_dir = [v for v in file_storages_in_dir if v is not None]
|
458
|
-
self.file_storages_in_dir = file_storages_in_dir
|
459
|
-
|
460
|
-
async def async_on_startup(self, *args, **kwargs):
|
461
|
-
for file_storage_in_dir in self.file_storages_in_dir:
|
462
|
-
file_storage_in_dir.init()
|
463
|
-
|
464
|
-
|
465
432
|
class BaseTransmittedAPIData(BaseModel):
|
466
433
|
model_config = ConfigDict(extra="ignore", arbitrary_types_allowed=True, from_attributes=True)
|
467
434
|
|
arpakitlib/ar_settings_util.py
CHANGED
@@ -21,29 +21,38 @@ def generate_env_example(settings_class: Union[BaseSettings, type[BaseSettings]]
|
|
21
21
|
return res
|
22
22
|
|
23
23
|
|
24
|
+
class ModeTypes(Enumeration):
|
25
|
+
not_prod: str = "not_prod"
|
26
|
+
prod: str = "prod"
|
27
|
+
|
28
|
+
|
24
29
|
class SimpleSettings(BaseSettings):
|
25
30
|
model_config = ConfigDict(extra="ignore")
|
26
31
|
|
27
|
-
class ModeTypes(Enumeration):
|
28
|
-
not_prod: str = "not_prod"
|
29
|
-
prod: str = "prod"
|
30
|
-
|
31
32
|
mode_type: str = ModeTypes.not_prod
|
32
33
|
|
33
34
|
@field_validator("mode_type")
|
34
35
|
@classmethod
|
35
36
|
def validate_mode_type(cls, v: str):
|
36
|
-
|
37
|
+
ModeTypes.parse_and_validate_values(v.lower().strip())
|
37
38
|
return v
|
38
39
|
|
39
40
|
@property
|
40
41
|
def is_mode_type_not_prod(self) -> bool:
|
41
42
|
return self.mode_type == self.ModeTypes.not_prod
|
42
43
|
|
44
|
+
def raise_if_mode_type_not_prod(self):
|
45
|
+
if self.is_mode_type_not_prod:
|
46
|
+
raise ValueError(f"mode type = {self.mode_type}")
|
47
|
+
|
43
48
|
@property
|
44
49
|
def is_mode_type_prod(self) -> bool:
|
45
50
|
return self.mode_type == self.ModeTypes.prod
|
46
51
|
|
52
|
+
def raise_if_mode_type_prod(self):
|
53
|
+
if self.is_mode_type_prod:
|
54
|
+
raise ValueError(f"mode type = {self.mode_type}")
|
55
|
+
|
47
56
|
@classmethod
|
48
57
|
def generate_env_example(cls) -> str:
|
49
58
|
return generate_env_example(settings_class=cls)
|
@@ -2,21 +2,16 @@ arpakitlib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
arpakitlib/_arpakit_project_template/.gitignore,sha256=Q8n7q3-hKsnFVN5NcACPs71Z9t5EtyjK8HOp0FMA5cg,428
|
3
3
|
arpakitlib/_arpakit_project_template/.python-version,sha256=XMd40XBnlTFfBSmMldd-7VdqXNyFCy6wtxhw5e1mnhc,7
|
4
4
|
arpakitlib/_arpakit_project_template/ARPAKITLIB,sha256=3-iAkMXtesLzJXHw_IIv2k2M0oH8cTjHzW22Vvbi0IE,4
|
5
|
-
arpakitlib/_arpakit_project_template/AUTHOR.md,sha256=d5QAx-1vbHfYYABpNQ0Yfjaxsw8UnfXhcLVirz6lMyo,45
|
6
5
|
arpakitlib/_arpakit_project_template/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
7
6
|
arpakitlib/_arpakit_project_template/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
|
8
7
|
arpakitlib/_arpakit_project_template/README.md,sha256=EEoHPZrJQtLS3fKD3JvoPhkGhjfuDihxK5fmAGwihCQ,65
|
9
|
-
arpakitlib/_arpakit_project_template/example.env,sha256=
|
8
|
+
arpakitlib/_arpakit_project_template/example.env,sha256=CtNXgvXe8PfULfLpLdrLUrtOhwc4Ax4vEPvxvRb1Eds,543
|
10
9
|
arpakitlib/_arpakit_project_template/manage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
10
|
arpakitlib/_arpakit_project_template/manage/docker_ps.sh,sha256=uwm8vHgeuNLCOn0o9hgP_uc-PUkS9FwLyzZh6ItZ3do,15
|
12
11
|
arpakitlib/_arpakit_project_template/manage/docker_ps_a.sh,sha256=nOQejihYlzstg9oROvYwHIsSLt2Sw0DWQEeT3GBaBNs,18
|
13
12
|
arpakitlib/_arpakit_project_template/manage/docker_run_postgres_for_dev.sh,sha256=EKytHfg5nDIen_QZhltfU7fHNJ68cSbM2ab13smKnTk,276
|
14
13
|
arpakitlib/_arpakit_project_template/manage/docker_start_postgres_for_dev.sh,sha256=vY_NMqqZzYhrRMyZhZkJ5ppOJnzhpvHr82U3zTXJWPw,43
|
15
14
|
arpakitlib/_arpakit_project_template/manage/docker_stop_postgres_for_dev.sh,sha256=Mlerpr5giJvpAtmYsudx-bYb4SuL1Hw7iF1Jv_b061k,41
|
16
|
-
arpakitlib/_arpakit_project_template/manage/example_nginx_proxy.nginx,sha256=Ch4vCoa1QBdDpfRAz2tgOMO8Gw-6tgNyvOkte7A3MsA,326
|
17
|
-
arpakitlib/_arpakit_project_template/manage/example_poetry_arpakitlib.sh,sha256=ChcLbdsciCUlv_k-gp_1n70K80xc-ulKz4MXz-hXMqs,206
|
18
|
-
arpakitlib/_arpakit_project_template/manage/example_pyproject.toml,sha256=EwzqwsuhD0gkAvvoxz4fssm5_f8W_NhoN4diwlrknrY,569
|
19
|
-
arpakitlib/_arpakit_project_template/manage/example_systemd.service,sha256=Cunp3074ZKg1AQiX4Q_Xe5Q39Jca7hQj5ljXqryWwTU,143
|
20
15
|
arpakitlib/_arpakit_project_template/manage/git_branch.sh,sha256=yMwBwT866WjxowbDrNHRDh8yod4eSn7JZnXUlQvrcOk,17
|
21
16
|
arpakitlib/_arpakit_project_template/manage/git_commit.sh,sha256=AW1NEel-ZHaYeVWFlRbgZSYPQdnVKsTkpR_07RQL1Mw,42
|
22
17
|
arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_github_1.sh,sha256=Sx-OegryHeNTIfAOoCfj3Z3CF-XKEY0AJF5HVJAgGpU,70
|
@@ -27,9 +22,8 @@ arpakitlib/_arpakit_project_template/manage/git_remote_v.sh,sha256=DIcyWmY_mve_C
|
|
27
22
|
arpakitlib/_arpakit_project_template/manage/git_set_arpakit_company_origin.sh,sha256=qTi-SxgC6CfCTEAje0_XFcQ9wpuiyAZEU4MANeJjdWA,274
|
28
23
|
arpakitlib/_arpakit_project_template/manage/git_set_arpakit_origin.sh,sha256=uMtOEDLe_L8SD5cqZ1ZU_pC2C5ZOD-eM8igf1z0LUIk,225
|
29
24
|
arpakitlib/_arpakit_project_template/manage/git_status.sh,sha256=N9JGYX5_UfCdirw4EQYzu4sS7pMLGrF4-QrTSTcpUtA,16
|
30
|
-
arpakitlib/_arpakit_project_template/manage/hello_world.py,sha256=
|
31
|
-
arpakitlib/_arpakit_project_template/manage/json_beutify.py,sha256=
|
32
|
-
arpakitlib/_arpakit_project_template/manage/logging_check.py,sha256=rfrl4MK5ItRKaLKb0UU_EfQLckRQSYJ1S_2VAQJQ2Yk,212
|
25
|
+
arpakitlib/_arpakit_project_template/manage/hello_world.py,sha256=OxvwkWqjmhhvMPG1TiQTo52hgEyzZfzUPoij0wmFmWA,95
|
26
|
+
arpakitlib/_arpakit_project_template/manage/json_beutify.py,sha256=JoJwN-GdI3HK_lTho043iNjLci2YrbdteeKB8gjwSL4,227
|
33
27
|
arpakitlib/_arpakit_project_template/manage/note/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
28
|
arpakitlib/_arpakit_project_template/manage/note/note_1.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
29
|
arpakitlib/_arpakit_project_template/manage/note/note_2.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -50,22 +44,16 @@ arpakitlib/_arpakit_project_template/manage/poetry_show.sh,sha256=pclR9efCNrrGyJ
|
|
50
44
|
arpakitlib/_arpakit_project_template/manage/poetry_show_arpakitlib.sh,sha256=5ibH12wGYc-Cj8zl5abtI_hLVSW0o4ofktt-w7I6wQo,37
|
51
45
|
arpakitlib/_arpakit_project_template/manage/poetry_update.sh,sha256=ZtoXIC4Qq7PMTDxQMwUxvkYC6lTc5LC23ILTywWbyoU,164
|
52
46
|
arpakitlib/_arpakit_project_template/manage/poetry_update_arpakitlib.sh,sha256=hh7vj-yKgKqLfaGb8cjsJ_NTa7fBtE4s3yxzte4D8bw,163
|
53
|
-
arpakitlib/_arpakit_project_template/manage/requirements.txt,sha256=rQyiMoxw1UtkLAl_8l7mS5MTcDUQd0VF_5XOBK3czW4,17319
|
54
47
|
arpakitlib/_arpakit_project_template/manage/sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py,sha256=
|
56
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py,sha256=
|
57
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_3.py,sha256=
|
58
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_4.py,sha256=
|
59
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_5.py,sha256=
|
60
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py,sha256=
|
61
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py,sha256=
|
48
|
+
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
49
|
+
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
50
|
+
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_3.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
51
|
+
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_4.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
52
|
+
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_5.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
53
|
+
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
54
|
+
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
|
62
55
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_8.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
56
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_9.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
|
-
arpakitlib/_arpakit_project_template/manage/settings_check.py,sha256=T9u9NwmuiyFasXuuomJkrT9Btb3CbnytuftPDn0vkkg,268
|
65
|
-
arpakitlib/_arpakit_project_template/manage/settings_generate_env_example.py,sha256=BLLeF4JenexXbO1mMj8X-lB81TG3-QTmN4DjPYEUI8o,288
|
66
|
-
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_check_conn.py,sha256=wv1N33nTGpsT9nk94OePlOSZ-O9UVKlMfRf8y5UeK1Y,213
|
67
|
-
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_init.py,sha256=cBkdDS4i1dbt0HsV6vyTTZvtCXYTfCdkvCHgVFrafUU,207
|
68
|
-
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_reinit.py,sha256=YhXC7zwdN3L4MDrNxCaI379M7u27n-BXw5qIAG1uZEE,209
|
69
57
|
arpakitlib/_arpakit_project_template/resource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
58
|
arpakitlib/_arpakit_project_template/resource/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
59
|
arpakitlib/_arpakit_project_template/resource/static/healthcheck,sha256=IIO7Wvjwlr2-LPSQ7Y8O35hcI6t0_s8zqITDxkYCO8I,11
|
@@ -74,15 +62,15 @@ arpakitlib/_arpakit_project_template/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
74
62
|
arpakitlib/_arpakit_project_template/src/additional_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
75
63
|
arpakitlib/_arpakit_project_template/src/additional_model/additional_model.py,sha256=4KCOvto9Hj5eMYpvfaJChghhR9bkCvKluGGPWrTezoY,134
|
76
64
|
arpakitlib/_arpakit_project_template/src/admin1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
|
-
arpakitlib/_arpakit_project_template/src/admin1/add_admin_in_app.py,sha256=
|
78
|
-
arpakitlib/_arpakit_project_template/src/admin1/admin_auth.py,sha256=
|
79
|
-
arpakitlib/_arpakit_project_template/src/admin1/model_view.py,sha256=
|
65
|
+
arpakitlib/_arpakit_project_template/src/admin1/add_admin_in_app.py,sha256=dWPhsBgXAFKF6qDKknY_hLG1HAH1NWN_OBqztXj9FLU,687
|
66
|
+
arpakitlib/_arpakit_project_template/src/admin1/admin_auth.py,sha256=qEC7gMy9E6mwuQRxnSsmVthXahVai4zjiC6Z8O3MZn8,804
|
67
|
+
arpakitlib/_arpakit_project_template/src/admin1/model_view.py,sha256=kSscddS6RDZS1VpX0t1n0sjoCjT5O7U8d5YRmT3dauQ,357
|
80
68
|
arpakitlib/_arpakit_project_template/src/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
69
|
arpakitlib/_arpakit_project_template/src/api/asgi.py,sha256=a5UBxOyNC8NG3E0ayhiDo3t5tPoB3WtOf2gbZJFWBAA,74
|
82
70
|
arpakitlib/_arpakit_project_template/src/api/auth.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
|
83
71
|
arpakitlib/_arpakit_project_template/src/api/const.py,sha256=7d4qD5hedqr7QxVzbfsA7E1bNZn2Pm2U8joXGtpANu0,287
|
84
|
-
arpakitlib/_arpakit_project_template/src/api/create_api_app.py,sha256=
|
85
|
-
arpakitlib/_arpakit_project_template/src/api/event.py,sha256=
|
72
|
+
arpakitlib/_arpakit_project_template/src/api/create_api_app.py,sha256=1R9nbDOw5Z7Ns5TJMy5MUlyp54VIBQ15oI02V1lHoYo,2758
|
73
|
+
arpakitlib/_arpakit_project_template/src/api/event.py,sha256=z3lNppog2x4a7phr4HmTQVWLt_LPI-357WeijbEeQRQ,3255
|
86
74
|
arpakitlib/_arpakit_project_template/src/api/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
75
|
arpakitlib/_arpakit_project_template/src/api/router/main_router.py,sha256=Yv699WCJDcdiJMXFg1kPTvolqj-NAGoXfqe-vzbMzIU,228
|
88
76
|
arpakitlib/_arpakit_project_template/src/api/router/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -92,32 +80,42 @@ arpakitlib/_arpakit_project_template/src/api/schema/__init__.py,sha256=47DEQpj8H
|
|
92
80
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
93
81
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/in_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
82
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/out.py,sha256=odc-UyxBwUPh4t0H6qIuzAsBA_Qrm3H2qP-YBgJpaKc,164
|
95
|
-
arpakitlib/_arpakit_project_template/src/api/
|
96
|
-
arpakitlib/_arpakit_project_template/src/api/
|
97
|
-
arpakitlib/_arpakit_project_template/src/api/transmitted_api_data.py,sha256=
|
83
|
+
arpakitlib/_arpakit_project_template/src/api/start_api_for_dev_with_reload.py,sha256=H5J9k4j-pBiGlMHXYEYJQeQcanEpIBhv4r4SfiW3pSk,291
|
84
|
+
arpakitlib/_arpakit_project_template/src/api/start_api_for_dev_without_reload.py,sha256=n30lbivzh1EJ8p8LY4YYlreQ14gfHWkU2zNxiwQ6ej4,292
|
85
|
+
arpakitlib/_arpakit_project_template/src/api/transmitted_api_data.py,sha256=fEWpfjnIrGluDrjgbsJwucQoiXKTP1cUYYORTFKdOJY,531
|
98
86
|
arpakitlib/_arpakit_project_template/src/api/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
87
|
arpakitlib/_arpakit_project_template/src/business_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
|
+
arpakitlib/_arpakit_project_template/src/business_service/hello_world.py,sha256=pDCPv_1qC4yo3dKYt2kdz3GsiR53XDmYi1r7zzzj8co,193
|
100
89
|
arpakitlib/_arpakit_project_template/src/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
+
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=m0fTAAFET2n6iE_rrFrWEHgKuJOKbJfkNRpIGsE69qU,328
|
101
92
|
arpakitlib/_arpakit_project_template/src/core/const.py,sha256=CZZew674y7LhCAlYhvuF5cV4Zb9nQ17j2Tcuj2GEBf4,1232
|
93
|
+
arpakitlib/_arpakit_project_template/src/core/generate_settings_env_example.py,sha256=DUfZtJL_iajxdihgPpO1b2Wg9Owe_3AYSUqIlBgCIEI,484
|
102
94
|
arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=Q58I0qHbVCfPtZxGcFKPdFMC8KGWiSR0OsxP_kr4-nc,2378
|
103
95
|
arpakitlib/_arpakit_project_template/src/core/util.py,sha256=5R8gvcZdvuDQes45FBnLC2IDv2Jhajp1VhJJYNKYjMQ,1539
|
104
96
|
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=wv1N33nTGpsT9nk94OePlOSZ-O9UVKlMfRf8y5UeK1Y,213
|
105
98
|
arpakitlib/_arpakit_project_template/src/db/const.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
|
+
arpakitlib/_arpakit_project_template/src/db/init_sqlalchemy_db.py,sha256=gxCQT1bcJ-8Qos-zL8PnQ58i2GX_QkQnQSsSBKYR1f0,233
|
100
|
+
arpakitlib/_arpakit_project_template/src/db/reinit_sqlalchemy_db.py,sha256=WFcv3bt2AdSIwwhpkxzNsh09wpJCmuHux63fMt_iLTg,345
|
106
101
|
arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py,sha256=nXtayUkBaVb6tWx5qJgXZLbLOTVAjnSLpSDxBm7yZLc,234
|
107
102
|
arpakitlib/_arpakit_project_template/src/db/util.py,sha256=8Jg9TtTwvyxVYIN_W5_lk9y-Pyh8To1aMRFUKCRDuuA,550
|
108
103
|
arpakitlib/_arpakit_project_template/src/operation_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
104
|
arpakitlib/_arpakit_project_template/src/operation_execution/const.py,sha256=HjupGEDUWVijQlbzxZPI9vBbAVOETUYzYU9pdnc9IcI,176
|
110
105
|
arpakitlib/_arpakit_project_template/src/operation_execution/operation_executor.py,sha256=TuAlF3QPJq-Zsq693NHQ00dvCWAzuwce2q6ozesWFYY,725
|
111
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/scheduled_operations.py,sha256=
|
112
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/
|
113
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/
|
114
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/util.py,sha256=
|
106
|
+
arpakitlib/_arpakit_project_template/src/operation_execution/scheduled_operations.py,sha256=N6erGXOf_Qm3soPzuraMoc1jLXA6M1KfNsp0l4aAWBM,973
|
107
|
+
arpakitlib/_arpakit_project_template/src/operation_execution/start_operation_executor_worker.py,sha256=QEGIuzSf6z_xDgGNzB6cMvqKhksuyOxZDjAOR56m05Y,675
|
108
|
+
arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker.py,sha256=GW1G8pi6yV_zODbqOs8VtEEM2e0iADFV6RXIxdPPPDY,677
|
109
|
+
arpakitlib/_arpakit_project_template/src/operation_execution/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
115
110
|
arpakitlib/_arpakit_project_template/src/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
116
111
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py,sha256=3WVPgRsNCIxWpA-6t_Phe-nFULdHPhS1S_DO11XRmqk,80
|
117
112
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_2.py,sha256=MVDc71sj5I1muWin50GwrSxMwYtOOSDOtRmeFErHcXs,80
|
118
113
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_3.py,sha256=89Rg0wubztpCNHBOWkhjZz3nB8Teilrl9xHlJvDWw9o,80
|
119
114
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_4.py,sha256=BlVvIhSFclBMQMHftETS57bRaFpkOdKPrZyxMbYJuDY,80
|
120
115
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_5.py,sha256=7ruCZevqJoLSdqL1OEJWUy3YPCOHQif7JqVTKxZ9acM,80
|
116
|
+
arpakitlib/_arpakit_project_template/src/tg_bot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
117
|
+
arpakitlib/_arpakit_project_template/src/tg_bot/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
118
|
+
arpakitlib/_arpakit_project_template/src/tg_bot/start_tg_bot.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
121
119
|
arpakitlib/_arpakit_project_template/src/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
122
120
|
arpakitlib/api_key_util.py,sha256=E84JlJXiDHtxLQmV8BNHvqNKu_G8-Dox0XxknYJQ37Q,422
|
123
121
|
arpakitlib/ar_additional_model_util.py,sha256=GFg-glLCxH9X95R2bhTJsscVwv37FgE1qbaAAyXrnIE,917
|
@@ -155,7 +153,7 @@ arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.css,sha256=jzPZlgJTFwSdSphk9C
|
|
155
153
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.css.map,sha256=5wq8eXMLU6Zxb45orZPL1zAsBFJReFw6GjYqGpUX3hg,262650
|
156
154
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.js,sha256=ffrLZHHEQ_g84A-ul3yWa10Kk09waOAxHcQXPuZuavg,339292
|
157
155
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.js.map,sha256=9UhIW7MqCOZPAz1Sl1IKfZUuhWU0p-LJqrnjjJD9Xhc,1159454
|
158
|
-
arpakitlib/ar_fastapi_util.py,sha256=
|
156
|
+
arpakitlib/ar_fastapi_util.py,sha256=jpjTmUJKyx8pcOv3UcZsM1r6jPnK5Y7NYDHLm61HQK4,26228
|
159
157
|
arpakitlib/ar_file_storage_in_dir_util.py,sha256=D3e3rGuHoI6xqAA5mVvEpVVpOWY1jyjNsjj2UhyHRbE,3674
|
160
158
|
arpakitlib/ar_file_util.py,sha256=GUdJYm1tUZnYpY-SIPRHAZBHGra8NKy1eYEI0D5AfhY,489
|
161
159
|
arpakitlib/ar_func_util.py,sha256=bCuWbSMoFXBaMNhb89sevj2oaXRk4Jk6Qjot8OXMDT4,1319
|
@@ -176,7 +174,7 @@ arpakitlib/ar_parse_command.py,sha256=-s61xcATIsfw1eV_iD3xi-grsitbGzSDoAFc5V0OFy
|
|
176
174
|
arpakitlib/ar_postgresql_util.py,sha256=1AuLjEaa1Lg4pzn-ukCVnDi35Eg1k91APRTqZhIJAdo,945
|
177
175
|
arpakitlib/ar_run_cmd_util.py,sha256=D_rPavKMmWkQtwvZFz-Io5Ak8eSODHkcFeLPzNVC68g,1072
|
178
176
|
arpakitlib/ar_schedule_uust_api_client_util.py,sha256=0Ns0mMEXYEkVmP6YTAXHyNcrhNsvCJ8X-G_5XwILhJ4,6855
|
179
|
-
arpakitlib/ar_settings_util.py,sha256=
|
177
|
+
arpakitlib/ar_settings_util.py,sha256=WPlMp4mJdXds2PzmU4-w_poW2hzXlhoTukxKvHXA368,1866
|
180
178
|
arpakitlib/ar_sleep_util.py,sha256=OaLtRaJQWMkGjfj_mW1RB2P4RaSWsAIH8LUoXqsH0zM,1061
|
181
179
|
arpakitlib/ar_sqlalchemy_model_util.py,sha256=nKJGN32eg3Gn5kmJwHdVJznPT5TydLsfUfwJGdypdUo,6264
|
182
180
|
arpakitlib/ar_sqlalchemy_util.py,sha256=Hcg1THrDsSR_-8dsY1CG3NWPEv0FqCbkPXFXLtjlSJ0,4207
|
@@ -185,9 +183,9 @@ arpakitlib/ar_str_util.py,sha256=yU5gOwNXUQaH5b_tM5t6fXUn9oUcv5EQbVnq2wXXIpQ,337
|
|
185
183
|
arpakitlib/ar_type_util.py,sha256=BJ5FcS5Vkj9KFNJgoh0qGLazy-wCubqhND3vle0yOTo,3717
|
186
184
|
arpakitlib/ar_yookassa_api_client_util.py,sha256=sh4fcUkAkdOetFn9JYoTvjcSXP-M1wU04KEY-ECLfLg,5137
|
187
185
|
arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
|
188
|
-
arpakitlib-1.7.
|
189
|
-
arpakitlib-1.7.
|
190
|
-
arpakitlib-1.7.
|
191
|
-
arpakitlib-1.7.
|
192
|
-
arpakitlib-1.7.
|
193
|
-
arpakitlib-1.7.
|
186
|
+
arpakitlib-1.7.123.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
187
|
+
arpakitlib-1.7.123.dist-info/METADATA,sha256=4mkc7KZsSiTifxYfXvOhNz7FCCKqM6Zuyz3Rrlyw7aQ,3176
|
188
|
+
arpakitlib-1.7.123.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
|
189
|
+
arpakitlib-1.7.123.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
190
|
+
arpakitlib-1.7.123.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
|
191
|
+
arpakitlib-1.7.123.dist-info/RECORD,,
|
@@ -1,14 +0,0 @@
|
|
1
|
-
server {
|
2
|
-
listen 80;
|
3
|
-
listen [::]:80;
|
4
|
-
|
5
|
-
server_name www...;
|
6
|
-
|
7
|
-
location / {
|
8
|
-
proxy_set_header Host $host;
|
9
|
-
proxy_set_header X-Real-IP $remote_addr;
|
10
|
-
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
11
|
-
proxy_set_header X-Forwarded-Proto $scheme;
|
12
|
-
proxy_pass ...;
|
13
|
-
}
|
14
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
poetry run arpakitlib -c init_arpakit_project_template -project_dirpath ./ -overwrite_if_exists true -project_name ... -sql_db_port ... -api_port ... -ignore_paths_startswith /src -only_paths_startswith ...
|
@@ -1,23 +0,0 @@
|
|
1
|
-
[project]
|
2
|
-
name = "{PROJECT_NAME}"
|
3
|
-
version = "0.1.0"
|
4
|
-
description = "{PROJECT_NAME}"
|
5
|
-
authors = [
|
6
|
-
{ name = "arpakit", email = "arpakit@gmail.com" },
|
7
|
-
{ name = "arpakit_support", email = "support@arpakit.com" }
|
8
|
-
]
|
9
|
-
license = "Apache License 2.0"
|
10
|
-
readme = "README.md"
|
11
|
-
keywords = ["{PROJECT_NAME}", "arpakitlib", "arpakit", "arpakit-company", "arpakitcompany", "arpakit_company"]
|
12
|
-
requires-python = ">=3.12.4,<4.0"
|
13
|
-
dependencies = [
|
14
|
-
]
|
15
|
-
|
16
|
-
|
17
|
-
[tool.poetry]
|
18
|
-
package-mode = false
|
19
|
-
|
20
|
-
|
21
|
-
[build-system]
|
22
|
-
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
23
|
-
build-backend = "poetry.core.masonry.api"
|
@@ -1,208 +0,0 @@
|
|
1
|
-
aiofiles==24.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
2
|
-
aiogram==3.17.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
3
|
-
aiohappyeyeballs==2.4.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
4
|
-
aiohttp-socks==0.10.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
5
|
-
aiohttp==3.11.11 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
6
|
-
aiosignal==1.3.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
7
|
-
alembic==1.14.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
8
|
-
amqp==5.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
9
|
-
annotated-types==0.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
10
|
-
anyio==4.8.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
11
|
-
appnope==0.1.4 ; python_full_version >= "3.12.4" and python_version < "4.0" and platform_system == "Darwin"
|
12
|
-
argon2-cffi-bindings==21.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
13
|
-
argon2-cffi==23.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
14
|
-
arrow==1.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
15
|
-
asttokens==3.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
16
|
-
async-lru==2.0.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
17
|
-
asyncpg==0.30.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
18
|
-
asyncssh==2.19.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
19
|
-
attrs==24.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
20
|
-
babel==2.16.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
21
|
-
bcrypt==4.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
22
|
-
beautifulsoup4==4.12.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
23
|
-
billiard==4.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
24
|
-
bleach==6.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
25
|
-
bs4==0.0.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
26
|
-
build==1.2.2.post1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
27
|
-
cachecontrol==0.14.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
28
|
-
cachetools==5.5.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
29
|
-
celery==5.4.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
30
|
-
certifi==2024.12.14 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
31
|
-
cffi==1.17.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
32
|
-
charset-normalizer==3.4.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
33
|
-
cleo==2.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
34
|
-
click-didyoumean==0.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
35
|
-
click-plugins==1.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
36
|
-
click-repl==0.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
37
|
-
click==8.1.8 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
38
|
-
colorama==0.4.6 ; python_full_version >= "3.12.4" and python_version < "4.0" and os_name == "nt" or python_full_version >= "3.12.4" and python_version < "4.0" and platform_system == "Windows" or python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "win32"
|
39
|
-
comm==0.2.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
40
|
-
contourpy==1.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
41
|
-
crashtest==0.4.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
42
|
-
cryptography==44.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
43
|
-
cycler==0.12.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
44
|
-
debugpy==1.8.12 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
45
|
-
decorator==5.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
46
|
-
defusedxml==0.7.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
47
|
-
distlib==0.3.9 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
48
|
-
distro==1.9.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
49
|
-
dnspython==2.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
50
|
-
docutils==0.21.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
51
|
-
dulwich==0.22.7 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
52
|
-
email-validator==2.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
53
|
-
emoji==2.14.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
54
|
-
et-xmlfile==2.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
55
|
-
executing==2.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
56
|
-
fastapi==0.115.6 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
57
|
-
fastjsonschema==2.21.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
58
|
-
filelock==3.17.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
59
|
-
fonttools==4.55.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
60
|
-
fqdn==1.5.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
61
|
-
frozenlist==1.5.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
62
|
-
greenlet==3.1.1 ; python_full_version >= "3.12.4" and python_version < "3.14" and (platform_machine == "aarch64" or platform_machine == "ppc64le" or platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "win32" or platform_machine == "WIN32")
|
63
|
-
gunicorn==23.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
64
|
-
h11==0.14.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
65
|
-
httpcore==1.0.7 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
66
|
-
httpx==0.28.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
67
|
-
id==1.5.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
68
|
-
idna==3.10 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
69
|
-
installer==0.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
70
|
-
ipykernel==6.29.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
71
|
-
ipython==8.31.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
72
|
-
ipywidgets==8.1.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
73
|
-
isoduration==20.11.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
74
|
-
itsdangerous==2.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
75
|
-
jaraco-classes==3.4.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
76
|
-
jaraco-context==6.0.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
77
|
-
jaraco-functools==4.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
78
|
-
jedi==0.19.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
79
|
-
jeepney==0.8.0 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "linux"
|
80
|
-
jinja2==3.1.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
81
|
-
jiter==0.8.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
82
|
-
json5==0.10.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
83
|
-
jsonpointer==3.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
84
|
-
jsonschema-specifications==2024.10.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
85
|
-
jsonschema==4.23.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
86
|
-
jupyter-client==8.6.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
87
|
-
jupyter-console==6.6.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
88
|
-
jupyter-core==5.7.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
89
|
-
jupyter-events==0.11.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
90
|
-
jupyter-lsp==2.2.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
91
|
-
jupyter-server-terminals==0.5.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
92
|
-
jupyter-server==2.15.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
93
|
-
jupyter==1.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
94
|
-
jupyterlab-pygments==0.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
95
|
-
jupyterlab-server==2.27.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
96
|
-
jupyterlab-widgets==3.0.13 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
97
|
-
jupyterlab==4.3.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
98
|
-
keyring==25.6.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
99
|
-
kiwisolver==1.4.8 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
100
|
-
kombu==5.4.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
101
|
-
magic-filter==1.0.12 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
102
|
-
mako==1.3.8 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
103
|
-
markdown-it-py==3.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
104
|
-
markupsafe==3.0.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
105
|
-
matplotlib-inline==0.1.7 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
106
|
-
matplotlib==3.10.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
107
|
-
mdurl==0.1.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
108
|
-
mistune==3.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
109
|
-
more-itertools==10.6.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
110
|
-
msgpack==1.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
111
|
-
multidict==6.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
112
|
-
nbclient==0.10.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
113
|
-
nbconvert==7.16.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
114
|
-
nbformat==5.10.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
115
|
-
nest-asyncio==1.6.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
116
|
-
nh3==0.2.20 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
117
|
-
notebook-shim==0.2.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
118
|
-
notebook==7.3.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
119
|
-
numpy==2.2.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
120
|
-
openai==1.60.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
121
|
-
openpyxl==3.1.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
122
|
-
overrides==7.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
123
|
-
packaging==24.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
124
|
-
pandas==2.2.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
125
|
-
pandocfilters==1.5.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
126
|
-
paramiko==3.5.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
127
|
-
parso==0.8.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
128
|
-
pexpect==4.9.0 ; python_full_version >= "3.12.4" and python_version < "4.0" and (sys_platform != "win32" and sys_platform != "emscripten")
|
129
|
-
pillow==11.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
130
|
-
pkginfo==1.12.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
131
|
-
platformdirs==4.3.6 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
132
|
-
poetry-core==2.0.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
133
|
-
poetry==2.0.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
134
|
-
prometheus-client==0.21.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
135
|
-
prompt-toolkit==3.0.50 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
136
|
-
propcache==0.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
137
|
-
psutil==6.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
138
|
-
psycopg2-binary==2.9.10 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
139
|
-
ptyprocess==0.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0" and os_name != "nt" or python_full_version >= "3.12.4" and python_version < "4.0" and (sys_platform != "win32" and sys_platform != "emscripten")
|
140
|
-
pure-eval==0.2.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
141
|
-
pycparser==2.22 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
142
|
-
pydantic-core==2.27.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
143
|
-
pydantic-settings==2.7.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
144
|
-
pydantic==2.10.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
145
|
-
pygments==2.19.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
146
|
-
pyjwt==2.10.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
147
|
-
pymongo==4.10.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
148
|
-
pynacl==1.5.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
149
|
-
pyparsing==3.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
150
|
-
pyproject-hooks==1.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
151
|
-
pysocks==1.7.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
152
|
-
python-dateutil==2.9.0.post0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
153
|
-
python-dotenv==1.0.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
154
|
-
python-json-logger==3.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
155
|
-
python-multipart==0.0.20 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
156
|
-
python-socks==2.6.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
157
|
-
pytz==2024.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
158
|
-
pywin32-ctypes==0.2.3 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "win32"
|
159
|
-
pywin32==308 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "win32" and platform_python_implementation != "PyPy"
|
160
|
-
pywinpty==2.0.14 ; python_full_version >= "3.12.4" and python_version < "4.0" and os_name == "nt"
|
161
|
-
pyyaml==6.0.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
162
|
-
pyzabbix==1.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
163
|
-
pyzmq==26.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
164
|
-
rapidfuzz==3.11.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
165
|
-
readme-renderer==44.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
166
|
-
referencing==0.36.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
167
|
-
requests-toolbelt==1.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
168
|
-
requests==2.32.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
169
|
-
rfc3339-validator==0.1.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
170
|
-
rfc3986-validator==0.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
171
|
-
rfc3986==2.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
172
|
-
rich==13.9.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
173
|
-
rpds-py==0.22.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
174
|
-
secretstorage==3.3.3 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "linux"
|
175
|
-
send2trash==1.8.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
176
|
-
setuptools==75.8.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
177
|
-
shellingham==1.5.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
178
|
-
six==1.17.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
179
|
-
sniffio==1.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
180
|
-
soupsieve==2.6 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
181
|
-
sqladmin==0.20.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
182
|
-
sqlalchemy==2.0.37 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
183
|
-
stack-data==0.6.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
184
|
-
starlette==0.41.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
185
|
-
terminado==0.18.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
186
|
-
tinycss2==1.4.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
187
|
-
tomlkit==0.13.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
188
|
-
tornado==6.4.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
189
|
-
tqdm==4.67.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
190
|
-
traitlets==5.14.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
191
|
-
trove-classifiers==2025.1.15.22 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
192
|
-
twine==6.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
193
|
-
types-python-dateutil==2.9.0.20241206 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
194
|
-
typing-extensions==4.12.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
195
|
-
tzdata==2025.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
196
|
-
uri-template==1.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
197
|
-
urllib3==2.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
198
|
-
uvicorn==0.34.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
199
|
-
vine==5.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
200
|
-
virtualenv==20.29.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
201
|
-
wcwidth==0.2.13 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
202
|
-
webcolors==24.11.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
203
|
-
webencodings==0.5.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
204
|
-
websocket-client==1.8.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
205
|
-
widgetsnbextension==4.0.13 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
206
|
-
wtforms==3.1.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
207
|
-
xattr==1.1.4 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "darwin"
|
208
|
-
yarl==1.18.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import os.path
|
2
|
-
|
3
|
-
from src.core.const import BASE_DIRPATH
|
4
|
-
from src.core.settings import Settings
|
5
|
-
|
6
|
-
|
7
|
-
def command():
|
8
|
-
print(Settings.generate_env_example())
|
9
|
-
Settings.save_env_example_to_file(filepath=os.path.join(BASE_DIRPATH, "example.env"))
|
10
|
-
|
11
|
-
|
12
|
-
if __name__ == '__main__':
|
13
|
-
command()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|