arpakitlib 1.6.82__py3-none-any.whl → 1.6.84__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.
@@ -2,7 +2,6 @@
2
2
  *.log
3
3
  *.crt
4
4
  *.key
5
- *.zip
6
5
  *.session-journal
7
6
  *.ignore
8
7
  ignore*
@@ -13,6 +12,12 @@ ignore*
13
12
  # dirs
14
13
  media
15
14
  .idea
15
+ var
16
+ dump
17
+ dump/*
18
+ var/*
19
+ cache/*
20
+ media/*
16
21
  .venv
17
22
  venv
18
23
  dist
@@ -30,7 +35,7 @@ cache_dir
30
35
  cachedir
31
36
  config
32
37
 
33
- # concrete files
38
+ # files
34
39
  .env
35
40
  .env_docker
36
41
  db.sqlite
@@ -44,4 +49,5 @@ vk_config.v2.json
44
49
  .env_prod
45
50
  test.py
46
51
  test.sh
47
- playground.py
52
+ playground.py
53
+ story.log
@@ -1,2 +1,5 @@
1
1
  cd ..
2
+ echo "yes" | poetry cache clear --all PyPI
3
+ echo "yes" | poetry cache clear --all pypi
4
+ echo "yes" | poetry cache clear --all testpypi
2
5
  poetry install
@@ -1,3 +1,6 @@
1
1
  cd ..
2
+ echo "yes" | poetry cache clear --all PyPI
3
+ echo "yes" | poetry cache clear --all pypi
4
+ echo "yes" | poetry cache clear --all testpypi
2
5
  poetry update
3
6
  poetry lock
@@ -0,0 +1,6 @@
1
+ from arpakitlib.ar_additional_model_util import BaseAM
2
+
3
+
4
+ class ExampleAM(BaseAM):
5
+ name: str = "Name"
6
+ surname: str = "Surname"
@@ -8,6 +8,8 @@ from src.core.const import BASE_DIRPATH, ENV_FILEPATH
8
8
 
9
9
 
10
10
  class Settings(SimpleSettings):
11
+ # ...
12
+
11
13
  var_dirname: str = "var"
12
14
 
13
15
  var_dirpath: str = os.path.join(BASE_DIRPATH, var_dirname)
@@ -15,7 +15,7 @@ def create_cache_file_storage_in_dir() -> FileStorageInDir:
15
15
 
16
16
 
17
17
  @lru_cache()
18
- def get_cache_file_storage_in_dir() -> FileStorageInDir:
18
+ def get_cached_cache_file_storage_in_dir() -> FileStorageInDir:
19
19
  return create_cache_file_storage_in_dir()
20
20
 
21
21
 
@@ -24,7 +24,7 @@ def create_media_file_storage_in_dir() -> FileStorageInDir:
24
24
 
25
25
 
26
26
  @lru_cache()
27
- def get_media_file_storage_in_dir() -> FileStorageInDir:
27
+ def get_cached_media_file_storage_in_dir() -> FileStorageInDir:
28
28
  return create_media_file_storage_in_dir()
29
29
 
30
30
 
@@ -33,7 +33,7 @@ def create_dump_file_storage_in_dir() -> FileStorageInDir:
33
33
 
34
34
 
35
35
  @lru_cache()
36
- def get_dump_file_storage_in_dir() -> FileStorageInDir:
36
+ def get_cached_dump_file_storage_in_dir() -> FileStorageInDir:
37
37
  return create_dump_file_storage_in_dir()
38
38
 
39
39
 
@@ -0,0 +1,8 @@
1
+
2
+ def make_test_data_1():
3
+ pass
4
+
5
+
6
+ async def async_make_test_data_1():
7
+ pass
8
+
@@ -0,0 +1,8 @@
1
+
2
+ def make_test_data_2():
3
+ pass
4
+
5
+
6
+ async def async_make_test_data_2():
7
+ pass
8
+
@@ -0,0 +1,8 @@
1
+
2
+ def make_test_data_3():
3
+ pass
4
+
5
+
6
+ async def async_make_test_data_3():
7
+ pass
8
+
@@ -0,0 +1,8 @@
1
+
2
+ def make_test_data_4():
3
+ pass
4
+
5
+
6
+ async def async_make_test_data_4():
7
+ pass
8
+
@@ -0,0 +1,8 @@
1
+
2
+ def make_test_data_5():
3
+ pass
4
+
5
+
6
+ async def async_make_test_data_5():
7
+ pass
8
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: arpakitlib
3
- Version: 1.6.82
3
+ Version: 1.6.84
4
4
  Summary: arpakitlib
5
5
  Home-page: https://github.com/ARPAKIT-Company/arpakitlib
6
6
  License: Apache-2.0
@@ -1,6 +1,6 @@
1
1
  arpakitlib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  arpakitlib/_arpakit_project_template/.env_example,sha256=yxbxCKH_KxjymRGR1V8szwO9E07sN0as9ZaeN7K5L_E,175
3
- arpakitlib/_arpakit_project_template/.gitignore,sha256=LVqBflpdgeidDY52su41mFA6a9hClSjNG-O0itRyLFc,496
3
+ arpakitlib/_arpakit_project_template/.gitignore,sha256=aFRn3xUzXQt4TcxGeEXy9fsbZnoWCk_ZfyWO39EPiGM,529
4
4
  arpakitlib/_arpakit_project_template/.python-version,sha256=XMd40XBnlTFfBSmMldd-7VdqXNyFCy6wtxhw5e1mnhc,7
5
5
  arpakitlib/_arpakit_project_template/AUTHOR.md,sha256=5s2zJB3cHS_hpNBOGXfQPAfS9vuJ8BqZ6c2kNGBtfhc,65
6
6
  arpakitlib/_arpakit_project_template/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
@@ -29,11 +29,11 @@ arpakitlib/_arpakit_project_template/manage/poetry_check.sh,sha256=mxkbFqw-mVlAk
29
29
  arpakitlib/_arpakit_project_template/manage/poetry_clear_cache.sh,sha256=5NmoMsA377JCeTMLERzE2GZywgi8mXQDTQ_yhIJtR8k,139
30
30
  arpakitlib/_arpakit_project_template/manage/poetry_config_virtualenvs_in_project_true.sh,sha256=CHAGXfmyztxgimUQ4MC4IwnLzd2uZ7Da1Xvem_lw60w,47
31
31
  arpakitlib/_arpakit_project_template/manage/poetry_generate_requirements.txt.sh,sha256=Df2ms0GlmAymMGqf9Bp2i3_DI61Ii1xYKf7S0By7tdw,76
32
- arpakitlib/_arpakit_project_template/manage/poetry_install.sh,sha256=82N5l6Em507FPqY9OVJe1UN6YYvkO3mPMLbSQTUcUvY,20
32
+ arpakitlib/_arpakit_project_template/manage/poetry_install.sh,sha256=oLSrFGHKIRWc-1VEiM9wPRUNPTjtYJ3hEKwbeCpCvlk,153
33
33
  arpakitlib/_arpakit_project_template/manage/poetry_lock.sh,sha256=9oiTdi8ynGQWctQjI3g4ThGkvpT07-g5ajLmG47iVh8,17
34
34
  arpakitlib/_arpakit_project_template/manage/poetry_remove_and_add_arpakitlib.sh,sha256=-DvxXI-oaAQxIZFtiCfNBhqpRgJcWWuxhoHb9Nou0a4,197
35
35
  arpakitlib/_arpakit_project_template/manage/poetry_show.sh,sha256=pclR9efCNrrGyJR2HrdDM4PCUFGg0OSlRtjQ3Srv8W8,24
36
- arpakitlib/_arpakit_project_template/manage/poetry_update.sh,sha256=49tIXIzfXanbN5IIM6mkYcHRZQOlu-uHHRqVg3EWosU,31
36
+ arpakitlib/_arpakit_project_template/manage/poetry_update.sh,sha256=ZtoXIC4Qq7PMTDxQMwUxvkYC6lTc5LC23ILTywWbyoU,164
37
37
  arpakitlib/_arpakit_project_template/manage/poetry_update_arpakitlib.sh,sha256=chVSeDzTeKzwKld6h2kBx_Gd0dU2DZf0lJGlgPQtBfs,164
38
38
  arpakitlib/_arpakit_project_template/manage/sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
39
  arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
@@ -50,18 +50,18 @@ arpakitlib/_arpakit_project_template/resource/__init__.py,sha256=47DEQpj8HBSa-_T
50
50
  arpakitlib/_arpakit_project_template/resource/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
51
  arpakitlib/_arpakit_project_template/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
52
  arpakitlib/_arpakit_project_template/src/additional_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- arpakitlib/_arpakit_project_template/src/additional_model/additional_model.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ arpakitlib/_arpakit_project_template/src/additional_model/additional_model.py,sha256=4KCOvto9Hj5eMYpvfaJChghhR9bkCvKluGGPWrTezoY,134
54
54
  arpakitlib/_arpakit_project_template/src/business_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  arpakitlib/_arpakit_project_template/src/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  arpakitlib/_arpakit_project_template/src/core/const.py,sha256=CZZew674y7LhCAlYhvuF5cV4Zb9nQ17j2Tcuj2GEBf4,1232
57
- arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=rXtcN5dEG43JjO8fZqOcd-WUbNsvNx22BVQCHWWNSYM,1173
58
- arpakitlib/_arpakit_project_template/src/core/util.py,sha256=ZZght6efPJT71lpyuopbZWQW-YhbuqekZvkzHVy5xlY,1226
57
+ arpakitlib/_arpakit_project_template/src/core/settings.py,sha256=TNS0T9xUPw089wJV10BGoG8LCBOIb30DrDazxP2NPAU,1184
58
+ arpakitlib/_arpakit_project_template/src/core/util.py,sha256=qT8qsVWn30BcUfe03NE_ltE6tOqiKW2FoSBZy4Ec4Do,1247
59
59
  arpakitlib/_arpakit_project_template/src/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
- arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
- arpakitlib/_arpakit_project_template/src/test_data/make_test_data_2.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
- arpakitlib/_arpakit_project_template/src/test_data/make_test_data_3.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
- arpakitlib/_arpakit_project_template/src/test_data/make_test_data_4.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- arpakitlib/_arpakit_project_template/src/test_data/make_test_data_5.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py,sha256=F7c6gRJUPjS14oLEDvRGA34yEabpnb5VH59N_xxkqrI,82
61
+ arpakitlib/_arpakit_project_template/src/test_data/make_test_data_2.py,sha256=8fIBiguJWvQJscQzDDBWdk-XeDQNAMBKULVV7RjHoR0,82
62
+ arpakitlib/_arpakit_project_template/src/test_data/make_test_data_3.py,sha256=20He7mIb7cUM16he-LQzr5GRk4b9VPXCk8omn-s31yg,82
63
+ arpakitlib/_arpakit_project_template/src/test_data/make_test_data_4.py,sha256=WqxgOzaIDsmIER1nFIxrywtKceyvkqtLlyt2ybTxSw0,82
64
+ arpakitlib/_arpakit_project_template/src/test_data/make_test_data_5.py,sha256=ogTmetjQiRa57TKNfVH5A6GFTqBrU1Js0vTok6jlL_A,82
65
65
  arpakitlib/_arpakit_project_template/src/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
66
  arpakitlib/ar_additional_model_util.py,sha256=tNzZhZtvtJ1qC6Cn4UnyoEL58HudfpCdQy5ftkCqyik,473
67
67
  arpakitlib/ar_aiogram_util.py,sha256=uodUia6S_tLGVk88JltwRhoT9iMIekOwsrXUnCOzf3g,12526
@@ -126,9 +126,9 @@ arpakitlib/ar_str_util.py,sha256=AhcdrEm-pXRilCaDWCdTfVkQSy0SnbE52ur43Ltr6cI,212
126
126
  arpakitlib/ar_type_util.py,sha256=5nDnXL5Oyozlg8XvxMrogsoYiG8_atItg46A0mtv-pk,2025
127
127
  arpakitlib/ar_yookassa_api_client_util.py,sha256=5GMvu8paByni8buhc1vpHB7n6oXe0gPfj1LSvnyZCrQ,5307
128
128
  arpakitlib/ar_zabbix_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
129
- arpakitlib-1.6.82.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
130
- arpakitlib-1.6.82.dist-info/METADATA,sha256=1HBtB90q1j5HwDuJ_7jscK9WbeTXbknp8dMMf5wd4Ag,2739
131
- arpakitlib-1.6.82.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
132
- arpakitlib-1.6.82.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
133
- arpakitlib-1.6.82.dist-info/entry_points.txt,sha256=VHkTDXDOMrgcNzGfKhEhoOIIz6T8Kkt46hy95Zc1iL0,74
134
- arpakitlib-1.6.82.dist-info/RECORD,,
129
+ arpakitlib-1.6.84.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
130
+ arpakitlib-1.6.84.dist-info/METADATA,sha256=W1B0dgeE4pMnwsVu_uwSqSuHEJxhl-Po0Eo_HlSxxmw,2739
131
+ arpakitlib-1.6.84.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
132
+ arpakitlib-1.6.84.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
133
+ arpakitlib-1.6.84.dist-info/entry_points.txt,sha256=VHkTDXDOMrgcNzGfKhEhoOIIz6T8Kkt46hy95Zc1iL0,74
134
+ arpakitlib-1.6.84.dist-info/RECORD,,