maleo-foundation 0.2.94__py3-none-any.whl → 0.2.97__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.
- maleo_foundation/authentication.py +9 -9
- maleo_foundation/authorization.py +2 -2
- maleo_foundation/client/manager.py +11 -2
- maleo_foundation/client/services/encryption/aes.py +2 -2
- maleo_foundation/client/services/encryption/rsa.py +2 -2
- maleo_foundation/client/services/key.py +6 -3
- maleo_foundation/client/services/signature.py +2 -2
- maleo_foundation/client/services/token.py +2 -2
- maleo_foundation/constants.py +7 -7
- maleo_foundation/managers/cache/base.py +5 -1
- maleo_foundation/managers/cache/redis.py +12 -12
- maleo_foundation/managers/client/base.py +8 -8
- maleo_foundation/managers/client/google/base.py +6 -6
- maleo_foundation/managers/client/google/parameter.py +12 -5
- maleo_foundation/managers/client/google/secret.py +22 -7
- maleo_foundation/managers/client/google/storage.py +17 -17
- maleo_foundation/managers/client/maleo.py +9 -9
- maleo_foundation/managers/db.py +12 -12
- maleo_foundation/managers/middleware.py +22 -22
- maleo_foundation/managers/service.py +52 -52
- maleo_foundation/middlewares/authentication.py +11 -8
- maleo_foundation/middlewares/base.py +68 -64
- maleo_foundation/middlewares/cors.py +6 -6
- maleo_foundation/models/responses.py +37 -37
- maleo_foundation/models/schemas/encryption.py +5 -5
- maleo_foundation/models/schemas/general.py +33 -33
- maleo_foundation/models/schemas/hash.py +4 -4
- maleo_foundation/models/schemas/key.py +4 -4
- maleo_foundation/models/schemas/parameter.py +15 -15
- maleo_foundation/models/schemas/result.py +47 -47
- maleo_foundation/models/schemas/signature.py +5 -5
- maleo_foundation/models/schemas/token.py +4 -4
- maleo_foundation/models/transfers/general/__init__.py +63 -18
- maleo_foundation/models/transfers/general/key.py +4 -4
- maleo_foundation/models/transfers/general/token.py +71 -20
- maleo_foundation/models/transfers/parameters/token.py +1 -1
- maleo_foundation/models/transfers/results/client/controllers/http.py +4 -4
- maleo_foundation/models/transfers/results/encryption/aes.py +2 -2
- maleo_foundation/models/transfers/results/encryption/rsa.py +2 -2
- maleo_foundation/models/transfers/results/hash.py +2 -2
- maleo_foundation/models/transfers/results/key.py +3 -3
- maleo_foundation/models/transfers/results/signature.py +2 -2
- maleo_foundation/models/transfers/results/token.py +2 -2
- maleo_foundation/utils/cleaner.py +22 -0
- maleo_foundation/utils/client.py +6 -6
- maleo_foundation/utils/controller.py +8 -8
- maleo_foundation/utils/dependencies/auth.py +2 -2
- maleo_foundation/utils/dependencies/context.py +1 -1
- maleo_foundation/utils/exceptions.py +10 -10
- maleo_foundation/utils/extractor.py +2 -2
- maleo_foundation/utils/formatter/case.py +4 -4
- maleo_foundation/utils/loaders/credential/google.py +3 -1
- maleo_foundation/utils/loaders/json.py +2 -2
- maleo_foundation/utils/loaders/yaml.py +2 -2
- maleo_foundation/utils/logging.py +30 -24
- maleo_foundation/utils/merger.py +5 -2
- maleo_foundation/utils/query.py +50 -46
- maleo_foundation/utils/repository.py +8 -8
- maleo_foundation/utils/searcher.py +4 -1
- {maleo_foundation-0.2.94.dist-info → maleo_foundation-0.2.97.dist-info}/METADATA +1 -1
- {maleo_foundation-0.2.94.dist-info → maleo_foundation-0.2.97.dist-info}/RECORD +63 -62
- {maleo_foundation-0.2.94.dist-info → maleo_foundation-0.2.97.dist-info}/WHEEL +0 -0
- {maleo_foundation-0.2.94.dist-info → maleo_foundation-0.2.97.dist-info}/top_level.txt +0 -0
maleo_foundation/utils/query.py
CHANGED
@@ -11,11 +11,11 @@ from maleo_foundation.extended_types import ExtendedTypes
|
|
11
11
|
class BaseQueryUtils:
|
12
12
|
@staticmethod
|
13
13
|
def filter_column(
|
14
|
-
query:Query,
|
15
|
-
table:Type[DeclarativeMeta],
|
16
|
-
column:str,
|
17
|
-
value:BaseTypes.OptionalAny = None,
|
18
|
-
include_null:bool = False
|
14
|
+
query: Query,
|
15
|
+
table: Type[DeclarativeMeta],
|
16
|
+
column: str,
|
17
|
+
value: BaseTypes.OptionalAny = None,
|
18
|
+
include_null: bool = False
|
19
19
|
) -> Query:
|
20
20
|
column_attr = getattr(table, column, None)
|
21
21
|
if column_attr is None or not isinstance(column_attr, InstrumentedAttribute):
|
@@ -24,21 +24,21 @@ class BaseQueryUtils:
|
|
24
24
|
value_filters = []
|
25
25
|
if value is not None:
|
26
26
|
value_filters.extend([column_attr == val for val in value])
|
27
|
-
if include_null:
|
28
|
-
value_filters.append(column_attr.is_(None))
|
29
27
|
|
30
28
|
if value_filters:
|
29
|
+
if include_null:
|
30
|
+
value_filters.append(column_attr.is_(None))
|
31
31
|
query = query.filter(or_(*value_filters))
|
32
32
|
|
33
33
|
return query
|
34
34
|
|
35
35
|
@staticmethod
|
36
36
|
def filter_ids(
|
37
|
-
query:Query,
|
38
|
-
table:Type[DeclarativeMeta],
|
39
|
-
column:str,
|
40
|
-
ids:BaseTypes.OptionalListOfIntegers = None,
|
41
|
-
include_null:bool = False
|
37
|
+
query: Query,
|
38
|
+
table: Type[DeclarativeMeta],
|
39
|
+
column: str,
|
40
|
+
ids: BaseTypes.OptionalListOfIntegers = None,
|
41
|
+
include_null: bool = False
|
42
42
|
) -> Query:
|
43
43
|
column_attr = getattr(table, column, None)
|
44
44
|
if column_attr is None or not isinstance(column_attr, InstrumentedAttribute):
|
@@ -57,9 +57,9 @@ class BaseQueryUtils:
|
|
57
57
|
|
58
58
|
@staticmethod
|
59
59
|
def filter_timestamps(
|
60
|
-
query:Query,
|
61
|
-
table:Type[DeclarativeMeta],
|
62
|
-
date_filters:ExtendedTypes.ListOfDateFilters
|
60
|
+
query: Query,
|
61
|
+
table: Type[DeclarativeMeta],
|
62
|
+
date_filters: ExtendedTypes.ListOfDateFilters
|
63
63
|
) -> Query:
|
64
64
|
if date_filters and len(date_filters) > 0:
|
65
65
|
for date_filter in date_filters:
|
@@ -85,9 +85,9 @@ class BaseQueryUtils:
|
|
85
85
|
|
86
86
|
@staticmethod
|
87
87
|
def filter_statuses(
|
88
|
-
query:Query,
|
89
|
-
table:Type[DeclarativeMeta],
|
90
|
-
statuses:BaseTypes.OptionalListOfStatuses
|
88
|
+
query: Query,
|
89
|
+
table: Type[DeclarativeMeta],
|
90
|
+
statuses: BaseTypes.OptionalListOfStatuses
|
91
91
|
) -> Query:
|
92
92
|
if statuses is not None:
|
93
93
|
status_filters = [table.status == status for status in statuses]
|
@@ -96,10 +96,10 @@ class BaseQueryUtils:
|
|
96
96
|
|
97
97
|
@staticmethod
|
98
98
|
def filter_is_root(
|
99
|
-
query:Query,
|
100
|
-
table:Type[DeclarativeMeta],
|
101
|
-
parent_column:str="parent_id",
|
102
|
-
is_root:BaseTypes.OptionalBoolean=None
|
99
|
+
query: Query,
|
100
|
+
table: Type[DeclarativeMeta],
|
101
|
+
parent_column: str = "parent_id",
|
102
|
+
is_root: BaseTypes.OptionalBoolean=None
|
103
103
|
) -> Query:
|
104
104
|
parent_attr = getattr(table, parent_column, None)
|
105
105
|
if parent_attr is None or not isinstance(parent_attr, InstrumentedAttribute):
|
@@ -110,12 +110,12 @@ class BaseQueryUtils:
|
|
110
110
|
|
111
111
|
@staticmethod
|
112
112
|
def filter_is_parent(
|
113
|
-
session:Session,
|
114
|
-
query:Query,
|
115
|
-
table:Type[DeclarativeMeta],
|
116
|
-
id_column:str="id",
|
117
|
-
parent_column:str="parent_id",
|
118
|
-
is_parent:BaseTypes.OptionalBoolean=None
|
113
|
+
session: Session,
|
114
|
+
query: Query,
|
115
|
+
table: Type[DeclarativeMeta],
|
116
|
+
id_column: str = "id",
|
117
|
+
parent_column: str = "parent_id",
|
118
|
+
is_parent: BaseTypes.OptionalBoolean = None
|
119
119
|
) -> Query:
|
120
120
|
id_attr = getattr(table, id_column, None)
|
121
121
|
if id_attr is None or not isinstance(id_attr, InstrumentedAttribute):
|
@@ -132,10 +132,10 @@ class BaseQueryUtils:
|
|
132
132
|
|
133
133
|
@staticmethod
|
134
134
|
def filter_is_child(
|
135
|
-
query:Query,
|
136
|
-
table:Type[DeclarativeMeta],
|
137
|
-
parent_column:str = "parent_id",
|
138
|
-
is_child:BaseTypes.OptionalBoolean = None
|
135
|
+
query: Query,
|
136
|
+
table: Type[DeclarativeMeta],
|
137
|
+
parent_column: str = "parent_id",
|
138
|
+
is_child: BaseTypes.OptionalBoolean = None
|
139
139
|
) -> Query:
|
140
140
|
parent_attr = getattr(table, parent_column, None)
|
141
141
|
if parent_attr is None or not isinstance(parent_attr, InstrumentedAttribute):
|
@@ -146,12 +146,12 @@ class BaseQueryUtils:
|
|
146
146
|
|
147
147
|
@staticmethod
|
148
148
|
def filter_is_leaf(
|
149
|
-
session:Session,
|
150
|
-
query:Query,
|
151
|
-
table:Type[DeclarativeMeta],
|
152
|
-
id_column:str="id",
|
153
|
-
parent_column:str="parent_id",
|
154
|
-
is_leaf:BaseTypes.OptionalBoolean=None
|
149
|
+
session: Session,
|
150
|
+
query: Query,
|
151
|
+
table: Type[DeclarativeMeta],
|
152
|
+
id_column: str = "id",
|
153
|
+
parent_column: str = "parent_id",
|
154
|
+
is_leaf: BaseTypes.OptionalBoolean = None
|
155
155
|
) -> Query:
|
156
156
|
id_attr = getattr(table, id_column, None)
|
157
157
|
if id_attr is None or not isinstance(id_attr, InstrumentedAttribute):
|
@@ -168,9 +168,9 @@ class BaseQueryUtils:
|
|
168
168
|
|
169
169
|
@staticmethod
|
170
170
|
def filter_search(
|
171
|
-
query:Query,
|
172
|
-
table:Type[DeclarativeMeta],
|
173
|
-
search:BaseTypes.OptionalString
|
171
|
+
query: Query,
|
172
|
+
table: Type[DeclarativeMeta],
|
173
|
+
search: BaseTypes.OptionalString
|
174
174
|
) -> Query:
|
175
175
|
if search:
|
176
176
|
search_term = f"%{search}%" #* Use wildcard for partial matching
|
@@ -192,9 +192,9 @@ class BaseQueryUtils:
|
|
192
192
|
|
193
193
|
@staticmethod
|
194
194
|
def sort(
|
195
|
-
query:Query,
|
196
|
-
table:Type[DeclarativeMeta],
|
197
|
-
sort_columns:ExtendedTypes.ListOfSortColumns
|
195
|
+
query: Query,
|
196
|
+
table: Type[DeclarativeMeta],
|
197
|
+
sort_columns: ExtendedTypes.ListOfSortColumns
|
198
198
|
) -> Query:
|
199
199
|
for sort_column in sort_columns:
|
200
200
|
try:
|
@@ -206,7 +206,11 @@ class BaseQueryUtils:
|
|
206
206
|
return query
|
207
207
|
|
208
208
|
@staticmethod
|
209
|
-
def paginate(
|
210
|
-
|
209
|
+
def paginate(
|
210
|
+
query: Query,
|
211
|
+
page: int,
|
212
|
+
limit: int
|
213
|
+
) -> Query:
|
214
|
+
offset: int = int((page - 1) * limit) #* Calculate offset based on page
|
211
215
|
query = query.limit(limit=limit).offset(offset=offset)
|
212
216
|
return query
|
@@ -9,21 +9,21 @@ from maleo_foundation.models.transfers.results.service.repository import \
|
|
9
9
|
class BaseRepositoryUtils:
|
10
10
|
@staticmethod
|
11
11
|
def result_processor(
|
12
|
-
fail_class:Type[BaseServiceRepositoryResultsTransfers.Fail],
|
13
|
-
data_found_class:Union[
|
12
|
+
fail_class: Type[BaseServiceRepositoryResultsTransfers.Fail],
|
13
|
+
data_found_class: Union[
|
14
14
|
Type[BaseServiceRepositoryResultsTransfers.SingleData],
|
15
15
|
Type[BaseServiceRepositoryResultsTransfers.UnpaginatedMultipleData],
|
16
16
|
Type[BaseServiceRepositoryResultsTransfers.PaginatedMultipleData]
|
17
17
|
],
|
18
|
-
no_data_class:Optional[Type[BaseServiceRepositoryResultsTransfers.NoData]] = None,
|
18
|
+
no_data_class: Optional[Type[BaseServiceRepositoryResultsTransfers.NoData]] = None,
|
19
19
|
):
|
20
20
|
"""Decorator to handle repository-related exceptions consistently."""
|
21
21
|
def decorator(func):
|
22
|
-
def _processor(result:BaseTypes.StringToAnyDict):
|
22
|
+
def _processor(result: BaseTypes.StringToAnyDict):
|
23
23
|
if "success" not in result and "data" not in result:
|
24
24
|
raise ValueError("Result did not have both 'success' and 'data' field")
|
25
|
-
success:bool = result.get("success")
|
26
|
-
data:BaseTypes.StringToAnyDict = result.get("data")
|
25
|
+
success: bool = result.get("success")
|
26
|
+
data: BaseTypes.StringToAnyDict = result.get("data")
|
27
27
|
if not success:
|
28
28
|
validated_result = fail_class.model_validate(result)
|
29
29
|
return validated_result
|
@@ -40,7 +40,7 @@ class BaseRepositoryUtils:
|
|
40
40
|
@wraps(func)
|
41
41
|
async def async_wrapper(*args, **kwargs):
|
42
42
|
try:
|
43
|
-
result:BaseTypes.StringToAnyDict = await func(*args, **kwargs)
|
43
|
+
result: BaseTypes.StringToAnyDict = await func(*args, **kwargs)
|
44
44
|
return _processor(result=result)
|
45
45
|
except ValidationError as e:
|
46
46
|
raise
|
@@ -51,7 +51,7 @@ class BaseRepositoryUtils:
|
|
51
51
|
@wraps(func)
|
52
52
|
def sync_wrapper(*args, **kwargs):
|
53
53
|
try:
|
54
|
-
result:BaseTypes.StringToAnyDict = func(*args, **kwargs)
|
54
|
+
result: BaseTypes.StringToAnyDict = func(*args, **kwargs)
|
55
55
|
return _processor(result=result)
|
56
56
|
except ValidationError as e:
|
57
57
|
raise
|
@@ -1,20 +1,20 @@
|
|
1
1
|
maleo_foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
maleo_foundation/authentication.py,sha256=
|
3
|
-
maleo_foundation/authorization.py,sha256=
|
4
|
-
maleo_foundation/constants.py,sha256=
|
2
|
+
maleo_foundation/authentication.py,sha256=6Kw-cl9PlxPNc2nD7Z4sYug2_MhRas6IfyVygQyTHlc,1584
|
3
|
+
maleo_foundation/authorization.py,sha256=HGXCJ47AU1YFMDSmGhrMMmlHnAyghcFZVUiPa1FSvog,283
|
4
|
+
maleo_foundation/constants.py,sha256=JLQNTY5LJ0gjsT2aicNTRyi9hcOtk31ffFS6ywZXbZM,1449
|
5
5
|
maleo_foundation/enums.py,sha256=_xPH4Vdg6DmbRKJw9NP0yBbX8IQO-WMZaRrejCITQfI,4905
|
6
6
|
maleo_foundation/extended_types.py,sha256=pIKt-_9tby4rmune3fmWcCW_mohaNRh_1lywBmdc-L4,301
|
7
7
|
maleo_foundation/rest_controller_result.py,sha256=4KbCmk70IEHj1L1bNJfFg1Y3ifnRSnmvK6dYyVJddok,2014
|
8
8
|
maleo_foundation/types.py,sha256=bUcCR-qRlxxttMxJQnVmtBic3EXEd_urcC2P55evWPc,2451
|
9
9
|
maleo_foundation/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
-
maleo_foundation/client/manager.py,sha256=
|
10
|
+
maleo_foundation/client/manager.py,sha256=zI6LCRQmBynK3LYU8tfd9RXE2QIzaOTzl12B24tpAxw,2720
|
11
11
|
maleo_foundation/client/services/__init__.py,sha256=uIBnAeQ9a2otQbUAbKBQfYrkEUugXjxXoV8W5QYHuic,1051
|
12
|
-
maleo_foundation/client/services/key.py,sha256=
|
13
|
-
maleo_foundation/client/services/signature.py,sha256=
|
14
|
-
maleo_foundation/client/services/token.py,sha256=
|
12
|
+
maleo_foundation/client/services/key.py,sha256=NKvJuzPy7zEpH5zcRSnHnMh-fzlVMRML-nk8t_qHJG0,5826
|
13
|
+
maleo_foundation/client/services/signature.py,sha256=zwLMwjE8xfc2xfyN2apH1GJuqyk7fEpIAxMUVe9AAJw,5016
|
14
|
+
maleo_foundation/client/services/token.py,sha256=p9BaxRpv1iAGxSZX-hxyCe4VFbD2puXmPM6_rPHmC4Y,4946
|
15
15
|
maleo_foundation/client/services/encryption/__init__.py,sha256=qK9-RwivJ2xkMIwXI8XM8LmYboRTX6R3G9Nh3RxSdCM,594
|
16
|
-
maleo_foundation/client/services/encryption/aes.py,sha256=
|
17
|
-
maleo_foundation/client/services/encryption/rsa.py,sha256=
|
16
|
+
maleo_foundation/client/services/encryption/aes.py,sha256=1TPkfTa_yRje2XkMp7CN33wFR76c8j_9NbScK2JMzlg,3886
|
17
|
+
maleo_foundation/client/services/encryption/rsa.py,sha256=mfzh5kwbjmypc5iSbRmFYerJJtP1GFCkbq9S2ZX-v1s,5378
|
18
18
|
maleo_foundation/client/services/hash/__init__.py,sha256=A4Olb-RpeNFQEfToU9t8LfZ8e2WXeR8c_grot-JCFjI,756
|
19
19
|
maleo_foundation/client/services/hash/bcrypt.py,sha256=Lc2FGR2oQj5yuq4mHer5NnFjhw-IuPuBp_EijLsOaCk,2231
|
20
20
|
maleo_foundation/client/services/hash/hmac.py,sha256=-L0sTv5tcmfu-UyBD_InpxFJ2w738M76HYmeRg30Yao,2358
|
@@ -32,47 +32,47 @@ maleo_foundation/expanded_types/encryption/__init__.py,sha256=yvqKW_VprQP_3YSL-A
|
|
32
32
|
maleo_foundation/expanded_types/encryption/aes.py,sha256=1rj43qjIO0TePpr1mErT_NJnqFZSgMM9gybfFxsTams,488
|
33
33
|
maleo_foundation/expanded_types/encryption/rsa.py,sha256=Esf_H8nMz2kOLAWa3M7dlD-sFdFIZylNjB_qB20Yaww,488
|
34
34
|
maleo_foundation/managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
maleo_foundation/managers/db.py,sha256=
|
36
|
-
maleo_foundation/managers/middleware.py,sha256=
|
37
|
-
maleo_foundation/managers/service.py,sha256=
|
35
|
+
maleo_foundation/managers/db.py,sha256=qPRm9MI9lJUAdZeJqv6CB3A2xvLzgN-pm-IQtcU9C8w,5352
|
36
|
+
maleo_foundation/managers/middleware.py,sha256=IjHPuOzXKEK44DqhJejJ6wXacAiUi9GwWAdeuwD0lI4,4271
|
37
|
+
maleo_foundation/managers/service.py,sha256=b9rNukydWfA8JnIvEbK5crkv3f1VWS5TKivAObTS9Xc,19334
|
38
38
|
maleo_foundation/managers/cache/__init__.py,sha256=CeY0oof2bVl_v5WS-FKXNwn2gf3xrEMfUsHK9cHo59s,471
|
39
|
-
maleo_foundation/managers/cache/base.py,sha256=
|
40
|
-
maleo_foundation/managers/cache/redis.py,sha256=
|
39
|
+
maleo_foundation/managers/cache/base.py,sha256=oXxeMjw4iptFwvdESeYF0mgmEzoAzzCAQbnYwTO5tZ4,867
|
40
|
+
maleo_foundation/managers/cache/redis.py,sha256=LMxBNCmal6JjsAi7FTeN191PR1zFGw4jjfrJ9lJ_zu0,1162
|
41
41
|
maleo_foundation/managers/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
|
-
maleo_foundation/managers/client/base.py,sha256=
|
43
|
-
maleo_foundation/managers/client/maleo.py,sha256=
|
42
|
+
maleo_foundation/managers/client/base.py,sha256=j5_CsToA_7nn_2mP9TWWz7qKalXSWqxfKY_9gTNGJJA,4282
|
43
|
+
maleo_foundation/managers/client/maleo.py,sha256=JCbuIWu5gW--o7H8xvWtSNb_Of3d05FKLRTcvDciLfE,2662
|
44
44
|
maleo_foundation/managers/client/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
-
maleo_foundation/managers/client/google/base.py,sha256=
|
46
|
-
maleo_foundation/managers/client/google/parameter.py,sha256=
|
47
|
-
maleo_foundation/managers/client/google/secret.py,sha256=
|
48
|
-
maleo_foundation/managers/client/google/storage.py,sha256=
|
49
|
-
maleo_foundation/middlewares/authentication.py,sha256=
|
50
|
-
maleo_foundation/middlewares/base.py,sha256=
|
51
|
-
maleo_foundation/middlewares/cors.py,sha256=
|
45
|
+
maleo_foundation/managers/client/google/base.py,sha256=sxALVZIyKUUbNamMrXSlyb3ftI8wSl5YUlRY2sG-iBg,1383
|
46
|
+
maleo_foundation/managers/client/google/parameter.py,sha256=Jy-rMz_xhepmxBI2rWPxdP8AENBbiApg04nO6cIGXN8,1429
|
47
|
+
maleo_foundation/managers/client/google/secret.py,sha256=m-mjaLvYMLgAEn1OxmP0IVTYFQi1jSpDdutLxNA6t6g,4620
|
48
|
+
maleo_foundation/managers/client/google/storage.py,sha256=lEPw4N07nV9r7KjvF2Pb3RM1ZQBK9Riqj7vh6XOEY5Q,5417
|
49
|
+
maleo_foundation/middlewares/authentication.py,sha256=PkC1mtI1LwX6iBTNvpFf-kxFNt6YkshWupM_lt7CaCI,4851
|
50
|
+
maleo_foundation/middlewares/base.py,sha256=35UEt9gZlQmhp4pmgB2D0qGT8Rxrh2zVCDdO0TIs0N0,16394
|
51
|
+
maleo_foundation/middlewares/cors.py,sha256=9hLh_h253bvIn7-A7mUblyrJQ37XNpV7aLeHW6ZTHz8,2294
|
52
52
|
maleo_foundation/models/__init__.py,sha256=AaKehO7c1HyKhoTGRmNHDddSeBXkW-_YNrpOGBu8Ms8,246
|
53
|
-
maleo_foundation/models/responses.py,sha256=
|
53
|
+
maleo_foundation/models/responses.py,sha256=rhCQ9ERe1BgM2Bx7c4_Qj0Eoq7bJG0xdbnhCiTao6eI,5668
|
54
54
|
maleo_foundation/models/table.py,sha256=yFv9KAr0kp-QqfIFEPXqRn61pQKCCIory1zEL7Y7rVc,1873
|
55
55
|
maleo_foundation/models/schemas/__init__.py,sha256=Xj8Ahsqyra-fmEaVcGPok5GOOsPQlKcknHYMvbjvENA,277
|
56
|
-
maleo_foundation/models/schemas/encryption.py,sha256=
|
57
|
-
maleo_foundation/models/schemas/general.py,sha256=
|
58
|
-
maleo_foundation/models/schemas/hash.py,sha256=
|
59
|
-
maleo_foundation/models/schemas/key.py,sha256=
|
60
|
-
maleo_foundation/models/schemas/parameter.py,sha256=
|
61
|
-
maleo_foundation/models/schemas/result.py,sha256=
|
62
|
-
maleo_foundation/models/schemas/signature.py,sha256
|
63
|
-
maleo_foundation/models/schemas/token.py,sha256=
|
56
|
+
maleo_foundation/models/schemas/encryption.py,sha256=pS-dXfbuyv5Q_sEpzyOI372V-auv1_ex4kWUyG6HbLI,663
|
57
|
+
maleo_foundation/models/schemas/general.py,sha256=3bn2IHAXIvk6udEb662hoVajI_Q-jbjZ2XZgtebonXM,3842
|
58
|
+
maleo_foundation/models/schemas/hash.py,sha256=bvBDB9FEDWV_kHQDSDqwZeGs4X28YZ-eQVqTdHh-p1s,445
|
59
|
+
maleo_foundation/models/schemas/key.py,sha256=rJku4HYNb7XeOefdcUENu2GouNrvGmoRXRk5NHkUM-0,598
|
60
|
+
maleo_foundation/models/schemas/parameter.py,sha256=W86aorAli4Av_pV3_LjCe5o3eLDlZuroMl2BoibP0h8,3512
|
61
|
+
maleo_foundation/models/schemas/result.py,sha256=Utpq7ZPb55Q08-j_P5GukcYnNxaIlHXCEgGlrBqhS_c,3983
|
62
|
+
maleo_foundation/models/schemas/signature.py,sha256=pP78JZpoizQguVKXv4AXQmB8ebVy0BmcIfpEm9_YbRU,625
|
63
|
+
maleo_foundation/models/schemas/token.py,sha256=Ay-ntAiKeBjCT4YYw0S3Zd4e-KvHSYvG_hzCMYzd5qY,567
|
64
64
|
maleo_foundation/models/transfers/__init__.py,sha256=oJLJ3Geeme6vBw7R2Dhvdvg4ziVvzEYAGJaP-tm_90w,299
|
65
|
-
maleo_foundation/models/transfers/general/__init__.py,sha256=
|
66
|
-
maleo_foundation/models/transfers/general/key.py,sha256=
|
65
|
+
maleo_foundation/models/transfers/general/__init__.py,sha256=HiYRMaUXF47Pz9wwWLdHBFI4q0V_78v4SOGZ2qC3upM,4253
|
66
|
+
maleo_foundation/models/transfers/general/key.py,sha256=S37SqD3qwTbgMk7785hW7Kl9d4Kouh4uPZcGoyMQ_-Q,755
|
67
67
|
maleo_foundation/models/transfers/general/signature.py,sha256=J9xQy2HjpCQOnES7RJqsUnDgjFPuakQ1mxyfdTdstSE,297
|
68
|
-
maleo_foundation/models/transfers/general/token.py,sha256=
|
68
|
+
maleo_foundation/models/transfers/general/token.py,sha256=tC0Egskkudf3qPbeeqDsujfqAPJFIeQjG99_ZogpR5o,5079
|
69
69
|
maleo_foundation/models/transfers/parameters/__init__.py,sha256=oKW4RPIEISISRjsJzD8lsCGY1HhZRTzshPpWHcJu86k,353
|
70
70
|
maleo_foundation/models/transfers/parameters/client.py,sha256=wI2-ML99yn5HR0AciFg2C9EQixrWjbIR8x_bDbqKeDM,4069
|
71
71
|
maleo_foundation/models/transfers/parameters/general.py,sha256=-nSIcn0thtodk-69Uwj6qdrX8zfe-PX-gWwD-_VCVyY,779
|
72
72
|
maleo_foundation/models/transfers/parameters/key.py,sha256=ZhWcbPJZvl8AF_qlecG-4-9_Ym6EbU7nngRo3AtbScY,432
|
73
73
|
maleo_foundation/models/transfers/parameters/service.py,sha256=-mCGqGYTuH4tKZXwtFrETlfyVx20Yc2wUfK0Nv4-wtY,6284
|
74
74
|
maleo_foundation/models/transfers/parameters/signature.py,sha256=ysYkALwqNXn13HP8xUOnPlboL9pgFLmQ9f7OpZe9dDw,483
|
75
|
-
maleo_foundation/models/transfers/parameters/token.py,sha256=
|
75
|
+
maleo_foundation/models/transfers/parameters/token.py,sha256=lnGe9KWagmR4U54XTCdp0aXJZ73qdEinvbi45tKxxFg,624
|
76
76
|
maleo_foundation/models/transfers/parameters/encryption/__init__.py,sha256=w1-J_cVp8vPUVaAkTEpTTZ5S6R2wKxpqKj1Eu2cj-w0,322
|
77
77
|
maleo_foundation/models/transfers/parameters/encryption/aes.py,sha256=c8Wdw_E2CMJQ31JWJg2tJWLlBp75FZJLOv1H8aSARF0,464
|
78
78
|
maleo_foundation/models/transfers/parameters/encryption/rsa.py,sha256=K40AM8QsngPgaAdnXZ1XuHpRH99UBpURqgZRkosVTsk,452
|
@@ -81,45 +81,46 @@ maleo_foundation/models/transfers/parameters/hash/bcrypt.py,sha256=BWhapZEb-Rrrr
|
|
81
81
|
maleo_foundation/models/transfers/parameters/hash/hmac.py,sha256=r1Mnzq7pAuJYBGsAkg6VY-y2kzqCPapBJdsvxiO6_JY,392
|
82
82
|
maleo_foundation/models/transfers/parameters/hash/sha256.py,sha256=krK0WFTnFRuxlJIGumcX4UY0A0tDZngZeEZw4R17Smw,300
|
83
83
|
maleo_foundation/models/transfers/results/__init__.py,sha256=0_8uJ1IQW87RZ4nIxzWkQVi3Fxb7B8myZTngXfoxgNc,241
|
84
|
-
maleo_foundation/models/transfers/results/hash.py,sha256=
|
85
|
-
maleo_foundation/models/transfers/results/key.py,sha256=
|
86
|
-
maleo_foundation/models/transfers/results/signature.py,sha256=
|
87
|
-
maleo_foundation/models/transfers/results/token.py,sha256=
|
84
|
+
maleo_foundation/models/transfers/results/hash.py,sha256=_BbUbSnSMEwXgloMNUuMHVPyaYEQCMLLSBJt5I8K2uU,651
|
85
|
+
maleo_foundation/models/transfers/results/key.py,sha256=qN2Qtg1aAch7DZfAg2iZWs5NdzTDUzAQWlDabjAqZeo,887
|
86
|
+
maleo_foundation/models/transfers/results/signature.py,sha256=P4n6Nn1J0hM4Gm5km5FeLCX6iWSMbCpxQygCbfCiyps,665
|
87
|
+
maleo_foundation/models/transfers/results/token.py,sha256=WOYmby70PwHcBm_Qz_wa_qk9h2TaK1-Ztb3ZoCIna4U,631
|
88
88
|
maleo_foundation/models/transfers/results/client/__init__.py,sha256=xBRuY0NUIPpQEGQ2qoBnqLZGX4W1YSrQ0VnDf5OYJBo,290
|
89
89
|
maleo_foundation/models/transfers/results/client/service.py,sha256=7BsyJVUotOz7Ew_EoXwcMpIcU2DdQQh5rOBOOlHbG2k,1192
|
90
90
|
maleo_foundation/models/transfers/results/client/controllers/__init__.py,sha256=x5pcJ33rsG8SqecwL1g762DFoySisTLbZqOqKqKoaKU,173
|
91
|
-
maleo_foundation/models/transfers/results/client/controllers/http.py,sha256=
|
91
|
+
maleo_foundation/models/transfers/results/client/controllers/http.py,sha256=OjtMvXJOqC71qPjAQdpMjIYHLVOwAZtr99CAuNIC--U,1503
|
92
92
|
maleo_foundation/models/transfers/results/encryption/__init__.py,sha256=Uo8lKBcjlvtCjgPk4sz44GY_fjG3QooatbVYBDFwF8g,307
|
93
|
-
maleo_foundation/models/transfers/results/encryption/aes.py,sha256=
|
94
|
-
maleo_foundation/models/transfers/results/encryption/rsa.py,sha256=
|
93
|
+
maleo_foundation/models/transfers/results/encryption/aes.py,sha256=JhsYVSR105mri-NU7E8oNw1JWYJpYOQBxgx3_0eV2Ck,830
|
94
|
+
maleo_foundation/models/transfers/results/encryption/rsa.py,sha256=NaSx1r6xWsaBkEp-5G4_DnlRraD6cNgWudQVTzCWR44,685
|
95
95
|
maleo_foundation/models/transfers/results/service/__init__.py,sha256=qKCJTtuLJeda-xrRL99OVdZR91PLFK1JyYVItjreLbQ,410
|
96
96
|
maleo_foundation/models/transfers/results/service/general.py,sha256=RfxzBNZQhMNwNGYnDOygueK_x-xcYmqmkF3VgiX3SUA,1468
|
97
97
|
maleo_foundation/models/transfers/results/service/repository.py,sha256=djITRZh2jrncxd19MyCYBux8C7u906u224U2DPgAQI8,1471
|
98
98
|
maleo_foundation/models/transfers/results/service/controllers/__init__.py,sha256=HZJWMy2dskzOCzLmp_UaL9rjbQ-sDMI7sd2bXb-4QOU,175
|
99
99
|
maleo_foundation/models/transfers/results/service/controllers/rest.py,sha256=wCuFyOTQkuBs2cqjPsWnPy0XIsCfMqGByhrSy57qp7Y,1107
|
100
100
|
maleo_foundation/utils/__init__.py,sha256=ZZv0NDcTdHsHl51EKfgrlCm8CQmgvyIndMcQABDudN0,391
|
101
|
-
maleo_foundation/utils/
|
102
|
-
maleo_foundation/utils/
|
103
|
-
maleo_foundation/utils/
|
104
|
-
maleo_foundation/utils/
|
105
|
-
maleo_foundation/utils/
|
106
|
-
maleo_foundation/utils/
|
107
|
-
maleo_foundation/utils/
|
108
|
-
maleo_foundation/utils/
|
109
|
-
maleo_foundation/utils/
|
101
|
+
maleo_foundation/utils/cleaner.py,sha256=CqVF3TPLBL50l6QEwDdDme9oJOmQ6S8VD4Yw1riQ2zE,668
|
102
|
+
maleo_foundation/utils/client.py,sha256=CGwn8eH5WlwnE5tPMfMAH5V3BItBgVmYBZnXpLjTVSc,2826
|
103
|
+
maleo_foundation/utils/controller.py,sha256=Ub1R-JN6spmXakYrOY7igwaNt4Sg8LASASdXymxZcCI,6954
|
104
|
+
maleo_foundation/utils/exceptions.py,sha256=z24kzEP2geaAEElxXaEy7ln6KodebXvtlu-h1inZ_nw,6376
|
105
|
+
maleo_foundation/utils/extractor.py,sha256=yS73o13S_hjiSU1PLptg0fF4cSLmC97-2WyvD7sHGeY,2111
|
106
|
+
maleo_foundation/utils/logging.py,sha256=yXo2ztzt5PBEtyPR8OtYhz5Ob5uwDVwa9wpbxnh_pys,7827
|
107
|
+
maleo_foundation/utils/merger.py,sha256=MdocyCOtIhqjcmqx2mJ0V8vtwsrunRXqhRdrBCruh7Q,622
|
108
|
+
maleo_foundation/utils/query.py,sha256=hhISpBAZ4SV_pGf7uGBC6fzLrs_yj5_8gj-kFFeeNrw,8060
|
109
|
+
maleo_foundation/utils/repository.py,sha256=pxpws2PDyXwGACms_1azlabqzT6q1x41aYAQRablSnk,2860
|
110
|
+
maleo_foundation/utils/searcher.py,sha256=aHj3Lm9arrkWT76lYBtsFEJwLMRfHvPeOtVDwlEVgyU,516
|
110
111
|
maleo_foundation/utils/dependencies/__init__.py,sha256=0KKGrdfj8Cc5A4SRk_ZBAxzOP795Mizdb4zIBh07KC4,122
|
111
|
-
maleo_foundation/utils/dependencies/auth.py,sha256=
|
112
|
-
maleo_foundation/utils/dependencies/context.py,sha256=
|
112
|
+
maleo_foundation/utils/dependencies/auth.py,sha256=LmduYWx3SZoVGsvrEMTXUy0Ur_Etkx1Z6rvVuw8a7ME,729
|
113
|
+
maleo_foundation/utils/dependencies/context.py,sha256=ANqynJVME4wl-greJouoSP74cy7NlboI46CheGP2KSY,293
|
113
114
|
maleo_foundation/utils/formatter/__init__.py,sha256=iKf5YCbEdg1qKnFHyKqqcQbqAqEeRUf8mhI3v3dQoj8,78
|
114
|
-
maleo_foundation/utils/formatter/case.py,sha256=
|
115
|
+
maleo_foundation/utils/formatter/case.py,sha256=K2iwVrYXP0HQ5I3VxHYyzxC2LzNjlkiWXjrN2azMIDA,1357
|
115
116
|
maleo_foundation/utils/loaders/__init__.py,sha256=P_3ycGfeDXFjAi8bE4iLWHxBveqUIdpHgGv-klRWM3s,282
|
116
|
-
maleo_foundation/utils/loaders/json.py,sha256=
|
117
|
-
maleo_foundation/utils/loaders/yaml.py,sha256=
|
117
|
+
maleo_foundation/utils/loaders/json.py,sha256=Uw8v_nfkNMPvcpDYrFwqZBkACyxWzzd6M7klhHbo5JI,508
|
118
|
+
maleo_foundation/utils/loaders/yaml.py,sha256=V2AMjkwoxi1awdahifjtEALvUZ11VL9pZWGtQ7qrNJs,503
|
118
119
|
maleo_foundation/utils/loaders/credential/__init__.py,sha256=qopTKvcMVoTFwyRijeg7rejnG4I684FjUwh70tvhtVM,141
|
119
|
-
maleo_foundation/utils/loaders/credential/google.py,sha256=
|
120
|
+
maleo_foundation/utils/loaders/credential/google.py,sha256=yEL0DIVjiKSlZOxogC5pr_NAdWth9dj_ZatLjRsutIk,1269
|
120
121
|
maleo_foundation/utils/loaders/key/__init__.py,sha256=hVygcC2ImHc_aVrSrOmyedR8tMUZokWUKCKOSh5ctbo,106
|
121
122
|
maleo_foundation/utils/loaders/key/rsa.py,sha256=gDhyX6iTFtHiluuhFCozaZ3pOLKU2Y9TlrNMK_GVyGU,3796
|
122
|
-
maleo_foundation-0.2.
|
123
|
-
maleo_foundation-0.2.
|
124
|
-
maleo_foundation-0.2.
|
125
|
-
maleo_foundation-0.2.
|
123
|
+
maleo_foundation-0.2.97.dist-info/METADATA,sha256=oIyGkN6ax_GHGOn_n8uaXuoJ2fVmm8523BnsngIcBhc,3598
|
124
|
+
maleo_foundation-0.2.97.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
125
|
+
maleo_foundation-0.2.97.dist-info/top_level.txt,sha256=_iBos3F_bhEOdjOnzeiEYSrCucasc810xXtLBXI8cQc,17
|
126
|
+
maleo_foundation-0.2.97.dist-info/RECORD,,
|
File without changes
|
File without changes
|