arpakitlib 1.6.82__py3-none-any.whl → 1.6.83__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.
@@ -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.83
4
4
  Summary: arpakitlib
5
5
  Home-page: https://github.com/ARPAKIT-Company/arpakitlib
6
6
  License: Apache-2.0
@@ -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.83.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
130
+ arpakitlib-1.6.83.dist-info/METADATA,sha256=Y-GHzdrHSOuunuoyxKueRb72l4QWRYGRuVMEHIOF0pU,2739
131
+ arpakitlib-1.6.83.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
132
+ arpakitlib-1.6.83.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
133
+ arpakitlib-1.6.83.dist-info/entry_points.txt,sha256=VHkTDXDOMrgcNzGfKhEhoOIIz6T8Kkt46hy95Zc1iL0,74
134
+ arpakitlib-1.6.83.dist-info/RECORD,,