arpakitlib 1.7.2__py3-none-any.whl → 1.7.4__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.
Files changed (29) hide show
  1. arpakitlib/_arpakit_project_template/.gitignore +0 -3
  2. arpakitlib/_arpakit_project_template/ARPAKITLIB +1 -0
  3. arpakitlib/_arpakit_project_template/README.md +1 -4
  4. arpakitlib/_arpakit_project_template/manage/example_init_arpakit_project_template.sh +1 -0
  5. arpakitlib/_arpakit_project_template/manage/example_systemd.service +12 -0
  6. arpakitlib/_arpakit_project_template/manage/generate_env_example.py +1 -1
  7. arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_github_1.sh +1 -1
  8. arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_gitlab_1.sh +1 -1
  9. arpakitlib/_arpakit_project_template/manage/git_push_arpakit_github_1.sh +4 -0
  10. arpakitlib/_arpakit_project_template/manage/git_push_arpakit_gitlab_1.sh +4 -0
  11. arpakitlib/_arpakit_project_template/manage/git_set_arpakit_origin.sh +7 -0
  12. arpakitlib/_arpakit_project_template/src/core/settings.py +2 -0
  13. arpakitlib/_arpakit_project_template/src/core/util.py +18 -3
  14. arpakitlib/_arpakit_project_template/src/db/__init__.py +0 -0
  15. arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py +1 -0
  16. arpakitlib/ar_arpakitlib_cli.py +3 -2
  17. arpakitlib/ar_http_request_util.py +5 -0
  18. arpakitlib/ar_project_template_util.py +3 -1
  19. arpakitlib/ar_sqlalchemy_util.py +1 -1
  20. arpakitlib/ar_str_util.py +2 -2
  21. arpakitlib/ar_type_util.py +6 -0
  22. {arpakitlib-1.7.2.dist-info → arpakitlib-1.7.4.dist-info}/METADATA +2 -2
  23. {arpakitlib-1.7.2.dist-info → arpakitlib-1.7.4.dist-info}/RECORD +29 -21
  24. /arpakitlib/_arpakit_project_template/{.env_example → example.env} +0 -0
  25. /arpakitlib/_arpakit_project_template/{pyproject.toml.example → example_pyproject.toml} +0 -0
  26. {arpakitlib-1.7.2.dist-info → arpakitlib-1.7.4.dist-info}/LICENSE +0 -0
  27. {arpakitlib-1.7.2.dist-info → arpakitlib-1.7.4.dist-info}/NOTICE +0 -0
  28. {arpakitlib-1.7.2.dist-info → arpakitlib-1.7.4.dist-info}/WHEEL +0 -0
  29. {arpakitlib-1.7.2.dist-info → arpakitlib-1.7.4.dist-info}/entry_points.txt +0 -0
@@ -41,9 +41,6 @@ config
41
41
  db.sqlite
42
42
  .env_test_prod
43
43
  .api_env
44
- ./manage/Приложение_1.pdf
45
- ./manage/Приложение_2.pdf
46
- ./manage/СхемаРаботы.jpeg
47
44
  test.txt
48
45
  vk_config.v2.json
49
46
  .env_prod
@@ -0,0 +1 @@
1
+ TRUE
@@ -1,6 +1,3 @@
1
1
  # {PROJECT_NAME}
2
2
 
3
- ....
4
-
5
- ## ❤️ Made by ARPAKIT Company ❤️
6
-
3
+ ...
@@ -0,0 +1 @@
1
+ arpakitlib -c init_arpakit_project_template -project_dirpath ./ -overwrite_if_exists ... -project_name ... -ignore_paths_startswith ... -only_paths_startswith ...
@@ -0,0 +1,12 @@
1
+ [Unit]
2
+ Description=...
3
+
4
+ [Service]
5
+ User=...
6
+ WorkingDirectory=...
7
+ ExecStart=...
8
+ RestartSec=5
9
+ Restart=always
10
+
11
+ [Install]
12
+ WantedBy=multi-user.target
@@ -7,7 +7,7 @@ from src.core.settings import Settings
7
7
  def command():
8
8
  env_example = Settings.generate_env_example()
9
9
  print(env_example)
10
- with open(os.path.join(BASE_DIRPATH, ".env_example"), mode="w") as f:
10
+ with open(os.path.join(BASE_DIRPATH, "example.env"), mode="w") as f:
11
11
  f.write(env_example)
12
12
 
13
13
 
@@ -1,4 +1,4 @@
1
1
  cd ..
2
2
  git add .
3
- git commit -m "no_message"
3
+ git commit -m "fix"
4
4
  git push arpakit_company_github_1
@@ -1,4 +1,4 @@
1
1
  cd ..
2
2
  git add .
3
- git commit -m "no_message"
3
+ git commit -m "fix"
4
4
  git push arpakit_company_gitlab_1
@@ -0,0 +1,4 @@
1
+ cd ..
2
+ git add .
3
+ git commit -m "fix"
4
+ git push arpakit_github_1
@@ -0,0 +1,4 @@
1
+ cd ..
2
+ git add .
3
+ git commit -m "fix"
4
+ git push arpakit_gitlab_1
@@ -0,0 +1,7 @@
1
+ cd ..
2
+
3
+ git remote remove arpakit_github_1
4
+ git remote add arpakit_github_1 git@github.com:arpakit/{PROJECT_NAME}.git
5
+
6
+ git remote remove arpakit_gitlab_1
7
+ git remote add arpakit_gitlab_1 git@gitlab.com:arpakit/{PROJECT_NAME}.git
@@ -30,6 +30,8 @@ class Settings(SimpleSettings):
30
30
 
31
31
  dump_dirpath: str = os.path.join(var_dirpath, dump_dirname)
32
32
 
33
+ db_url: str | None = "postgresql://cosmos:cosmos@localhost:5432/cosmos"
34
+
33
35
 
34
36
  @lru_cache()
35
37
  def get_cached_settings() -> Settings:
@@ -1,8 +1,11 @@
1
1
  import asyncio
2
+ import importlib
3
+ from contextlib import suppress
2
4
  from functools import lru_cache
3
5
 
4
6
  from arpakitlib.ar_file_storage_in_dir_util import FileStorageInDir
5
7
  from arpakitlib.ar_logging_util import setup_normal_logging
8
+ from arpakitlib.ar_sqlalchemy_util import SQLAlchemyDB
6
9
  from src.core.settings import get_cached_settings
7
10
 
8
11
 
@@ -37,10 +40,22 @@ def get_cached_dump_file_storage_in_dir() -> FileStorageInDir:
37
40
  return create_dump_file_storage_in_dir()
38
41
 
39
42
 
43
+ def create_sqlalchemy_db() -> SQLAlchemyDB:
44
+ with suppress(Exception):
45
+ importlib.import_module("src.db.sqlalchemy_model")
46
+
47
+ return SQLAlchemyDB(
48
+ db_url=get_cached_settings().db_url,
49
+ )
50
+
51
+
52
+ @lru_cache()
53
+ def get_cached_sqlalchemy_db() -> SQLAlchemyDB:
54
+ return create_sqlalchemy_db()
55
+
56
+
40
57
  def __example():
41
- get_cached_cache_file_storage_in_dir().init()
42
- get_cached_media_file_storage_in_dir().init()
43
- get_cached_dump_file_storage_in_dir().init()
58
+ pass
44
59
 
45
60
 
46
61
  async def __async_example():
@@ -5,7 +5,7 @@ import sys
5
5
  from arpakitlib.ar_need_type_util import parse_need_type, NeedTypes
6
6
  from arpakitlib.ar_parse_command import parse_command
7
7
  from arpakitlib.ar_project_template_util import init_arpakit_project_template
8
- from arpakitlib.ar_str_util import raise_if_blank
8
+ from arpakitlib.ar_str_util import raise_if_string_blank
9
9
 
10
10
 
11
11
  def arpakitlib_cli(*, full_command: str | None = None):
@@ -29,13 +29,14 @@ def arpakitlib_cli(*, full_command: str | None = None):
29
29
  )
30
30
 
31
31
  elif command == "init_arpakit_project_template":
32
- project_dirpath = raise_if_blank(parsed_command.get_value_by_keys(keys=["pd", "project_dirpath"]))
32
+ project_dirpath = raise_if_string_blank(parsed_command.get_value_by_keys(keys=["pd", "project_dirpath"]))
33
33
  overwrite_if_exists: bool = parse_need_type(
34
34
  value=parsed_command.get_value_by_keys(keys=["oie", "overwrite_if_exists"]),
35
35
  need_type=NeedTypes.bool_,
36
36
  allow_none=False
37
37
  )
38
38
  project_name: str = parsed_command.get_value_by_keys(keys=["pm", "project_name"])
39
+ project_name = project_name if project_name.strip() else None
39
40
  ignore_paths_startswith: list[str] | None = parse_need_type(
40
41
  value=parsed_command.get_value_by_keys(keys=["ipsw", "ignore_paths_startswith"]),
41
42
  need_type=NeedTypes.list_of_str,
@@ -1,6 +1,7 @@
1
1
  # arpakit
2
2
 
3
3
  import asyncio
4
+ import logging
4
5
  from datetime import timedelta
5
6
  from typing import Any
6
7
 
@@ -13,6 +14,8 @@ from arpakitlib.ar_type_util import raise_for_type
13
14
 
14
15
  _ARPAKIT_LIB_MODULE_VERSION = "3.0"
15
16
 
17
+ _logger = logging.getLogger(__name__)
18
+
16
19
 
17
20
  def sync_make_http_request(
18
21
  *,
@@ -56,6 +59,7 @@ def sync_make_http_request(
56
59
  response.raise_for_status()
57
60
  return response
58
61
  except BaseException as exception:
62
+ _logger.warning(f"{tries_counter}/{max_tries_} {method} {url} {params}")
59
63
  if tries_counter >= max_tries_:
60
64
  raise exception
61
65
  sync_safe_sleep(timedelta(seconds=0.1).total_seconds())
@@ -101,6 +105,7 @@ async def async_make_http_request(
101
105
  await response.read()
102
106
  return response
103
107
  except BaseException as exception:
108
+ _logger.warning(f"{tries_counter}/{max_tries_} {method} {url} {params}")
104
109
  if tries_counter >= max_tries_:
105
110
  raise exception
106
111
  await async_safe_sleep(timedelta(seconds=0.1).total_seconds())
@@ -3,7 +3,7 @@
3
3
  import logging
4
4
  import os
5
5
 
6
- from arpakitlib.ar_str_util import make_none_if_blank
6
+ from arpakitlib.ar_str_util import make_none_if_blank, raise_if_string_blank
7
7
 
8
8
  _ARPAKIT_LIB_MODULE_VERSION = "3.0"
9
9
 
@@ -18,6 +18,8 @@ def init_arpakit_project_template(
18
18
  ignore_paths_startswith: list[str] | str | None = None,
19
19
  only_paths_startswith: list[str] | str | None = None
20
20
  ):
21
+ raise_if_string_blank(project_dirpath)
22
+
21
23
  if project_name:
22
24
  project_name = project_name.strip()
23
25
  project_name = make_none_if_blank(project_name)
@@ -29,7 +29,7 @@ class SQLAlchemyDB:
29
29
  echo: bool = False,
30
30
  need_include_operation_dbm: bool = False,
31
31
  need_include_story_dbm: bool = False,
32
- models: list[Any] = None
32
+ db_models: list[Any] | None = None
33
33
  ):
34
34
  self._logger = logging.getLogger(self.__class__.__name__)
35
35
  self.need_include_operation_dbm = need_include_operation_dbm
arpakitlib/ar_str_util.py CHANGED
@@ -58,7 +58,7 @@ def make_blank_if_none(string: Optional[str] = None) -> str:
58
58
  return string
59
59
 
60
60
 
61
- def make_none_if_blank(string: Optional[str] = None) -> str:
61
+ def make_none_if_blank(string: Optional[str] = None) -> str | None:
62
62
  if not string:
63
63
  return None
64
64
  return string
@@ -79,7 +79,7 @@ def remove_tags_and_html(string: str) -> str:
79
79
  return remove_tags(remove_html(string))
80
80
 
81
81
 
82
- def raise_if_blank(string: str) -> str:
82
+ def raise_if_string_blank(string: str) -> str:
83
83
  if not string:
84
84
  raise ValueError("not string")
85
85
  return string
@@ -78,6 +78,12 @@ def make_none_to_false(v: Any) -> Any:
78
78
  return v
79
79
 
80
80
 
81
+ def raise_if_none(v: Any) -> Any:
82
+ if v is None:
83
+ raise ValueError(f"v is None, v={v}")
84
+ return v
85
+
86
+
81
87
  def __example():
82
88
  pass
83
89
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: arpakitlib
3
- Version: 1.7.2
3
+ Version: 1.7.4
4
4
  Summary: arpakitlib
5
5
  Home-page: https://github.com/ARPAKIT-Company/arpakitlib
6
6
  License: Apache-2.0
@@ -33,9 +33,9 @@ Requires-Dist: itsdangerous (>=2.2.0,<3.0.0)
33
33
  Requires-Dist: jupyter (>=1.1.1,<2.0.0)
34
34
  Requires-Dist: matplotlib (>=3.10.0,<4.0.0)
35
35
  Requires-Dist: openai (>=1.55.3,<2.0.0)
36
+ Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
36
37
  Requires-Dist: pandas (>=2.2.3,<3.0.0)
37
38
  Requires-Dist: paramiko (>=3.5.0,<4.0.0)
38
- Requires-Dist: psycopg-binary (>=3.2.3,<4.0.0)
39
39
  Requires-Dist: psycopg2-binary (>=2.9.10,<3.0.0)
40
40
  Requires-Dist: pydantic-settings (>=2.6.1,<3.0.0)
41
41
  Requires-Dist: pyjwt (>=2.10.1,<3.0.0)
@@ -1,22 +1,29 @@
1
1
  arpakitlib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- arpakitlib/_arpakit_project_template/.env_example,sha256=yxbxCKH_KxjymRGR1V8szwO9E07sN0as9ZaeN7K5L_E,175
3
- arpakitlib/_arpakit_project_template/.gitignore,sha256=aFRn3xUzXQt4TcxGeEXy9fsbZnoWCk_ZfyWO39EPiGM,529
2
+ arpakitlib/_arpakit_project_template/.gitignore,sha256=VdBkYniyHE4ALbEeuh6kzLMFu1M2iPy7U2x7qs2KeKQ,420
4
3
  arpakitlib/_arpakit_project_template/.python-version,sha256=XMd40XBnlTFfBSmMldd-7VdqXNyFCy6wtxhw5e1mnhc,7
4
+ arpakitlib/_arpakit_project_template/ARPAKITLIB,sha256=3-iAkMXtesLzJXHw_IIv2k2M0oH8cTjHzW22Vvbi0IE,4
5
5
  arpakitlib/_arpakit_project_template/AUTHOR.md,sha256=5s2zJB3cHS_hpNBOGXfQPAfS9vuJ8BqZ6c2kNGBtfhc,65
6
6
  arpakitlib/_arpakit_project_template/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
7
7
  arpakitlib/_arpakit_project_template/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
8
- arpakitlib/_arpakit_project_template/README.md,sha256=n7bVQwXStxdwN07oMF9ot5076qVjTk_H-rmUaSYfHK8,66
8
+ arpakitlib/_arpakit_project_template/README.md,sha256=aR1tz5-7YOpCcs3Jc0C5UkAlYUzMw-x9Wqq4EGcj12A,22
9
+ arpakitlib/_arpakit_project_template/example.env,sha256=yxbxCKH_KxjymRGR1V8szwO9E07sN0as9ZaeN7K5L_E,175
10
+ arpakitlib/_arpakit_project_template/example_pyproject.toml,sha256=Cg8VgGbSXsbvCb63cYwYQAb1bDA49IbuIMP5ShxTMK4,486
9
11
  arpakitlib/_arpakit_project_template/manage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
12
  arpakitlib/_arpakit_project_template/manage/beutify_json.py,sha256=mzmt-5piAHqgihLsqOpPx1JjDc1qA5F1XHBxDdR-BxY,215
11
13
  arpakitlib/_arpakit_project_template/manage/check_logging.py,sha256=rfrl4MK5ItRKaLKb0UU_EfQLckRQSYJ1S_2VAQJQ2Yk,212
12
14
  arpakitlib/_arpakit_project_template/manage/check_settings.py,sha256=JYR-IPgvYQOmJedKY9vOctbxEcUlaxZR-P0JXT9L2JQ,143
13
15
  arpakitlib/_arpakit_project_template/manage/docker_ps.sh,sha256=uwm8vHgeuNLCOn0o9hgP_uc-PUkS9FwLyzZh6ItZ3do,15
14
- arpakitlib/_arpakit_project_template/manage/generate_env_example.py,sha256=gveKEz6zf5rwKNBXtHacPEjxxjPTbLy4n-Ztv0BqCWE,331
16
+ arpakitlib/_arpakit_project_template/manage/example_init_arpakit_project_template.sh,sha256=0J1mESu315fb8KRnUq9SIOg6Oj8QpJgIcjbs8vhvgsQ,162
17
+ arpakitlib/_arpakit_project_template/manage/example_systemd.service,sha256=Cunp3074ZKg1AQiX4Q_Xe5Q39Jca7hQj5ljXqryWwTU,143
18
+ arpakitlib/_arpakit_project_template/manage/generate_env_example.py,sha256=pRTr6SzBJxDUaxTXZgLJr7rJawHyvpyTJbrJSZW0hEc,330
15
19
  arpakitlib/_arpakit_project_template/manage/git_commit.sh,sha256=AW1NEel-ZHaYeVWFlRbgZSYPQdnVKsTkpR_07RQL1Mw,42
16
- arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_github_1.sh,sha256=tFQm6FaJNGKYxaUyXJrbjTUtFazlG06Fm8hPRQDOMxw,77
17
- arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_gitlab_1.sh,sha256=xcP560mLeTYyc-1EWcueaAui31D5OZ_Odd4MXti41r4,77
20
+ arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_github_1.sh,sha256=Sx-OegryHeNTIfAOoCfj3Z3CF-XKEY0AJF5HVJAgGpU,70
21
+ arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_gitlab_1.sh,sha256=OL3mKrRjSXdYuxNA38PRMoeyEr9Qdtv82MhEs8bJuGA,70
22
+ arpakitlib/_arpakit_project_template/manage/git_push_arpakit_github_1.sh,sha256=j2wTeg7_tmJiWEtNAXpXjRSizEauoqF9uM679n6zidU,62
23
+ arpakitlib/_arpakit_project_template/manage/git_push_arpakit_gitlab_1.sh,sha256=W-85-OhGYLTijzM39G0Es74Y0VdbczELwS12owHN_Gs,62
18
24
  arpakitlib/_arpakit_project_template/manage/git_remote_v.sh,sha256=DIcyWmY_mve_CmM1SND2gYgAGO7HaLtso3zvJfMqTRI,19
19
25
  arpakitlib/_arpakit_project_template/manage/git_set_arpakit_company_origin.sh,sha256=qTi-SxgC6CfCTEAje0_XFcQ9wpuiyAZEU4MANeJjdWA,274
26
+ arpakitlib/_arpakit_project_template/manage/git_set_arpakit_origin.sh,sha256=uMtOEDLe_L8SD5cqZ1ZU_pC2C5ZOD-eM8igf1z0LUIk,225
20
27
  arpakitlib/_arpakit_project_template/manage/git_status.sh,sha256=N9JGYX5_UfCdirw4EQYzu4sS7pMLGrF4-QrTSTcpUtA,16
21
28
  arpakitlib/_arpakit_project_template/manage/hello_world.py,sha256=1b1YIedAgtvBttAcKBeF03XsJ_pVKIThsr-0MYw0Uxg,83
22
29
  arpakitlib/_arpakit_project_template/manage/note/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -47,7 +54,6 @@ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py,sha256=WdE1IWyO
47
54
  arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
48
55
  arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_8.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
56
  arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_9.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- arpakitlib/_arpakit_project_template/pyproject.toml.example,sha256=Cg8VgGbSXsbvCb63cYwYQAb1bDA49IbuIMP5ShxTMK4,486
51
57
  arpakitlib/_arpakit_project_template/resource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
58
  arpakitlib/_arpakit_project_template/resource/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
59
  arpakitlib/_arpakit_project_template/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -56,8 +62,10 @@ arpakitlib/_arpakit_project_template/src/additional_model/additional_model.py,sh
56
62
  arpakitlib/_arpakit_project_template/src/business_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
63
  arpakitlib/_arpakit_project_template/src/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
64
  arpakitlib/_arpakit_project_template/src/core/const.py,sha256=CZZew674y7LhCAlYhvuF5cV4Zb9nQ17j2Tcuj2GEBf4,1232
59
- arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=TNS0T9xUPw089wJV10BGoG8LCBOIb30DrDazxP2NPAU,1184
60
- arpakitlib/_arpakit_project_template/src/core/util.py,sha256=EXFC0OqaM9by3jDk6mc2mFO_b9RcLs3VT-qr31QemDc,1387
65
+ arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=OwwGS7znZCBy51nwGUQJOsdkbEf6f404Vga97eXxxxs,1261
66
+ arpakitlib/_arpakit_project_template/src/core/util.py,sha256=fVKgZYbf_QIuvRPA_69O10Xh24q5zl1-yvOy9ZGMbn0,1660
67
+ arpakitlib/_arpakit_project_template/src/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
61
69
  arpakitlib/_arpakit_project_template/src/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
70
  arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py,sha256=3WVPgRsNCIxWpA-6t_Phe-nFULdHPhS1S_DO11XRmqk,80
63
71
  arpakitlib/_arpakit_project_template/src/test_data/make_test_data_2.py,sha256=MVDc71sj5I1muWin50GwrSxMwYtOOSDOtRmeFErHcXs,80
@@ -69,7 +77,7 @@ arpakitlib/ar_additional_model_util.py,sha256=tNzZhZtvtJ1qC6Cn4UnyoEL58HudfpCdQy
69
77
  arpakitlib/ar_aiogram_util.py,sha256=5JPCDZpdBGTE-EIWPRez9amCZAX7XemFIVu5YrQK7Pw,12264
70
78
  arpakitlib/ar_arpakit_lib_module_util.py,sha256=V_mc3Ml73Tzz3arxmwEfIxruKMyrwbe8XZ9FfVDtUXY,5446
71
79
  arpakitlib/ar_arpakit_schedule_uust_api_client_util.py,sha256=SYWWQDohPnw0qpBIu2hEvGZRVdaI4NUUQdEjnMnseo4,18237
72
- arpakitlib/ar_arpakitlib_cli.py,sha256=T-YGAL6hRdrT2x3ug33N3GrWLYKSjK25r9SlaiBT7-M,2366
80
+ arpakitlib/ar_arpakitlib_cli.py,sha256=agGQZijh_qqhg6y_Z7AwsmmvHgpMO8KGG69z9YHU3Rg,2450
73
81
  arpakitlib/ar_base64_util.py,sha256=aZkg2cZTuAaP2IWeG_LXJ6RO7qhyskVwec-Lks0iM-k,676
74
82
  arpakitlib/ar_base_worker_util.py,sha256=fW7kzbo7gKFaF7-l7DnOGTVkt4H_BeHSkTHSoGQR8Fw,3295
75
83
  arpakitlib/ar_cache_file_util.py,sha256=Fo2pH-Zqm966KWFBHG_pbiySGZvhIFCYqy7k1weRfJ0,3476
@@ -102,7 +110,7 @@ arpakitlib/ar_file_storage_in_dir_util.py,sha256=D3e3rGuHoI6xqAA5mVvEpVVpOWY1jyj
102
110
  arpakitlib/ar_file_util.py,sha256=XiwmeycxoLqtYnGOu5q6IEaJJXilZvtLvsKDKtwqSLY,137
103
111
  arpakitlib/ar_hash_util.py,sha256=Iqy6KBAOLBQMFLWv676boI5sV7atT2B-fb7aCdHOmIQ,340
104
112
  arpakitlib/ar_hello_world.py,sha256=5B3GTgxGIFh_s6ttyB4UKn78ncyA_8blRnDT04l-ELg,158
105
- arpakitlib/ar_http_request_util.py,sha256=wqjtzBM2HvBBVV8oLwmT0i0ZeiMZXQJAGcZEhRKuhYE,3425
113
+ arpakitlib/ar_http_request_util.py,sha256=DfzITtgbWJLkyaAIa0cBZZZqLE0EXx-TsHZkiaRy3Tg,3649
106
114
  arpakitlib/ar_ip_util.py,sha256=aEAa1Hvobh9DWX7cmBAPLqnXSTiKe2hRk-WJaiKMaI8,1009
107
115
  arpakitlib/ar_json_db_util.py,sha256=CEyhIU4WuNmX5mqwBVYxUKSdpFelXvWmf_tJ1fuxMSE,7187
108
116
  arpakitlib/ar_json_util.py,sha256=GwHDdrBWiJBHSc07Qe0aN1Gp_uM0pYpTwzU9JAgsKAo,972
@@ -116,21 +124,21 @@ arpakitlib/ar_openai_api_client_util.py,sha256=dHUbfg1sVVCjsNl_fra3iCMEz1bR-Hk9f
116
124
  arpakitlib/ar_operation_execution_util.py,sha256=w_dz4XYEM4WbTxpBoYVkknG3U3_391cJmitgljJJTO0,12373
117
125
  arpakitlib/ar_parse_command.py,sha256=-s61xcATIsfw1eV_iD3xi-grsitbGzSDoAFc5V0OFy4,3447
118
126
  arpakitlib/ar_postgresql_util.py,sha256=1AuLjEaa1Lg4pzn-ukCVnDi35Eg1k91APRTqZhIJAdo,945
119
- arpakitlib/ar_project_template_util.py,sha256=Yh3tzNYq0rrKc1MY-qsW1Ljhi9ADz8nYXMiPDH-e6PQ,3097
127
+ arpakitlib/ar_project_template_util.py,sha256=RpzLFTjutqKmGTI6PrewfJFMwXGz7ZbXJjHjGHh6KpI,3164
120
128
  arpakitlib/ar_run_cmd_util.py,sha256=D_rPavKMmWkQtwvZFz-Io5Ak8eSODHkcFeLPzNVC68g,1072
121
129
  arpakitlib/ar_schedule_uust_api_client_util.py,sha256=JD-hRUQSs-euK0zq9w_4QUfGO00yWM08gllWUVKTtHc,6109
122
130
  arpakitlib/ar_settings_util.py,sha256=NvFzpIaQhlMp-BZwttUY_9gamMC5cpJk2Kp2B3BtMug,1296
123
131
  arpakitlib/ar_sleep_util.py,sha256=OaLtRaJQWMkGjfj_mW1RB2P4RaSWsAIH8LUoXqsH0zM,1061
124
132
  arpakitlib/ar_sqlalchemy_model_util.py,sha256=ttdgOwQfoHTKqgivBtXoSbJoBCASHDjLEFK5tJ9kNNE,4779
125
- arpakitlib/ar_sqlalchemy_util.py,sha256=nBMW9BDfPNsvaPs7tQ6NR1psL4H9eDrm6aZMppSmu3g,4191
133
+ arpakitlib/ar_sqlalchemy_util.py,sha256=1PuNg9vsQcJfuatcrd8xOhkX3znbwVakEYs3YXolKVo,4201
126
134
  arpakitlib/ar_ssh_runner_util.py,sha256=jlnss4V4pziBN1rBzoK_lDiWm6nMOqGXfa6NFJSKH-Y,6796
127
- arpakitlib/ar_str_util.py,sha256=AhcdrEm-pXRilCaDWCdTfVkQSy0SnbE52ur43Ltr6cI,2128
128
- arpakitlib/ar_type_util.py,sha256=5nDnXL5Oyozlg8XvxMrogsoYiG8_atItg46A0mtv-pk,2025
135
+ arpakitlib/ar_str_util.py,sha256=oCEtQ_TTn35OEz9jCNLjbhopq76JmaifD_iYR-nEJJ4,2142
136
+ arpakitlib/ar_type_util.py,sha256=GNc9PgFKonj5lRlAHSnVPBN5nLIslrG8GTiZHjkf05w,2138
129
137
  arpakitlib/ar_yookassa_api_client_util.py,sha256=sh4fcUkAkdOetFn9JYoTvjcSXP-M1wU04KEY-ECLfLg,5137
130
138
  arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
131
- arpakitlib-1.7.2.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
132
- arpakitlib-1.7.2.dist-info/METADATA,sha256=ucnCnuXqt2k92zSNUJwMz7yVN7xbcJJiD5KqQGvH3ok,2738
133
- arpakitlib-1.7.2.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
134
- arpakitlib-1.7.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
135
- arpakitlib-1.7.2.dist-info/entry_points.txt,sha256=VHkTDXDOMrgcNzGfKhEhoOIIz6T8Kkt46hy95Zc1iL0,74
136
- arpakitlib-1.7.2.dist-info/RECORD,,
139
+ arpakitlib-1.7.4.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
140
+ arpakitlib-1.7.4.dist-info/METADATA,sha256=EP_YfbZYQ59ofE7yF6QA7F0fSc3uK9W1cYw3U-7IOjY,2732
141
+ arpakitlib-1.7.4.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
142
+ arpakitlib-1.7.4.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
143
+ arpakitlib-1.7.4.dist-info/entry_points.txt,sha256=VHkTDXDOMrgcNzGfKhEhoOIIz6T8Kkt46hy95Zc1iL0,74
144
+ arpakitlib-1.7.4.dist-info/RECORD,,