arpakitlib 1.7.26__py3-none-any.whl → 1.7.29__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 +3 -2
- arpakitlib/_arpakit_project_template/manage/git_branch.sh +2 -0
- arpakitlib/_arpakit_project_template/resource/static/helloworld +1 -0
- arpakitlib/_arpakit_project_template/src/api/create_api_app.py +1 -1
- arpakitlib/_arpakit_project_template/src/api/start_api_for_dev.py +2 -2
- arpakitlib/_arpakit_project_template/src/core/settings.py +8 -8
- arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py +3 -0
- arpakitlib/ar_fastapi_util.py +29 -9
- arpakitlib/ar_settings_util.py +2 -2
- {arpakitlib-1.7.26.dist-info → arpakitlib-1.7.29.dist-info}/METADATA +2 -35
- {arpakitlib-1.7.26.dist-info → arpakitlib-1.7.29.dist-info}/RECORD +22 -20
- /arpakitlib/_arpakit_project_template/manage/{start_api_for_dev_with_reload.py → api_start_for_dev_with_reload.py} +0 -0
- /arpakitlib/_arpakit_project_template/manage/{start_api_for_dev_without_reload.py → api_start_for_dev_without_reload.py} +0 -0
- /arpakitlib/_arpakit_project_template/manage/{beutify_json.py → json_beutify.py} +0 -0
- /arpakitlib/_arpakit_project_template/manage/{check_logging.py → logging_check.py} +0 -0
- /arpakitlib/_arpakit_project_template/manage/{check_settings.py → settings_check.py} +0 -0
- /arpakitlib/_arpakit_project_template/manage/{generate_env_example.py → settings_generate_env_example.py} +0 -0
- /arpakitlib/_arpakit_project_template/manage/{check_sqlalchemy_db_conn.py → sqlalchemy_db_check_conn.py} +0 -0
- {arpakitlib-1.7.26.dist-info → arpakitlib-1.7.29.dist-info}/LICENSE +0 -0
- {arpakitlib-1.7.26.dist-info → arpakitlib-1.7.29.dist-info}/NOTICE +0 -0
- {arpakitlib-1.7.26.dist-info → arpakitlib-1.7.29.dist-info}/WHEEL +0 -0
- {arpakitlib-1.7.26.dist-info → arpakitlib-1.7.29.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
HELLO WORLD
|
@@ -43,7 +43,7 @@ def create_api_app() -> FastAPI:
|
|
43
43
|
),
|
44
44
|
(
|
45
45
|
InitSqlalchemyDBStartupAPIEvent(sqlalchemy_db=sqlalchemy_db)
|
46
|
-
if (sqlalchemy_db is not None and settings.
|
46
|
+
if (sqlalchemy_db is not None and settings.api_init_sql_db_at_start) else None
|
47
47
|
),
|
48
48
|
],
|
49
49
|
shutdown_api_events=[
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import uvicorn
|
2
2
|
|
3
3
|
|
4
|
-
def start_api_for_dev(reload: bool =
|
4
|
+
def start_api_for_dev(*, reload: bool = False):
|
5
5
|
uvicorn.run(
|
6
6
|
"src.api.asgi:app",
|
7
7
|
port=int("{API_PORT}"),
|
@@ -12,4 +12,4 @@ def start_api_for_dev(reload: bool = True):
|
|
12
12
|
|
13
13
|
|
14
14
|
if __name__ == '__main__':
|
15
|
-
start_api_for_dev()
|
15
|
+
start_api_for_dev(reload=False)
|
@@ -8,7 +8,13 @@ from src.core.const import BASE_DIRPATH, ENV_FILEPATH
|
|
8
8
|
|
9
9
|
|
10
10
|
class Settings(SimpleSettings):
|
11
|
-
|
11
|
+
sql_db_url: str | None = (
|
12
|
+
"postgresql://{PROJECT_NAME}:{PROJECT_NAME}@127.0.0.1:{SQL_DB_PORT}/{PROJECT_NAME}"
|
13
|
+
)
|
14
|
+
|
15
|
+
sql_db_echo: bool = False
|
16
|
+
|
17
|
+
api_init_sql_db_at_start: bool = False
|
12
18
|
|
13
19
|
var_dirname: str | None = "var"
|
14
20
|
|
@@ -30,13 +36,7 @@ class Settings(SimpleSettings):
|
|
30
36
|
|
31
37
|
dump_dirpath: str | None = os.path.join(var_dirpath, dump_dirname)
|
32
38
|
|
33
|
-
|
34
|
-
"postgresql://{PROJECT_NAME}:{PROJECT_NAME}@127.0.0.1:{SQL_DB_PORT}/{PROJECT_NAME}"
|
35
|
-
)
|
36
|
-
|
37
|
-
init_sql_db_at_start: bool = False
|
38
|
-
|
39
|
-
sql_db_echo: bool = False
|
39
|
+
# ...
|
40
40
|
|
41
41
|
|
42
42
|
@lru_cache()
|
arpakitlib/ar_fastapi_util.py
CHANGED
@@ -368,7 +368,7 @@ def add_needed_api_router_to_app(*, app: FastAPI):
|
|
368
368
|
async def _():
|
369
369
|
return APIJSONResponse(
|
370
370
|
status_code=starlette.status.HTTP_200_OK,
|
371
|
-
content=RawDataSO(data={"arpakitlib":
|
371
|
+
content=RawDataSO(data={"arpakitlib": True})
|
372
372
|
)
|
373
373
|
|
374
374
|
app.include_router(router=api_router, prefix="")
|
@@ -533,7 +533,7 @@ class CheckAPIKeyAPIAuthData(BaseAPIAuthData):
|
|
533
533
|
is_api_key_correct: bool | None = None
|
534
534
|
|
535
535
|
|
536
|
-
def
|
536
|
+
def check_api_key_api_auth(
|
537
537
|
*,
|
538
538
|
require_check_api_key: bool = True,
|
539
539
|
check_api_key_func: Callable | None = None,
|
@@ -545,20 +545,40 @@ def api_auth_check_api_key(
|
|
545
545
|
require_api_key_string = False
|
546
546
|
|
547
547
|
if correct_api_key is not None:
|
548
|
-
check_api_key_func = lambda
|
548
|
+
check_api_key_func = lambda **kwargs: kwargs["api_key_string"] == correct_api_key
|
549
|
+
|
550
|
+
if require_check_api_key and check_api_key_func is None:
|
551
|
+
raise ValueError("require_check_api_key and check_api_key_func is None")
|
549
552
|
|
550
553
|
async def func(
|
551
554
|
*,
|
552
|
-
|
555
|
+
base_api_auth_data: BaseAPIAuthData = Depends(base_api_auth(
|
553
556
|
require_api_key_string=require_api_key_string,
|
554
557
|
require_token_string=False
|
555
558
|
)),
|
556
559
|
transmitted_api_data: BaseTransmittedAPIData = Depends(get_transmitted_api_data),
|
557
560
|
request: starlette.requests.Request
|
558
|
-
):
|
559
|
-
|
560
|
-
|
561
|
-
|
561
|
+
) -> CheckAPIKeyAPIAuthData:
|
562
|
+
check_api_key_api_auth_data = CheckAPIKeyAPIAuthData.model_validate(base_api_auth_data)
|
563
|
+
check_api_key_api_auth_data.require_check_api_key = require_check_api_key
|
564
|
+
check_api_key_api_auth_data.is_api_key_correct = (
|
565
|
+
check_api_key_func(
|
566
|
+
api_key_string=base_api_auth_data.api_key_string,
|
567
|
+
base_api_auth_data=base_api_auth_data,
|
568
|
+
transmitted_api_data=transmitted_api_data,
|
569
|
+
request=request
|
570
|
+
)
|
571
|
+
if check_api_key_func is not None else None
|
572
|
+
)
|
573
|
+
|
574
|
+
if check_api_key_api_auth_data.require_check_api_key and not check_api_key_api_auth_data.is_api_key_correct:
|
575
|
+
raise APIException(
|
576
|
+
status_code=starlette.status.HTTP_401_UNAUTHORIZED,
|
577
|
+
error_code=ErrorSO.APIErrorCodes.cannot_authorize,
|
578
|
+
error_data=safely_transfer_to_json_str_to_json_obj(check_api_key_api_auth_data.model_dump())
|
579
|
+
)
|
580
|
+
|
581
|
+
return check_api_key_api_auth_data
|
562
582
|
|
563
583
|
return func
|
564
584
|
|
@@ -592,7 +612,7 @@ def simple_api_router_for_testing():
|
|
592
612
|
raise Exception("raise_fake_exception_3")
|
593
613
|
|
594
614
|
@router.get(
|
595
|
-
"/
|
615
|
+
"/check_params_1",
|
596
616
|
response_model=ErrorSO
|
597
617
|
)
|
598
618
|
async def _(name: int = Query()):
|
arpakitlib/ar_settings_util.py
CHANGED
@@ -23,10 +23,10 @@ class SimpleSettings(BaseSettings):
|
|
23
23
|
model_config = ConfigDict(extra="ignore")
|
24
24
|
|
25
25
|
class ModeTypes(Enumeration):
|
26
|
-
|
26
|
+
not_prod: str = "not_prod"
|
27
27
|
prod: str = "prod"
|
28
28
|
|
29
|
-
mode_type: str = ModeTypes.
|
29
|
+
mode_type: str = ModeTypes.not_prod
|
30
30
|
|
31
31
|
@field_validator("mode_type")
|
32
32
|
@classmethod
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: arpakitlib
|
3
|
-
Version: 1.7.
|
3
|
+
Version: 1.7.29
|
4
4
|
Summary: arpakitlib
|
5
5
|
Home-page: https://github.com/ARPAKIT-Company/arpakitlib
|
6
6
|
License: Apache-2.0
|
@@ -55,40 +55,7 @@ Description-Content-Type: text/markdown
|
|
55
55
|
|
56
56
|
# arpakitlib
|
57
57
|
|
58
|
-
|
59
|
-
|
60
|
-
A collection of lightweight and convenient development tools by Arpakit, designed to simplify and accelerate your
|
61
|
-
workflow
|
62
|
-
|
63
|
-
---
|
64
|
-
|
65
|
-
### Supported Python version
|
66
|
-
|
67
|
-
- Python 3.12.4
|
68
|
-
|
69
|
-
---
|
70
|
-
|
71
|
-
### Installation with Poetry
|
72
|
-
|
73
|
-
```
|
74
|
-
poetry add arpakitlib
|
75
|
-
```
|
76
|
-
|
77
|
-
### Installation with pip
|
78
|
-
|
79
|
-
```
|
80
|
-
pip install arpakitlib
|
81
|
-
```
|
82
|
-
|
83
|
-
---
|
84
|
-
|
85
|
-
### Links
|
86
|
-
|
87
|
-
- https://pypi.org/project/arpakitlib/
|
88
|
-
- https://test.pypi.org/project/arpakitlib/
|
89
|
-
- https://github.com/ARPAKIT-Company/arpakitlib
|
90
|
-
|
91
|
-
---
|
58
|
+
...
|
92
59
|
|
93
60
|
## ❤️ Made by ARPAKIT Company ❤️
|
94
61
|
|
@@ -6,13 +6,11 @@ arpakitlib/_arpakit_project_template/AUTHOR.md,sha256=d5QAx-1vbHfYYABpNQ0Yfjaxsw
|
|
6
6
|
arpakitlib/_arpakit_project_template/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
7
7
|
arpakitlib/_arpakit_project_template/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
|
8
8
|
arpakitlib/_arpakit_project_template/README.md,sha256=EEoHPZrJQtLS3fKD3JvoPhkGhjfuDihxK5fmAGwihCQ,65
|
9
|
-
arpakitlib/_arpakit_project_template/example.env,sha256=
|
9
|
+
arpakitlib/_arpakit_project_template/example.env,sha256=9JQcdFX1ChuOZ1WVIJj89xg71xDnb-TRi8LYGje9TDM,232
|
10
10
|
arpakitlib/_arpakit_project_template/example_pyproject.toml,sha256=wLzoszIWqIC8qwgJD7FH_2UzKVh4PB7gi030zO6aYbA,485
|
11
11
|
arpakitlib/_arpakit_project_template/manage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
-
arpakitlib/_arpakit_project_template/manage/
|
13
|
-
arpakitlib/_arpakit_project_template/manage/
|
14
|
-
arpakitlib/_arpakit_project_template/manage/check_settings.py,sha256=JYR-IPgvYQOmJedKY9vOctbxEcUlaxZR-P0JXT9L2JQ,143
|
15
|
-
arpakitlib/_arpakit_project_template/manage/check_sqlalchemy_db_conn.py,sha256=3Q4QfvFVBZsbMMH5yr6v3a6v6UjQuIEIujlxGpvykNA,190
|
12
|
+
arpakitlib/_arpakit_project_template/manage/api_start_for_dev_with_reload.py,sha256=xg2SFemhe8KmmoYvaG8zkFZyonzxdxcHuugjS3i0q0I,151
|
13
|
+
arpakitlib/_arpakit_project_template/manage/api_start_for_dev_without_reload.py,sha256=_7Zf0_Wciui4cHJSmpRXYVU7MakWCafIqek52LbfwSI,152
|
16
14
|
arpakitlib/_arpakit_project_template/manage/docker_ps.sh,sha256=uwm8vHgeuNLCOn0o9hgP_uc-PUkS9FwLyzZh6ItZ3do,15
|
17
15
|
arpakitlib/_arpakit_project_template/manage/docker_ps_a.sh,sha256=nOQejihYlzstg9oROvYwHIsSLt2Sw0DWQEeT3GBaBNs,18
|
18
16
|
arpakitlib/_arpakit_project_template/manage/docker_run_postgres_for_dev.sh,sha256=EKytHfg5nDIen_QZhltfU7fHNJ68cSbM2ab13smKnTk,276
|
@@ -21,7 +19,7 @@ arpakitlib/_arpakit_project_template/manage/docker_stop_postgres_for_dev.sh,sha2
|
|
21
19
|
arpakitlib/_arpakit_project_template/manage/example_nginx_proxy.nginx,sha256=Ch4vCoa1QBdDpfRAz2tgOMO8Gw-6tgNyvOkte7A3MsA,326
|
22
20
|
arpakitlib/_arpakit_project_template/manage/example_poetry_arpakitlib.sh,sha256=ChcLbdsciCUlv_k-gp_1n70K80xc-ulKz4MXz-hXMqs,206
|
23
21
|
arpakitlib/_arpakit_project_template/manage/example_systemd.service,sha256=Cunp3074ZKg1AQiX4Q_Xe5Q39Jca7hQj5ljXqryWwTU,143
|
24
|
-
arpakitlib/_arpakit_project_template/manage/
|
22
|
+
arpakitlib/_arpakit_project_template/manage/git_branch.sh,sha256=yMwBwT866WjxowbDrNHRDh8yod4eSn7JZnXUlQvrcOk,17
|
25
23
|
arpakitlib/_arpakit_project_template/manage/git_commit.sh,sha256=AW1NEel-ZHaYeVWFlRbgZSYPQdnVKsTkpR_07RQL1Mw,42
|
26
24
|
arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_github_1.sh,sha256=Sx-OegryHeNTIfAOoCfj3Z3CF-XKEY0AJF5HVJAgGpU,70
|
27
25
|
arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_gitlab_1.sh,sha256=OL3mKrRjSXdYuxNA38PRMoeyEr9Qdtv82MhEs8bJuGA,70
|
@@ -32,6 +30,8 @@ arpakitlib/_arpakit_project_template/manage/git_set_arpakit_company_origin.sh,sh
|
|
32
30
|
arpakitlib/_arpakit_project_template/manage/git_set_arpakit_origin.sh,sha256=uMtOEDLe_L8SD5cqZ1ZU_pC2C5ZOD-eM8igf1z0LUIk,225
|
33
31
|
arpakitlib/_arpakit_project_template/manage/git_status.sh,sha256=N9JGYX5_UfCdirw4EQYzu4sS7pMLGrF4-QrTSTcpUtA,16
|
34
32
|
arpakitlib/_arpakit_project_template/manage/hello_world.py,sha256=1b1YIedAgtvBttAcKBeF03XsJ_pVKIThsr-0MYw0Uxg,83
|
33
|
+
arpakitlib/_arpakit_project_template/manage/json_beutify.py,sha256=mzmt-5piAHqgihLsqOpPx1JjDc1qA5F1XHBxDdR-BxY,215
|
34
|
+
arpakitlib/_arpakit_project_template/manage/logging_check.py,sha256=rfrl4MK5ItRKaLKb0UU_EfQLckRQSYJ1S_2VAQJQ2Yk,212
|
35
35
|
arpakitlib/_arpakit_project_template/manage/note/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
36
|
arpakitlib/_arpakit_project_template/manage/note/note_1.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
37
|
arpakitlib/_arpakit_project_template/manage/note/note_2.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -60,18 +60,20 @@ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py,sha256=WdE1IWyO
|
|
60
60
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
|
61
61
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_8.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
62
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_9.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
|
+
arpakitlib/_arpakit_project_template/manage/settings_check.py,sha256=JYR-IPgvYQOmJedKY9vOctbxEcUlaxZR-P0JXT9L2JQ,143
|
64
|
+
arpakitlib/_arpakit_project_template/manage/settings_generate_env_example.py,sha256=pRTr6SzBJxDUaxTXZgLJr7rJawHyvpyTJbrJSZW0hEc,330
|
65
|
+
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_check_conn.py,sha256=3Q4QfvFVBZsbMMH5yr6v3a6v6UjQuIEIujlxGpvykNA,190
|
63
66
|
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_init.py,sha256=FqKVuakafDndHKBsyPcSowhss6MZb0Soy5oREUPVLUw,184
|
64
67
|
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_reinit.py,sha256=twBWh64WU-sqHUte8v9ZJUZ_bCsFABExgIWLOnfLu4w,186
|
65
|
-
arpakitlib/_arpakit_project_template/manage/start_api_for_dev_with_reload.py,sha256=xg2SFemhe8KmmoYvaG8zkFZyonzxdxcHuugjS3i0q0I,151
|
66
|
-
arpakitlib/_arpakit_project_template/manage/start_api_for_dev_without_reload.py,sha256=_7Zf0_Wciui4cHJSmpRXYVU7MakWCafIqek52LbfwSI,152
|
67
68
|
arpakitlib/_arpakit_project_template/resource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
69
|
arpakitlib/_arpakit_project_template/resource/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
|
+
arpakitlib/_arpakit_project_template/resource/static/helloworld,sha256=eH7Hbcr9IMGQjrCTahL5Ht0QWrXNfswrGuIDJkg0Xf8,11
|
69
71
|
arpakitlib/_arpakit_project_template/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
72
|
arpakitlib/_arpakit_project_template/src/additional_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
73
|
arpakitlib/_arpakit_project_template/src/additional_model/additional_model.py,sha256=4KCOvto9Hj5eMYpvfaJChghhR9bkCvKluGGPWrTezoY,134
|
72
74
|
arpakitlib/_arpakit_project_template/src/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
75
|
arpakitlib/_arpakit_project_template/src/api/asgi.py,sha256=a5UBxOyNC8NG3E0ayhiDo3t5tPoB3WtOf2gbZJFWBAA,74
|
74
|
-
arpakitlib/_arpakit_project_template/src/api/create_api_app.py,sha256=
|
76
|
+
arpakitlib/_arpakit_project_template/src/api/create_api_app.py,sha256=tltXqT6ET4953QShjqqiwEz1ur_fRuYS5nKoKaUfkqk,2551
|
75
77
|
arpakitlib/_arpakit_project_template/src/api/event.py,sha256=h2UkOd_I643XiIe_xi5n2iSR2C5hy0Z8pGbbIwbJXe0,815
|
76
78
|
arpakitlib/_arpakit_project_template/src/api/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
79
|
arpakitlib/_arpakit_project_template/src/api/router/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -80,17 +82,17 @@ arpakitlib/_arpakit_project_template/src/api/schema/__init__.py,sha256=47DEQpj8H
|
|
80
82
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
83
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/in_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
84
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/out.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
83
|
-
arpakitlib/_arpakit_project_template/src/api/start_api_for_dev.py,sha256=
|
85
|
+
arpakitlib/_arpakit_project_template/src/api/start_api_for_dev.py,sha256=CrcjsDJz5D8DlcANlAb9-yrG3OKLXJC67q-CemxbsV4,280
|
84
86
|
arpakitlib/_arpakit_project_template/src/api/transmitted_api_data.py,sha256=YtpATqzN216e76W5QOuzN-Vo6343PVDiHpKWYQ6oqyU,278
|
85
87
|
arpakitlib/_arpakit_project_template/src/business_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
88
|
arpakitlib/_arpakit_project_template/src/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
89
|
arpakitlib/_arpakit_project_template/src/core/const.py,sha256=CZZew674y7LhCAlYhvuF5cV4Zb9nQ17j2Tcuj2GEBf4,1232
|
88
90
|
arpakitlib/_arpakit_project_template/src/core/operation_executor.py,sha256=oTz6gWnhfOUevjo44OK6lx4f4A9x5SuFJOUsuO-YzIo,591
|
89
91
|
arpakitlib/_arpakit_project_template/src/core/scheduled_operations.py,sha256=W6ALtmW8oNuX0Y03Aqfgb4WlUWKtQetRgv1P3Lp6acE,324
|
90
|
-
arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=
|
92
|
+
arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=Q5qgGRtK1091STtgDL4pzzdu-LTZijKRQ0WtDt0xu9k,1459
|
91
93
|
arpakitlib/_arpakit_project_template/src/core/util.py,sha256=I5Cxd-lXVMnpjMOyfoNcfOdL05xrujXBmYi5d91AjJg,1714
|
92
94
|
arpakitlib/_arpakit_project_template/src/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
93
|
-
arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py,sha256=
|
95
|
+
arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py,sha256=nXtayUkBaVb6tWx5qJgXZLbLOTVAjnSLpSDxBm7yZLc,234
|
94
96
|
arpakitlib/_arpakit_project_template/src/db/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
97
|
arpakitlib/_arpakit_project_template/src/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
98
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py,sha256=3WVPgRsNCIxWpA-6t_Phe-nFULdHPhS1S_DO11XRmqk,80
|
@@ -133,7 +135,7 @@ arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.css,sha256=jzPZlgJTFwSdSphk9C
|
|
133
135
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.css.map,sha256=5wq8eXMLU6Zxb45orZPL1zAsBFJReFw6GjYqGpUX3hg,262650
|
134
136
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.js,sha256=ffrLZHHEQ_g84A-ul3yWa10Kk09waOAxHcQXPuZuavg,339292
|
135
137
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.js.map,sha256=9UhIW7MqCOZPAz1Sl1IKfZUuhWU0p-LJqrnjjJD9Xhc,1159454
|
136
|
-
arpakitlib/ar_fastapi_util.py,sha256=
|
138
|
+
arpakitlib/ar_fastapi_util.py,sha256=vLnLm2ps-nco_0WG-JqULaUyr0HZHO5a6QtoBWlPzPk,24442
|
137
139
|
arpakitlib/ar_file_storage_in_dir_util.py,sha256=D3e3rGuHoI6xqAA5mVvEpVVpOWY1jyjNsjj2UhyHRbE,3674
|
138
140
|
arpakitlib/ar_file_util.py,sha256=XiwmeycxoLqtYnGOu5q6IEaJJXilZvtLvsKDKtwqSLY,137
|
139
141
|
arpakitlib/ar_hash_util.py,sha256=Iqy6KBAOLBQMFLWv676boI5sV7atT2B-fb7aCdHOmIQ,340
|
@@ -153,7 +155,7 @@ arpakitlib/ar_parse_command.py,sha256=-s61xcATIsfw1eV_iD3xi-grsitbGzSDoAFc5V0OFy
|
|
153
155
|
arpakitlib/ar_postgresql_util.py,sha256=1AuLjEaa1Lg4pzn-ukCVnDi35Eg1k91APRTqZhIJAdo,945
|
154
156
|
arpakitlib/ar_run_cmd_util.py,sha256=D_rPavKMmWkQtwvZFz-Io5Ak8eSODHkcFeLPzNVC68g,1072
|
155
157
|
arpakitlib/ar_schedule_uust_api_client_util.py,sha256=JD-hRUQSs-euK0zq9w_4QUfGO00yWM08gllWUVKTtHc,6109
|
156
|
-
arpakitlib/ar_settings_util.py,sha256=
|
158
|
+
arpakitlib/ar_settings_util.py,sha256=95SaC8ROUoFFIZvGsOUmz4OEyn-KospL_EqjFYAJs9U,1231
|
157
159
|
arpakitlib/ar_sleep_util.py,sha256=OaLtRaJQWMkGjfj_mW1RB2P4RaSWsAIH8LUoXqsH0zM,1061
|
158
160
|
arpakitlib/ar_sqlalchemy_model_util.py,sha256=AcLy3NHwdhiJ6zJusSvXzkwrIZCsDnrX5tC6SOaaSrU,4972
|
159
161
|
arpakitlib/ar_sqlalchemy_util.py,sha256=Hcg1THrDsSR_-8dsY1CG3NWPEv0FqCbkPXFXLtjlSJ0,4207
|
@@ -162,9 +164,9 @@ arpakitlib/ar_str_util.py,sha256=oCEtQ_TTn35OEz9jCNLjbhopq76JmaifD_iYR-nEJJ4,214
|
|
162
164
|
arpakitlib/ar_type_util.py,sha256=GNc9PgFKonj5lRlAHSnVPBN5nLIslrG8GTiZHjkf05w,2138
|
163
165
|
arpakitlib/ar_yookassa_api_client_util.py,sha256=sh4fcUkAkdOetFn9JYoTvjcSXP-M1wU04KEY-ECLfLg,5137
|
164
166
|
arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
|
165
|
-
arpakitlib-1.7.
|
166
|
-
arpakitlib-1.7.
|
167
|
-
arpakitlib-1.7.
|
168
|
-
arpakitlib-1.7.
|
169
|
-
arpakitlib-1.7.
|
170
|
-
arpakitlib-1.7.
|
167
|
+
arpakitlib-1.7.29.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
168
|
+
arpakitlib-1.7.29.dist-info/METADATA,sha256=Vjw_Bq2DLwAsM8_rOhNkRXuonWmfmgOD9b1_7it7of4,2331
|
169
|
+
arpakitlib-1.7.29.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
|
170
|
+
arpakitlib-1.7.29.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
171
|
+
arpakitlib-1.7.29.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
|
172
|
+
arpakitlib-1.7.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|