arpakitlib 1.7.66__py3-none-any.whl → 1.7.124__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 +4 -4
- arpakitlib/_arpakit_project_template/manage/poetry_config.sh +2 -0
- arpakitlib/_arpakit_project_template/manage/poetry_self_add_plugin_export.sh +2 -0
- 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/resource/static/healthcheck +1 -0
- arpakitlib/_arpakit_project_template/src/admin1/__init__.py +0 -0
- arpakitlib/_arpakit_project_template/src/admin1/add_admin_in_app.py +25 -0
- arpakitlib/_arpakit_project_template/src/admin1/admin_auth.py +29 -0
- arpakitlib/_arpakit_project_template/src/admin1/model_view.py +19 -0
- arpakitlib/_arpakit_project_template/src/api/auth.py +1 -6
- arpakitlib/_arpakit_project_template/src/api/create_api_app.py +13 -52
- arpakitlib/_arpakit_project_template/src/api/event.py +51 -2
- arpakitlib/_arpakit_project_template/src/api/router/main_router.py +3 -0
- arpakitlib/_arpakit_project_template/src/api/router/v1/get_api_error_info.py +6 -4
- 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/src/core/check_settings.py +12 -0
- arpakitlib/_arpakit_project_template/src/core/generate_settings_env_example.py +16 -0
- arpakitlib/_arpakit_project_template/src/core/settings.py +13 -5
- arpakitlib/_arpakit_project_template/src/core/util.py +0 -18
- arpakitlib/_arpakit_project_template/{manage/sqlalchemy_db_check_conn.py → src/db/check_conn_sqlalchemy_db.py} +2 -1
- arpakitlib/_arpakit_project_template/src/db/const.py +0 -0
- arpakitlib/_arpakit_project_template/src/db/init_sqlalchemy_db.py +11 -0
- arpakitlib/_arpakit_project_template/src/db/reinit_sqlalchemy_db.py +13 -0
- arpakitlib/_arpakit_project_template/src/db/util.py +21 -0
- arpakitlib/_arpakit_project_template/src/operation_execution/operation_executor.py +6 -4
- 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} +7 -5
- arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker.py +19 -0
- arpakitlib/_arpakit_project_template/src/operation_execution/util.py +0 -0
- 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/api_key_util.py +12 -0
- arpakitlib/ar_additional_model_util.py +18 -1
- arpakitlib/ar_arpakit_lib_module_util.py +13 -1
- arpakitlib/ar_arpakit_schedule_uust_api_client_util.py +24 -3
- arpakitlib/ar_arpakitlib_cli_util.py +2 -0
- arpakitlib/ar_base_worker_util.py +67 -18
- arpakitlib/ar_exception_util.py +13 -0
- arpakitlib/ar_fastapi_util.py +129 -98
- arpakitlib/ar_file_util.py +2 -0
- arpakitlib/ar_func_util.py +55 -0
- arpakitlib/ar_json_util.py +11 -9
- arpakitlib/ar_need_type_util.py +8 -1
- arpakitlib/ar_openai_api_client_util.py +16 -2
- arpakitlib/ar_operation_execution_util.py +143 -141
- arpakitlib/ar_schedule_uust_api_client_util.py +13 -6
- arpakitlib/ar_settings_util.py +24 -5
- arpakitlib/ar_sqlalchemy_model_util.py +37 -7
- arpakitlib/ar_ssh_runner_util.py +2 -2
- arpakitlib/ar_str_util.py +30 -1
- arpakitlib/ar_type_util.py +52 -7
- {arpakitlib-1.7.66.dist-info → arpakitlib-1.7.124.dist-info}/METADATA +27 -20
- {arpakitlib-1.7.66.dist-info → arpakitlib-1.7.124.dist-info}/RECORD +70 -62
- {arpakitlib-1.7.66.dist-info → arpakitlib-1.7.124.dist-info}/WHEEL +1 -1
- 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 -18
- arpakitlib/_arpakit_project_template/manage/example_systemd.service +0 -12
- arpakitlib/_arpakit_project_template/manage/requirements.txt +0 -209
- arpakitlib/_arpakit_project_template/manage/settings_check.py +0 -10
- arpakitlib/_arpakit_project_template/manage/settings_generate_env_example.py +0 -13
- arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_init.py +0 -10
- arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_reinit.py +0 -10
- arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker_for_dev.py +0 -16
- {arpakitlib-1.7.66.dist-info → arpakitlib-1.7.124.dist-info}/LICENSE +0 -0
- {arpakitlib-1.7.66.dist-info → arpakitlib-1.7.124.dist-info}/NOTICE +0 -0
- {arpakitlib-1.7.66.dist-info → arpakitlib-1.7.124.dist-info}/entry_points.txt +0 -0
arpakitlib/ar_str_util.py
CHANGED
@@ -86,7 +86,36 @@ def raise_if_string_blank(string: str) -> str:
|
|
86
86
|
|
87
87
|
|
88
88
|
def __example():
|
89
|
-
|
89
|
+
print("str_in:")
|
90
|
+
print(str_in(string="hello", main_string="hello world"))
|
91
|
+
print(str_in(string="bye", main_string="hello world"))
|
92
|
+
print(str_in(string="hello", main_string="hello world", max_diff=6))
|
93
|
+
print(str_in(string="hello", main_string="hello world", max_diff=1))
|
94
|
+
|
95
|
+
print("\nbidirectional_str_in:")
|
96
|
+
print(bidirectional_str_in(string1="hello", string2="hello world"))
|
97
|
+
print(bidirectional_str_in(string1="world", string2="hello world"))
|
98
|
+
|
99
|
+
print("\nstr_startswith:")
|
100
|
+
print(str_startswith(string="hello", main_string="hello world"))
|
101
|
+
print(str_startswith(string="world", main_string="hello world"))
|
102
|
+
|
103
|
+
print("\nbidirectional_str_startswith:")
|
104
|
+
print(bidirectional_str_startswith(string1="hello", string2="hello world"))
|
105
|
+
print(bidirectional_str_startswith(string1="world", string2="hello world"))
|
106
|
+
|
107
|
+
print("\nmake blank_if_none:")
|
108
|
+
print(make_blank_if_none())
|
109
|
+
print(make_blank_if_none(string="test"))
|
110
|
+
|
111
|
+
print("\nremove_html:")
|
112
|
+
print(remove_html(string="<div>Hello <b>World</b></div>"))
|
113
|
+
|
114
|
+
print("\nremove_tags:")
|
115
|
+
print(remove_tags(string="<div>Hello <b>World</b></div>"))
|
116
|
+
|
117
|
+
print("\nremove_tags_and_html:")
|
118
|
+
print(remove_tags_and_html("<div>Hello <b>World</b></div>"))
|
90
119
|
|
91
120
|
|
92
121
|
if __name__ == '__main__':
|
arpakitlib/ar_type_util.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
# arpakit
|
2
|
-
import inspect
|
3
2
|
from typing import Optional, Any
|
4
3
|
|
5
4
|
_ARPAKIT_LIB_MODULE_VERSION = "3.0"
|
@@ -67,11 +66,6 @@ def raise_for_types(comparable, need_types, comment_for_error: Optional[str] = N
|
|
67
66
|
raise TypeError(err)
|
68
67
|
|
69
68
|
|
70
|
-
def raise_if_not_async_func(func: Any):
|
71
|
-
if not inspect.iscoroutinefunction(func):
|
72
|
-
raise TypeError(f"The provided function '{func.__name__}' is not an async function")
|
73
|
-
|
74
|
-
|
75
69
|
def make_none_to_false(v: Any) -> Any:
|
76
70
|
if v is None:
|
77
71
|
return False
|
@@ -91,7 +85,58 @@ def raise_if_not_none(v: Any) -> Any:
|
|
91
85
|
|
92
86
|
|
93
87
|
def __example():
|
94
|
-
|
88
|
+
print("is_set:")
|
89
|
+
print(is_set(v=NotSet)) # False
|
90
|
+
print(is_set(v="hello world")) # True
|
91
|
+
|
92
|
+
print("\nis_not_set:")
|
93
|
+
print(is_not_set(v=NotSet)) # True
|
94
|
+
print(is_not_set(v="hello world")) # False
|
95
|
+
|
96
|
+
print("\nis_set_and_not_none:")
|
97
|
+
print(is_set_and_not_none(v=NotSet)) # False
|
98
|
+
print(is_set_and_not_none(v=None)) # False
|
99
|
+
print(is_set_and_not_none(v=1000)) # True
|
100
|
+
|
101
|
+
print("\nis_not_set_or_none:")
|
102
|
+
print(is_not_set_or_none(v=NotSet)) # True
|
103
|
+
print(is_not_set_or_none(v=None)) # True
|
104
|
+
print(is_not_set_or_none(v=100)) # False
|
105
|
+
|
106
|
+
print("\nmake_none_if_not_set:")
|
107
|
+
print(make_none_if_not_set(v=NotSet)) # None
|
108
|
+
print(make_none_if_not_set(v="hello world")) # hello world
|
109
|
+
|
110
|
+
print("\nmake_none_to_false:")
|
111
|
+
print(make_none_to_false(v=None)) # False
|
112
|
+
print(make_none_to_false(v=True)) # True
|
113
|
+
print(make_none_to_false(v=100)) # 100
|
114
|
+
|
115
|
+
print("\nraise_if_set:")
|
116
|
+
try:
|
117
|
+
raise_if_set(v=100) # raise
|
118
|
+
except ValueError as e:
|
119
|
+
print(e)
|
120
|
+
|
121
|
+
print("\nraise_if_set:")
|
122
|
+
try:
|
123
|
+
raise_if_not_set(v=NotSet) # raise
|
124
|
+
except ValueError as e:
|
125
|
+
print(e)
|
126
|
+
|
127
|
+
print("\nraise_for_type:")
|
128
|
+
try:
|
129
|
+
raise_for_type(comparable="test", need_type=str) # pass
|
130
|
+
raise_for_type(comparable=100, need_type=str) # raise
|
131
|
+
except TypeError as e:
|
132
|
+
print(e)
|
133
|
+
|
134
|
+
print("\nraise_for_types:")
|
135
|
+
try:
|
136
|
+
raise_for_types(comparable="test", need_types=[str, int]) # pass
|
137
|
+
raise_for_types(comparable=100.5, need_types=[str, int], comment_for_error="ops") # raise
|
138
|
+
except TypeError as e:
|
139
|
+
print(e)
|
95
140
|
|
96
141
|
|
97
142
|
if __name__ == '__main__':
|
@@ -1,55 +1,55 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: arpakitlib
|
3
|
-
Version: 1.7.
|
3
|
+
Version: 1.7.124
|
4
4
|
Summary: arpakitlib
|
5
|
-
Home-page: https://github.com/ARPAKIT-Company/arpakitlib
|
6
5
|
License: Apache-2.0
|
7
6
|
Keywords: arpakitlib,arpakit,arpakit-company,arpakitcompany,arpakit_company
|
8
7
|
Author: arpakit
|
9
8
|
Author-email: arpakit@gmail.com
|
10
|
-
Requires-Python: >=3.12,<4.0
|
9
|
+
Requires-Python: >=3.12.4,<4.0
|
11
10
|
Classifier: Development Status :: 5 - Production/Stable
|
12
11
|
Classifier: Intended Audience :: Developers
|
13
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
14
|
-
Classifier: Operating System :: OS Independent
|
15
13
|
Classifier: Programming Language :: Python
|
16
14
|
Classifier: Programming Language :: Python :: 3
|
17
15
|
Classifier: Programming Language :: Python :: 3.12
|
18
|
-
Classifier:
|
16
|
+
Classifier: Operating System :: OS Independent
|
19
17
|
Classifier: Topic :: Software Development :: Libraries
|
20
|
-
Requires-Dist: aiogram (>=3.
|
21
|
-
Requires-Dist: aiohttp-socks (>=0.
|
22
|
-
Requires-Dist: alembic (>=1.14.
|
18
|
+
Requires-Dist: aiogram (>=3.17.0,<4.0.0)
|
19
|
+
Requires-Dist: aiohttp-socks (>=0.10.1,<0.11.0)
|
20
|
+
Requires-Dist: alembic (>=1.14.1,<2.0.0)
|
23
21
|
Requires-Dist: asyncpg (>=0.30.0,<0.31.0)
|
24
|
-
Requires-Dist: asyncssh (>=2.
|
22
|
+
Requires-Dist: asyncssh (>=2.19.0,<3.0.0)
|
25
23
|
Requires-Dist: bs4 (>=0.0.2,<0.0.3)
|
26
|
-
Requires-Dist: cachetools (>=5.5.
|
24
|
+
Requires-Dist: cachetools (>=5.5.1,<6.0.0)
|
27
25
|
Requires-Dist: celery (>=5.4.0,<6.0.0)
|
28
26
|
Requires-Dist: cryptography (>=44.0.0,<45.0.0)
|
29
27
|
Requires-Dist: email-validator (>=2.2.0,<3.0.0)
|
30
|
-
Requires-Dist: emoji (>=2.14.
|
31
|
-
Requires-Dist: fastapi (>=0.115.
|
28
|
+
Requires-Dist: emoji (>=2.14.1,<3.0.0)
|
29
|
+
Requires-Dist: fastapi (>=0.115.6,<0.116.0)
|
32
30
|
Requires-Dist: gunicorn (>=23.0.0,<24.0.0)
|
33
31
|
Requires-Dist: itsdangerous (>=2.2.0,<3.0.0)
|
34
32
|
Requires-Dist: jupyter (>=1.1.1,<2.0.0)
|
35
33
|
Requires-Dist: matplotlib (>=3.10.0,<4.0.0)
|
36
|
-
Requires-Dist: openai (>=1.
|
34
|
+
Requires-Dist: openai (>=1.59.9,<2.0.0)
|
37
35
|
Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
|
38
36
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
39
37
|
Requires-Dist: paramiko (>=3.5.0,<4.0.0)
|
40
|
-
Requires-Dist: poetry (>=
|
38
|
+
Requires-Dist: poetry (>=2.0.1,<3.0.0)
|
41
39
|
Requires-Dist: psycopg2-binary (>=2.9.10,<3.0.0)
|
42
|
-
Requires-Dist: pydantic
|
40
|
+
Requires-Dist: pydantic (>=2.10.5,<3.0.0)
|
41
|
+
Requires-Dist: pydantic-settings (>=2.7.1,<3.0.0)
|
43
42
|
Requires-Dist: pyjwt (>=2.10.1,<3.0.0)
|
44
43
|
Requires-Dist: pymongo (>=4.10.1,<5.0.0)
|
45
44
|
Requires-Dist: pytz (>=2024.2,<2025.0)
|
46
45
|
Requires-Dist: pyzabbix (>=1.3.1,<2.0.0)
|
47
|
-
Requires-Dist: redis (>=5.2.0,<6.0.0)
|
48
46
|
Requires-Dist: requests[socks] (>=2.32.3,<3.0.0)
|
49
47
|
Requires-Dist: sqladmin (>=0.20.1,<0.21.0)
|
50
|
-
Requires-Dist: sqlalchemy (>=2.0.
|
51
|
-
Requires-Dist: twine (>=6.0
|
52
|
-
Requires-Dist: uvicorn (>=0.
|
48
|
+
Requires-Dist: sqlalchemy (>=2.0.37,<3.0.0)
|
49
|
+
Requires-Dist: twine (>=6.1.0,<7.0.0)
|
50
|
+
Requires-Dist: uvicorn (>=0.34.0,<0.35.0)
|
51
|
+
Project-URL: Documentation, https://github.com/ARPAKIT-Company/arpakitlib
|
52
|
+
Project-URL: Homepage, https://github.com/ARPAKIT-Company/arpakitlib
|
53
53
|
Project-URL: Repository, https://github.com/ARPAKIT-Company/arpakitlib
|
54
54
|
Description-Content-Type: text/markdown
|
55
55
|
|
@@ -80,6 +80,13 @@ poetry add arpakitlib
|
|
80
80
|
pip install arpakitlib
|
81
81
|
```
|
82
82
|
|
83
|
+
### Init template
|
84
|
+
|
85
|
+
```
|
86
|
+
# poetry run arpakitlib -c help
|
87
|
+
poetry run arpakitlib -c init_arpakit_project_template -project_dirpath ./ -overwrite_if_exists true -project_name ... -sql_db_port ... (optional) -api_port ... (optional) -ignore_paths_startswith ... (optional) -only_paths_startswith ...(optional)
|
88
|
+
```
|
89
|
+
|
83
90
|
---
|
84
91
|
|
85
92
|
### Links
|
@@ -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=wLzoszIWqIC8qwgJD7FH_2UzKVh4PB7gi030zO6aYbA,485
|
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
|
@@ -39,93 +33,106 @@ arpakitlib/_arpakit_project_template/manage/note/note_5.txt,sha256=47DEQpj8HBSa-
|
|
39
33
|
arpakitlib/_arpakit_project_template/manage/poetry_add_plugin_export.sh,sha256=efbIvqO076HG5W3GGc5Iut9luswswqYYJ6IzzFOUABk,43
|
40
34
|
arpakitlib/_arpakit_project_template/manage/poetry_check.sh,sha256=mxkbFqw-mVlAkP_klLoXDANbIoKEu6Uj98tZ3pLKlpU,19
|
41
35
|
arpakitlib/_arpakit_project_template/manage/poetry_clear_cache.sh,sha256=5NmoMsA377JCeTMLERzE2GZywgi8mXQDTQ_yhIJtR8k,139
|
36
|
+
arpakitlib/_arpakit_project_template/manage/poetry_config.sh,sha256=gIctNLSvRJmER_iU_HwPpHR83adZV12LoXcoWfY9M00,26
|
42
37
|
arpakitlib/_arpakit_project_template/manage/poetry_config_virtualenvs_in_project_true.sh,sha256=CHAGXfmyztxgimUQ4MC4IwnLzd2uZ7Da1Xvem_lw60w,47
|
43
38
|
arpakitlib/_arpakit_project_template/manage/poetry_generate_requirements.txt.sh,sha256=Df2ms0GlmAymMGqf9Bp2i3_DI61Ii1xYKf7S0By7tdw,76
|
44
39
|
arpakitlib/_arpakit_project_template/manage/poetry_install.sh,sha256=oLSrFGHKIRWc-1VEiM9wPRUNPTjtYJ3hEKwbeCpCvlk,153
|
45
40
|
arpakitlib/_arpakit_project_template/manage/poetry_lock.sh,sha256=9oiTdi8ynGQWctQjI3g4ThGkvpT07-g5ajLmG47iVh8,17
|
46
41
|
arpakitlib/_arpakit_project_template/manage/poetry_remove_and_add_arpakitlib.sh,sha256=-DvxXI-oaAQxIZFtiCfNBhqpRgJcWWuxhoHb9Nou0a4,197
|
42
|
+
arpakitlib/_arpakit_project_template/manage/poetry_self_add_plugin_export.sh,sha256=efbIvqO076HG5W3GGc5Iut9luswswqYYJ6IzzFOUABk,43
|
47
43
|
arpakitlib/_arpakit_project_template/manage/poetry_show.sh,sha256=pclR9efCNrrGyJR2HrdDM4PCUFGg0OSlRtjQ3Srv8W8,24
|
48
44
|
arpakitlib/_arpakit_project_template/manage/poetry_show_arpakitlib.sh,sha256=5ibH12wGYc-Cj8zl5abtI_hLVSW0o4ofktt-w7I6wQo,37
|
49
45
|
arpakitlib/_arpakit_project_template/manage/poetry_update.sh,sha256=ZtoXIC4Qq7PMTDxQMwUxvkYC6lTc5LC23ILTywWbyoU,164
|
50
46
|
arpakitlib/_arpakit_project_template/manage/poetry_update_arpakitlib.sh,sha256=hh7vj-yKgKqLfaGb8cjsJ_NTa7fBtE4s3yxzte4D8bw,163
|
51
|
-
arpakitlib/_arpakit_project_template/manage/requirements.txt,sha256=CGgX4eDsmuQN9UP0KZd4J0EeTIJVpdoC6_DyF1U6bco,15651
|
52
47
|
arpakitlib/_arpakit_project_template/manage/sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py,sha256=
|
54
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py,sha256=
|
55
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_3.py,sha256=
|
56
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_4.py,sha256=
|
57
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_5.py,sha256=
|
58
|
-
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py,sha256=
|
59
|
-
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
|
60
55
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_8.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
61
56
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_9.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
|
-
arpakitlib/_arpakit_project_template/manage/settings_check.py,sha256=DeOGoWXgk2_VXpCIFbQgf1k2zcnv4hOLWIVc5BDv80c,260
|
63
|
-
arpakitlib/_arpakit_project_template/manage/settings_generate_env_example.py,sha256=BLLeF4JenexXbO1mMj8X-lB81TG3-QTmN4DjPYEUI8o,288
|
64
|
-
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_check_conn.py,sha256=3Q4QfvFVBZsbMMH5yr6v3a6v6UjQuIEIujlxGpvykNA,190
|
65
|
-
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_init.py,sha256=FqKVuakafDndHKBsyPcSowhss6MZb0Soy5oREUPVLUw,184
|
66
|
-
arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_reinit.py,sha256=twBWh64WU-sqHUte8v9ZJUZ_bCsFABExgIWLOnfLu4w,186
|
67
57
|
arpakitlib/_arpakit_project_template/resource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
58
|
arpakitlib/_arpakit_project_template/resource/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
+
arpakitlib/_arpakit_project_template/resource/static/healthcheck,sha256=IIO7Wvjwlr2-LPSQ7Y8O35hcI6t0_s8zqITDxkYCO8I,11
|
69
60
|
arpakitlib/_arpakit_project_template/resource/static/helloworld,sha256=eH7Hbcr9IMGQjrCTahL5Ht0QWrXNfswrGuIDJkg0Xf8,11
|
70
61
|
arpakitlib/_arpakit_project_template/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
62
|
arpakitlib/_arpakit_project_template/src/additional_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
72
63
|
arpakitlib/_arpakit_project_template/src/additional_model/additional_model.py,sha256=4KCOvto9Hj5eMYpvfaJChghhR9bkCvKluGGPWrTezoY,134
|
64
|
+
arpakitlib/_arpakit_project_template/src/admin1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
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
|
73
68
|
arpakitlib/_arpakit_project_template/src/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
74
69
|
arpakitlib/_arpakit_project_template/src/api/asgi.py,sha256=a5UBxOyNC8NG3E0ayhiDo3t5tPoB3WtOf2gbZJFWBAA,74
|
75
|
-
arpakitlib/_arpakit_project_template/src/api/auth.py,sha256=
|
70
|
+
arpakitlib/_arpakit_project_template/src/api/auth.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
|
76
71
|
arpakitlib/_arpakit_project_template/src/api/const.py,sha256=7d4qD5hedqr7QxVzbfsA7E1bNZn2Pm2U8joXGtpANu0,287
|
77
|
-
arpakitlib/_arpakit_project_template/src/api/create_api_app.py,sha256=
|
78
|
-
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
|
79
74
|
arpakitlib/_arpakit_project_template/src/api/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
80
|
-
arpakitlib/_arpakit_project_template/src/api/router/main_router.py,sha256=
|
75
|
+
arpakitlib/_arpakit_project_template/src/api/router/main_router.py,sha256=Yv699WCJDcdiJMXFg1kPTvolqj-NAGoXfqe-vzbMzIU,228
|
81
76
|
arpakitlib/_arpakit_project_template/src/api/router/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
|
-
arpakitlib/_arpakit_project_template/src/api/router/v1/get_api_error_info.py,sha256=
|
77
|
+
arpakitlib/_arpakit_project_template/src/api/router/v1/get_api_error_info.py,sha256=lz2yH5IjzKvkdAqOErnT4E4DCTwmE1Ru0h_7dc_ZNn4,844
|
83
78
|
arpakitlib/_arpakit_project_template/src/api/router/v1/main_router.py,sha256=fvT-t2c2o6XVVJWiUdNnIWEOE8Q8F4v1Ik1Nae5YqvU,256
|
84
79
|
arpakitlib/_arpakit_project_template/src/api/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
85
80
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
81
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/in_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
82
|
arpakitlib/_arpakit_project_template/src/api/schema/v1/out.py,sha256=odc-UyxBwUPh4t0H6qIuzAsBA_Qrm3H2qP-YBgJpaKc,164
|
88
|
-
arpakitlib/_arpakit_project_template/src/api/
|
89
|
-
arpakitlib/_arpakit_project_template/src/api/
|
90
|
-
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
|
91
86
|
arpakitlib/_arpakit_project_template/src/api/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
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
|
93
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
|
94
92
|
arpakitlib/_arpakit_project_template/src/core/const.py,sha256=CZZew674y7LhCAlYhvuF5cV4Zb9nQ17j2Tcuj2GEBf4,1232
|
95
|
-
arpakitlib/_arpakit_project_template/src/core/
|
96
|
-
arpakitlib/_arpakit_project_template/src/core/
|
93
|
+
arpakitlib/_arpakit_project_template/src/core/generate_settings_env_example.py,sha256=DUfZtJL_iajxdihgPpO1b2Wg9Owe_3AYSUqIlBgCIEI,484
|
94
|
+
arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=Q58I0qHbVCfPtZxGcFKPdFMC8KGWiSR0OsxP_kr4-nc,2378
|
95
|
+
arpakitlib/_arpakit_project_template/src/core/util.py,sha256=5R8gvcZdvuDQes45FBnLC2IDv2Jhajp1VhJJYNKYjMQ,1539
|
97
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
|
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
|
98
101
|
arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py,sha256=nXtayUkBaVb6tWx5qJgXZLbLOTVAjnSLpSDxBm7yZLc,234
|
99
|
-
arpakitlib/_arpakit_project_template/src/db/util.py,sha256=
|
102
|
+
arpakitlib/_arpakit_project_template/src/db/util.py,sha256=8Jg9TtTwvyxVYIN_W5_lk9y-Pyh8To1aMRFUKCRDuuA,550
|
100
103
|
arpakitlib/_arpakit_project_template/src/operation_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
101
104
|
arpakitlib/_arpakit_project_template/src/operation_execution/const.py,sha256=HjupGEDUWVijQlbzxZPI9vBbAVOETUYzYU9pdnc9IcI,176
|
102
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/operation_executor.py,sha256=
|
103
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/scheduled_operations.py,sha256=
|
104
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/
|
105
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/
|
105
|
+
arpakitlib/_arpakit_project_template/src/operation_execution/operation_executor.py,sha256=TuAlF3QPJq-Zsq693NHQ00dvCWAzuwce2q6ozesWFYY,725
|
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
|
106
110
|
arpakitlib/_arpakit_project_template/src/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
111
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py,sha256=3WVPgRsNCIxWpA-6t_Phe-nFULdHPhS1S_DO11XRmqk,80
|
108
112
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_2.py,sha256=MVDc71sj5I1muWin50GwrSxMwYtOOSDOtRmeFErHcXs,80
|
109
113
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_3.py,sha256=89Rg0wubztpCNHBOWkhjZz3nB8Teilrl9xHlJvDWw9o,80
|
110
114
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_4.py,sha256=BlVvIhSFclBMQMHftETS57bRaFpkOdKPrZyxMbYJuDY,80
|
111
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
|
112
119
|
arpakitlib/_arpakit_project_template/src/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
113
|
-
arpakitlib/api_key_util.py,sha256=
|
114
|
-
arpakitlib/ar_additional_model_util.py,sha256=
|
120
|
+
arpakitlib/api_key_util.py,sha256=E84JlJXiDHtxLQmV8BNHvqNKu_G8-Dox0XxknYJQ37Q,422
|
121
|
+
arpakitlib/ar_additional_model_util.py,sha256=GFg-glLCxH9X95R2bhTJsscVwv37FgE1qbaAAyXrnIE,917
|
115
122
|
arpakitlib/ar_aiogram_util.py,sha256=5JPCDZpdBGTE-EIWPRez9amCZAX7XemFIVu5YrQK7Pw,12264
|
116
|
-
arpakitlib/ar_arpakit_lib_module_util.py,sha256=
|
123
|
+
arpakitlib/ar_arpakit_lib_module_util.py,sha256=UEPU8wk29R_bBP_RENnhXYzNbj_RF9FWjowrj_yxWLA,5931
|
117
124
|
arpakitlib/ar_arpakit_project_template_util.py,sha256=AswzQvvb-zfUyrcP4EP0K756YL-oC8fA9VperlPf_d0,3699
|
118
|
-
arpakitlib/ar_arpakit_schedule_uust_api_client_util.py,sha256=
|
119
|
-
arpakitlib/ar_arpakitlib_cli_util.py,sha256=
|
125
|
+
arpakitlib/ar_arpakit_schedule_uust_api_client_util.py,sha256=jGbP6egs2yhgfheyqhM0J-SeM2qp2YrW7dV-u9djv4Q,19223
|
126
|
+
arpakitlib/ar_arpakitlib_cli_util.py,sha256=8lhEDxnwMSRX2PGV2xQtQru1AYKSA92SVolol5u7iBk,3154
|
120
127
|
arpakitlib/ar_base64_util.py,sha256=aZkg2cZTuAaP2IWeG_LXJ6RO7qhyskVwec-Lks0iM-k,676
|
121
|
-
arpakitlib/ar_base_worker_util.py,sha256=
|
128
|
+
arpakitlib/ar_base_worker_util.py,sha256=Qm_C7PFH5W-LPu1AGX1zp29zbqZ04i71Su1U-eeQBkA,5674
|
122
129
|
arpakitlib/ar_cache_file_util.py,sha256=Fo2pH-Zqm966KWFBHG_pbiySGZvhIFCYqy7k1weRfJ0,3476
|
123
130
|
arpakitlib/ar_datetime_util.py,sha256=Xe1NiT9oPQzNSG7RVRkhukhbg4i-hhS5ImmV7sPUc8o,971
|
124
131
|
arpakitlib/ar_dict_util.py,sha256=cF5LQJ6tLqyGoEXfDljMDZrikeZoWPw7CgINHIFGvXM,419
|
125
132
|
arpakitlib/ar_dream_ai_api_client_util.py,sha256=QF9XK7xK5ny1fvkcG4e0pfCySNNFRNPy0x0cmxfsAak,2818
|
126
133
|
arpakitlib/ar_encrypt_decrypt_util.py,sha256=GhWnp7HHkbhwFVVCzO1H07m-5gryr4yjWsXjOaNQm1Y,520
|
127
134
|
arpakitlib/ar_enumeration_util.py,sha256=1dQUEVgJRp0nCO-IrCKv5GTK0QkSzM44M1lOWkmPk3w,2532
|
128
|
-
arpakitlib/ar_exception_util.py,sha256=
|
135
|
+
arpakitlib/ar_exception_util.py,sha256=3hZKsj34TZVdmd4JAQz7w515smWqB8o3gTwAEjuMdnI,408
|
129
136
|
arpakitlib/ar_fastapi_static/healthcheck,sha256=IIO7Wvjwlr2-LPSQ7Y8O35hcI6t0_s8zqITDxkYCO8I,11
|
130
137
|
arpakitlib/ar_fastapi_static/redoc/redoc.standalone.js,sha256=WCuodUNv1qVh0oW5fjnJDwb5AwOue73jKHdI9z8iGKU,909365
|
131
138
|
arpakitlib/ar_fastapi_static/swagger-ui/favicon-16x16.png,sha256=ryStYE3Xs7zaj5dauXMHX0ovcKQIeUShL474tjo-B8I,665
|
@@ -146,38 +153,39 @@ arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.css,sha256=jzPZlgJTFwSdSphk9C
|
|
146
153
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.css.map,sha256=5wq8eXMLU6Zxb45orZPL1zAsBFJReFw6GjYqGpUX3hg,262650
|
147
154
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.js,sha256=ffrLZHHEQ_g84A-ul3yWa10Kk09waOAxHcQXPuZuavg,339292
|
148
155
|
arpakitlib/ar_fastapi_static/swagger-ui/swagger-ui.js.map,sha256=9UhIW7MqCOZPAz1Sl1IKfZUuhWU0p-LJqrnjjJD9Xhc,1159454
|
149
|
-
arpakitlib/ar_fastapi_util.py,sha256=
|
156
|
+
arpakitlib/ar_fastapi_util.py,sha256=jpjTmUJKyx8pcOv3UcZsM1r6jPnK5Y7NYDHLm61HQK4,26228
|
150
157
|
arpakitlib/ar_file_storage_in_dir_util.py,sha256=D3e3rGuHoI6xqAA5mVvEpVVpOWY1jyjNsjj2UhyHRbE,3674
|
151
|
-
arpakitlib/ar_file_util.py,sha256=
|
158
|
+
arpakitlib/ar_file_util.py,sha256=GUdJYm1tUZnYpY-SIPRHAZBHGra8NKy1eYEI0D5AfhY,489
|
159
|
+
arpakitlib/ar_func_util.py,sha256=bCuWbSMoFXBaMNhb89sevj2oaXRk4Jk6Qjot8OXMDT4,1319
|
152
160
|
arpakitlib/ar_hash_util.py,sha256=Iqy6KBAOLBQMFLWv676boI5sV7atT2B-fb7aCdHOmIQ,340
|
153
161
|
arpakitlib/ar_http_request_util.py,sha256=Kp2wKU4wGPsJ6m5sLwCEKWMs3Uqa59SUxhBevU6Gk_s,4328
|
154
162
|
arpakitlib/ar_ip_util.py,sha256=aEAa1Hvobh9DWX7cmBAPLqnXSTiKe2hRk-WJaiKMaI8,1009
|
155
163
|
arpakitlib/ar_json_db_util.py,sha256=CEyhIU4WuNmX5mqwBVYxUKSdpFelXvWmf_tJ1fuxMSE,7187
|
156
|
-
arpakitlib/ar_json_util.py,sha256=
|
164
|
+
arpakitlib/ar_json_util.py,sha256=wJOsN8N7Rs7r8cTgMDXrmFa1GOkcD-LghqFEYXc8zGA,1083
|
157
165
|
arpakitlib/ar_jwt_util.py,sha256=Rhm4ywoTAn6yOV8NLjDASfAtAtheROxxDP40G3XjnuQ,761
|
158
166
|
arpakitlib/ar_list_of_dicts_to_xlsx.py,sha256=MyjEl4Jl4beLVZqLVQMMv0-XDtBD3Xh4Z_ZPDJeFu04,745
|
159
167
|
arpakitlib/ar_list_util.py,sha256=2woOAHAU8oTIiVjZ8GLnx15odEaoQUq3Q0JPxlufFF0,457
|
160
168
|
arpakitlib/ar_logging_util.py,sha256=mx3H6CzX9dsh29ruFmYnva8lL6mwvdBXmeHH9E2tvu8,1678
|
161
169
|
arpakitlib/ar_mongodb_util.py,sha256=2ECkTnGAZ92qxioL-fmN6R4yZOSr3bXdXLWTzT1C3vk,4038
|
162
|
-
arpakitlib/ar_need_type_util.py,sha256=
|
163
|
-
arpakitlib/ar_openai_api_client_util.py,sha256=
|
164
|
-
arpakitlib/ar_operation_execution_util.py,sha256=
|
170
|
+
arpakitlib/ar_need_type_util.py,sha256=GETiREPMEYhch-yU6T--Bdawlbb04Jp1Qy7cOsUlIeA,2228
|
171
|
+
arpakitlib/ar_openai_api_client_util.py,sha256=_XmlApvHFMSyjvZydPa_kASIt9LsFrZmSC7YEzIG8Bg,1806
|
172
|
+
arpakitlib/ar_operation_execution_util.py,sha256=Mu8U6h6WnPPmiNsByT788jroUNQxKHUK4UUTiRpRYYQ,17523
|
165
173
|
arpakitlib/ar_parse_command.py,sha256=-s61xcATIsfw1eV_iD3xi-grsitbGzSDoAFc5V0OFy4,3447
|
166
174
|
arpakitlib/ar_postgresql_util.py,sha256=1AuLjEaa1Lg4pzn-ukCVnDi35Eg1k91APRTqZhIJAdo,945
|
167
175
|
arpakitlib/ar_run_cmd_util.py,sha256=D_rPavKMmWkQtwvZFz-Io5Ak8eSODHkcFeLPzNVC68g,1072
|
168
|
-
arpakitlib/ar_schedule_uust_api_client_util.py,sha256=
|
169
|
-
arpakitlib/ar_settings_util.py,sha256=
|
176
|
+
arpakitlib/ar_schedule_uust_api_client_util.py,sha256=0Ns0mMEXYEkVmP6YTAXHyNcrhNsvCJ8X-G_5XwILhJ4,6855
|
177
|
+
arpakitlib/ar_settings_util.py,sha256=WPlMp4mJdXds2PzmU4-w_poW2hzXlhoTukxKvHXA368,1866
|
170
178
|
arpakitlib/ar_sleep_util.py,sha256=OaLtRaJQWMkGjfj_mW1RB2P4RaSWsAIH8LUoXqsH0zM,1061
|
171
|
-
arpakitlib/ar_sqlalchemy_model_util.py,sha256=
|
179
|
+
arpakitlib/ar_sqlalchemy_model_util.py,sha256=nKJGN32eg3Gn5kmJwHdVJznPT5TydLsfUfwJGdypdUo,6264
|
172
180
|
arpakitlib/ar_sqlalchemy_util.py,sha256=Hcg1THrDsSR_-8dsY1CG3NWPEv0FqCbkPXFXLtjlSJ0,4207
|
173
|
-
arpakitlib/ar_ssh_runner_util.py,sha256=
|
174
|
-
arpakitlib/ar_str_util.py,sha256=
|
175
|
-
arpakitlib/ar_type_util.py,sha256=
|
181
|
+
arpakitlib/ar_ssh_runner_util.py,sha256=e9deuUdBW7Eh0Exx2nTBhk57SaOZYaJaSjNk8q6dbJk,6804
|
182
|
+
arpakitlib/ar_str_util.py,sha256=yU5gOwNXUQaH5b_tM5t6fXUn9oUcv5EQbVnq2wXXIpQ,3378
|
183
|
+
arpakitlib/ar_type_util.py,sha256=BJ5FcS5Vkj9KFNJgoh0qGLazy-wCubqhND3vle0yOTo,3717
|
176
184
|
arpakitlib/ar_yookassa_api_client_util.py,sha256=sh4fcUkAkdOetFn9JYoTvjcSXP-M1wU04KEY-ECLfLg,5137
|
177
185
|
arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
|
178
|
-
arpakitlib-1.7.
|
179
|
-
arpakitlib-1.7.
|
180
|
-
arpakitlib-1.7.
|
181
|
-
arpakitlib-1.7.
|
182
|
-
arpakitlib-1.7.
|
183
|
-
arpakitlib-1.7.
|
186
|
+
arpakitlib-1.7.124.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
187
|
+
arpakitlib-1.7.124.dist-info/METADATA,sha256=Ak_PBD1lcMryp_bzYQsuvFyxlJwDNdFAv6HVIGBskeY,3176
|
188
|
+
arpakitlib-1.7.124.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
|
189
|
+
arpakitlib-1.7.124.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
190
|
+
arpakitlib-1.7.124.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
|
191
|
+
arpakitlib-1.7.124.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,18 +0,0 @@
|
|
1
|
-
[tool.poetry]
|
2
|
-
name = "{PROJECT_NAME}"
|
3
|
-
version = "0.1.0"
|
4
|
-
description = "{PROJECT_NAME}"
|
5
|
-
authors = ["arpakit <arpakit@gmail.com>", "arpakitsupport <support@arpakit.com>"]
|
6
|
-
license = "Apache License 2.0"
|
7
|
-
readme = "README.md"
|
8
|
-
keywords = ["{PROJECT_NAME}", "arpakitlib", "arpakit", "arpakit-company", "arpakitcompany", "arpakit_company"]
|
9
|
-
package-mode = false
|
10
|
-
|
11
|
-
|
12
|
-
[tool.poetry.dependencies]
|
13
|
-
python = "^3.12"
|
14
|
-
|
15
|
-
|
16
|
-
[build-system]
|
17
|
-
requires = ["poetry-core"]
|
18
|
-
build-backend = "poetry.core.masonry.api"
|