orionis 0.435.0__py3-none-any.whl → 0.436.0__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.
- orionis/metadata/framework.py +1 -1
- orionis/services/asynchrony/contracts/coroutines.py +5 -10
- orionis/services/asynchrony/coroutines.py +8 -23
- orionis/services/asynchrony/exceptions/exception.py +3 -5
- orionis/services/environment/contracts/caster.py +8 -9
- orionis/services/environment/contracts/env.py +9 -9
- orionis/services/environment/core/dot_env.py +47 -71
- orionis/services/environment/dynamic/caster.py +191 -220
- orionis/services/environment/enums/__init__.py +5 -0
- orionis/services/environment/enums/value_type.py +22 -25
- orionis/services/environment/env.py +28 -12
- orionis/services/environment/exceptions/exception.py +6 -2
- orionis/services/environment/exceptions/value.py +6 -2
- orionis/services/environment/helpers/functions.py +5 -3
- orionis/services/environment/key/key_generator.py +8 -12
- orionis/services/environment/validators/__init__.py +7 -0
- orionis/services/environment/validators/key_name.py +5 -6
- orionis/services/environment/validators/types.py +29 -13
- {orionis-0.435.0.dist-info → orionis-0.436.0.dist-info}/METADATA +1 -1
- {orionis-0.435.0.dist-info → orionis-0.436.0.dist-info}/RECORD +24 -24
- {orionis-0.435.0.dist-info → orionis-0.436.0.dist-info}/WHEEL +0 -0
- {orionis-0.435.0.dist-info → orionis-0.436.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.435.0.dist-info → orionis-0.436.0.dist-info}/top_level.txt +0 -0
- {orionis-0.435.0.dist-info → orionis-0.436.0.dist-info}/zip-safe +0 -0
|
@@ -2,33 +2,30 @@ from enum import Enum
|
|
|
2
2
|
|
|
3
3
|
class EnvironmentValueType(Enum):
|
|
4
4
|
"""
|
|
5
|
-
Enum representing supported environment variable
|
|
5
|
+
Enum representing the supported types for casting environment variable values.
|
|
6
6
|
|
|
7
7
|
Attributes
|
|
8
8
|
----------
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
-------
|
|
30
|
-
EnvCastType
|
|
31
|
-
An enumeration member representing the desired cast type.
|
|
9
|
+
BASE64 : str
|
|
10
|
+
Represents a base64 encoded value.
|
|
11
|
+
PATH : str
|
|
12
|
+
Represents a file system path.
|
|
13
|
+
STR : str
|
|
14
|
+
Represents a string value.
|
|
15
|
+
INT : str
|
|
16
|
+
Represents an integer value.
|
|
17
|
+
FLOAT : str
|
|
18
|
+
Represents a floating-point value.
|
|
19
|
+
BOOL : str
|
|
20
|
+
Represents a boolean value.
|
|
21
|
+
LIST : str
|
|
22
|
+
Represents a list value.
|
|
23
|
+
DICT : str
|
|
24
|
+
Represents a dictionary value.
|
|
25
|
+
TUPLE : str
|
|
26
|
+
Represents a tuple value.
|
|
27
|
+
SET : str
|
|
28
|
+
Represents a set value.
|
|
32
29
|
"""
|
|
33
30
|
|
|
34
31
|
BASE64 = 'base64' # Represents a base64 encoded type
|
|
@@ -40,4 +37,4 @@ class EnvironmentValueType(Enum):
|
|
|
40
37
|
LIST = 'list' # Represents a list type
|
|
41
38
|
DICT = 'dict' # Represents a dictionary type
|
|
42
39
|
TUPLE = 'tuple' # Represents a tuple type
|
|
43
|
-
SET = 'set' # Represents a set type
|
|
40
|
+
SET = 'set' # Represents a set type
|
|
@@ -7,72 +7,88 @@ class Env(IEnv):
|
|
|
7
7
|
@staticmethod
|
|
8
8
|
def get(key: str, default: Any = None) -> Any:
|
|
9
9
|
"""
|
|
10
|
-
Retrieve the value of an environment variable by key.
|
|
10
|
+
Retrieve the value of an environment variable by its key.
|
|
11
11
|
|
|
12
12
|
Parameters
|
|
13
13
|
----------
|
|
14
14
|
key : str
|
|
15
|
-
The
|
|
15
|
+
The environment variable name to look up.
|
|
16
16
|
default : Any, optional
|
|
17
|
-
|
|
17
|
+
Value to return if the key is not found. Defaults to None.
|
|
18
18
|
|
|
19
19
|
Returns
|
|
20
20
|
-------
|
|
21
21
|
Any
|
|
22
|
-
The value of the environment variable if
|
|
22
|
+
The value of the environment variable if present, otherwise `default`.
|
|
23
23
|
"""
|
|
24
|
+
|
|
25
|
+
# Create a new DotEnv instance to access environment variables
|
|
24
26
|
dotenv = DotEnv()
|
|
27
|
+
|
|
28
|
+
# Retrieve the value for the given key, or return default if not found
|
|
25
29
|
return dotenv.get(key, default)
|
|
26
30
|
|
|
27
31
|
@staticmethod
|
|
28
32
|
def set(key: str, value: str, type_hint: str = None) -> bool:
|
|
29
33
|
"""
|
|
30
|
-
Set an environment variable in the .env file.
|
|
34
|
+
Set or update an environment variable in the .env file.
|
|
31
35
|
|
|
32
36
|
Parameters
|
|
33
37
|
----------
|
|
34
38
|
key : str
|
|
35
|
-
The
|
|
39
|
+
The environment variable name to set.
|
|
36
40
|
value : str
|
|
37
41
|
The value to assign to the environment variable.
|
|
38
42
|
type_hint : str, optional
|
|
39
|
-
|
|
43
|
+
Optional type hint for the variable (e.g., 'str', 'int'). Defaults to None.
|
|
40
44
|
|
|
41
45
|
Returns
|
|
42
46
|
-------
|
|
43
47
|
bool
|
|
44
48
|
True if the variable was set successfully, False otherwise.
|
|
45
49
|
"""
|
|
50
|
+
|
|
51
|
+
# Create a new DotEnv instance to modify environment variables
|
|
46
52
|
dotenv = DotEnv()
|
|
53
|
+
|
|
54
|
+
# Set the environment variable with the specified key, value, and optional type hint
|
|
47
55
|
return dotenv.set(key, value, type_hint)
|
|
48
56
|
|
|
49
57
|
@staticmethod
|
|
50
58
|
def unset(key: str) -> bool:
|
|
51
59
|
"""
|
|
52
|
-
Remove
|
|
60
|
+
Remove an environment variable from the .env file.
|
|
53
61
|
|
|
54
62
|
Parameters
|
|
55
63
|
----------
|
|
56
64
|
key : str
|
|
57
|
-
The
|
|
65
|
+
The environment variable name to remove.
|
|
58
66
|
|
|
59
67
|
Returns
|
|
60
68
|
-------
|
|
61
69
|
bool
|
|
62
|
-
True if the variable was successfully
|
|
70
|
+
True if the variable was removed successfully, False otherwise.
|
|
63
71
|
"""
|
|
72
|
+
|
|
73
|
+
# Create a new DotEnv instance to remove environment variables
|
|
64
74
|
dotenv = DotEnv()
|
|
75
|
+
|
|
76
|
+
# Remove the environment variable with the specified key
|
|
65
77
|
return dotenv.unset(key)
|
|
66
78
|
|
|
67
79
|
@staticmethod
|
|
68
80
|
def all() -> Dict[str, Any]:
|
|
69
81
|
"""
|
|
70
|
-
|
|
82
|
+
Get all environment variables as a dictionary.
|
|
71
83
|
|
|
72
84
|
Returns
|
|
73
85
|
-------
|
|
74
86
|
dict of str to Any
|
|
75
|
-
|
|
87
|
+
Dictionary containing all environment variables loaded by DotEnv.
|
|
76
88
|
"""
|
|
89
|
+
|
|
90
|
+
# Create a new DotEnv instance to access all environment variables
|
|
77
91
|
dotenv = DotEnv()
|
|
92
|
+
|
|
93
|
+
# Return all environment variables as a dictionary
|
|
78
94
|
return dotenv.all()
|
|
@@ -2,18 +2,22 @@ class OrionisEnvironmentValueException(Exception):
|
|
|
2
2
|
|
|
3
3
|
def __init__(self, msg: str):
|
|
4
4
|
"""
|
|
5
|
+
Initialize the OrionisEnvironmentValueException.
|
|
6
|
+
|
|
5
7
|
Parameters
|
|
6
8
|
----------
|
|
7
9
|
msg : str
|
|
8
|
-
|
|
10
|
+
A descriptive error message that explains the cause of the exception.
|
|
9
11
|
"""
|
|
10
12
|
super().__init__(msg)
|
|
11
13
|
|
|
12
14
|
def __str__(self) -> str:
|
|
13
15
|
"""
|
|
16
|
+
Return the string representation of the exception.
|
|
17
|
+
|
|
14
18
|
Returns
|
|
15
19
|
-------
|
|
16
20
|
str
|
|
17
|
-
|
|
21
|
+
The error message associated with the exception.
|
|
18
22
|
"""
|
|
19
23
|
return str(self.args[0])
|
|
@@ -2,18 +2,22 @@ class OrionisEnvironmentValueError(Exception):
|
|
|
2
2
|
|
|
3
3
|
def __init__(self, msg: str):
|
|
4
4
|
"""
|
|
5
|
+
Initialize the OrionisEnvironmentValueError exception.
|
|
6
|
+
|
|
5
7
|
Parameters
|
|
6
8
|
----------
|
|
7
9
|
msg : str
|
|
8
|
-
|
|
10
|
+
A descriptive error message explaining the cause of the exception.
|
|
9
11
|
"""
|
|
10
12
|
super().__init__(msg)
|
|
11
13
|
|
|
12
14
|
def __str__(self) -> str:
|
|
13
15
|
"""
|
|
16
|
+
Return a formatted string describing the exception.
|
|
17
|
+
|
|
14
18
|
Returns
|
|
15
19
|
-------
|
|
16
20
|
str
|
|
17
|
-
|
|
21
|
+
The error message associated with the exception.
|
|
18
22
|
"""
|
|
19
23
|
return str(self.args[0])
|
|
@@ -3,18 +3,20 @@ from orionis.services.environment.core.dot_env import DotEnv
|
|
|
3
3
|
|
|
4
4
|
def env(key: str, default: Any = None) -> Any:
|
|
5
5
|
"""
|
|
6
|
-
|
|
6
|
+
Retrieves the value of an environment variable.
|
|
7
7
|
|
|
8
8
|
Parameters
|
|
9
9
|
----------
|
|
10
10
|
key : str
|
|
11
11
|
The name of the environment variable to retrieve.
|
|
12
12
|
default : Any, optional
|
|
13
|
-
The value to return if the environment variable is not found.
|
|
13
|
+
The value to return if the environment variable is not found. Defaults to None.
|
|
14
14
|
|
|
15
15
|
Returns
|
|
16
16
|
-------
|
|
17
17
|
Any
|
|
18
|
-
The value of the environment variable if it exists, otherwise the default value.
|
|
18
|
+
The value of the environment variable if it exists, otherwise the specified default value.
|
|
19
19
|
"""
|
|
20
|
+
|
|
21
|
+
# Instantiate DotEnv and retrieve the environment variable by key
|
|
20
22
|
return DotEnv().get(key, default)
|
|
@@ -2,28 +2,24 @@ import os
|
|
|
2
2
|
|
|
3
3
|
class SecureKeyGenerator:
|
|
4
4
|
"""
|
|
5
|
-
|
|
5
|
+
Static utility class for generating cryptographically secure random keys.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
Generates a secure random key encoded in base64.
|
|
7
|
+
This class provides a static method to generate a secure random key,
|
|
8
|
+
encoded as a hexadecimal string, suitable for use in security-sensitive
|
|
9
|
+
applications such as cryptographic secrets or tokens.
|
|
11
10
|
"""
|
|
12
11
|
|
|
13
12
|
@staticmethod
|
|
14
13
|
def generate() -> str:
|
|
15
14
|
"""
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
This method uses the operating system's cryptographic random number generator to
|
|
19
|
-
produce a 32-byte random value, which is then encoded as a hexadecimal string.
|
|
15
|
+
Generate a cryptographically secure random key encoded in hexadecimal.
|
|
20
16
|
|
|
21
17
|
Returns
|
|
22
18
|
-------
|
|
23
19
|
str
|
|
24
|
-
A 64-character hexadecimal string representing a 32-byte
|
|
20
|
+
A 64-character hexadecimal string representing a 32-byte
|
|
21
|
+
cryptographically secure random key.
|
|
25
22
|
"""
|
|
26
|
-
|
|
27
23
|
# Generate 32 random bytes using a cryptographically secure RNG
|
|
28
24
|
# Encode the bytes as a hexadecimal string and return
|
|
29
|
-
return os.urandom(32).hex()
|
|
25
|
+
return os.urandom(32).hex()
|
|
@@ -8,7 +8,7 @@ class __ValidateKeyName:
|
|
|
8
8
|
|
|
9
9
|
def __call__(self, key: object) -> str:
|
|
10
10
|
"""
|
|
11
|
-
Validates that the provided environment variable name
|
|
11
|
+
Validates that the provided environment variable name is a string and matches the required format.
|
|
12
12
|
|
|
13
13
|
Parameters
|
|
14
14
|
----------
|
|
@@ -25,22 +25,21 @@ class __ValidateKeyName:
|
|
|
25
25
|
OrionisEnvironmentValueError
|
|
26
26
|
If the provided key is not a string or does not match the required format.
|
|
27
27
|
"""
|
|
28
|
-
|
|
29
|
-
# Check if the key is a string
|
|
28
|
+
# Ensure the key is of type string
|
|
30
29
|
if not isinstance(key, str):
|
|
31
30
|
raise OrionisEnvironmentValueError(
|
|
32
31
|
f"Environment variable name must be a string, got {type(key).__name__}."
|
|
33
32
|
)
|
|
34
33
|
|
|
35
|
-
#
|
|
34
|
+
# Check if the key matches the required pattern for environment variable names
|
|
36
35
|
if not self._pattern.fullmatch(key):
|
|
37
36
|
raise OrionisEnvironmentValueError(
|
|
38
37
|
f"Invalid environment variable name '{key}'. It must start with an uppercase letter, "
|
|
39
38
|
"contain only uppercase letters, numbers, or underscores. Example: 'MY_ENV_VAR'."
|
|
40
39
|
)
|
|
41
40
|
|
|
42
|
-
# Return the validated key
|
|
41
|
+
# Return the validated key if all checks pass
|
|
43
42
|
return key
|
|
44
43
|
|
|
45
44
|
# Instance to be used for key name validation
|
|
46
|
-
ValidateKeyName = __ValidateKeyName()
|
|
45
|
+
ValidateKeyName = __ValidateKeyName()
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import re
|
|
2
1
|
from typing import Union
|
|
3
2
|
from orionis.services.environment.enums.value_type import EnvironmentValueType
|
|
4
3
|
from orionis.services.environment.exceptions.value import OrionisEnvironmentValueError
|
|
@@ -6,7 +5,26 @@ from orionis.services.environment.exceptions.value import OrionisEnvironmentValu
|
|
|
6
5
|
class __ValidateTypes:
|
|
7
6
|
|
|
8
7
|
def __call__(self, value: Union[str, int, float, bool, list, dict, tuple, set], type_hint: str | EnvironmentValueType = None) -> str:
|
|
9
|
-
|
|
8
|
+
"""
|
|
9
|
+
Validates and determines the type of a given value, optionally using a provided type hint.
|
|
10
|
+
|
|
11
|
+
Parameters
|
|
12
|
+
----------
|
|
13
|
+
value : str, int, float, bool, list, dict, tuple, or set
|
|
14
|
+
The value whose type is to be validated and determined.
|
|
15
|
+
type_hint : str or EnvironmentValueType, optional
|
|
16
|
+
An optional type hint specifying the expected type. Can be a string or an EnvironmentValueType.
|
|
17
|
+
|
|
18
|
+
Returns
|
|
19
|
+
-------
|
|
20
|
+
str
|
|
21
|
+
The determined type as a string, either from the type hint or inferred from the value.
|
|
22
|
+
|
|
23
|
+
Raises
|
|
24
|
+
------
|
|
25
|
+
OrionisEnvironmentValueError
|
|
26
|
+
If the value is not of a supported type or if the type hint is invalid.
|
|
27
|
+
"""
|
|
10
28
|
# Ensure the value is a valid type.
|
|
11
29
|
if not isinstance(value, (str, int, float, bool, list, dict, tuple, set)):
|
|
12
30
|
raise OrionisEnvironmentValueError(
|
|
@@ -21,20 +39,18 @@ class __ValidateTypes:
|
|
|
21
39
|
|
|
22
40
|
# If type_hint is provided, convert it to a string if it's an EnvironmentValueType.
|
|
23
41
|
if type_hint:
|
|
24
|
-
|
|
25
42
|
# If type_hint is a string, convert it to EnvironmentValueType if valid.
|
|
26
|
-
|
|
27
|
-
|
|
43
|
+
try:
|
|
44
|
+
if isinstance(type_hint, str):
|
|
28
45
|
type_hint = EnvironmentValueType[type_hint.upper()].value
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
# If no type hint is provided, use the type of the value.
|
|
46
|
+
elif isinstance(type_hint, EnvironmentValueType):
|
|
47
|
+
type_hint = type_hint.value
|
|
48
|
+
except KeyError:
|
|
49
|
+
raise OrionisEnvironmentValueError(
|
|
50
|
+
f"Invalid type hint: {type_hint}. Allowed types are: {[e.value for e in EnvironmentValueType]}"
|
|
51
|
+
)
|
|
37
52
|
else:
|
|
53
|
+
# If no type hint is provided, use the type of the value.
|
|
38
54
|
type_hint = type(value).__name__.lower()
|
|
39
55
|
|
|
40
56
|
# Return the type hint as a string.
|
|
@@ -173,36 +173,36 @@ orionis/foundation/providers/progress_bar_provider.py,sha256=WW3grNgH-yV2meSSTeO
|
|
|
173
173
|
orionis/foundation/providers/testing_provider.py,sha256=iJSN2RIChbYIL-1ue6vmPmDMCSrvERDkti4Er9MPiLA,1102
|
|
174
174
|
orionis/foundation/providers/workers_provider.py,sha256=kiQjQRyUEyiBX2zcbF_KmqRgvc7Bvxsvg5oMtIvYniM,1075
|
|
175
175
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
-
orionis/metadata/framework.py,sha256=
|
|
176
|
+
orionis/metadata/framework.py,sha256=aDAacZOMru_E8dzWfVeuig1FoDOGjbazt1060eoLkM4,4088
|
|
177
177
|
orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
|
|
178
178
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
179
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
|
-
orionis/services/asynchrony/coroutines.py,sha256=
|
|
180
|
+
orionis/services/asynchrony/coroutines.py,sha256=zvJsKJ6JgRnQ88XgVDZoX_nRDmztvOB6gzq3UcG2Ms4,2590
|
|
181
181
|
orionis/services/asynchrony/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
orionis/services/asynchrony/contracts/coroutines.py,sha256=
|
|
182
|
+
orionis/services/asynchrony/contracts/coroutines.py,sha256=IV1DoqbcJ38omYPJZAQs8av6CTp_xkVdIPWdfUDp3pQ,1080
|
|
183
183
|
orionis/services/asynchrony/exceptions/__init__.py,sha256=COm6RhSiuwWqy3YcJ_0gVu6XHjn5P3zVaiUp5Pw_h48,99
|
|
184
|
-
orionis/services/asynchrony/exceptions/exception.py,sha256=
|
|
184
|
+
orionis/services/asynchrony/exceptions/exception.py,sha256=hlEDFa9-llYTGQbl6UgbXIQJIpDWh1rw2_6Tw7hRs7k,768
|
|
185
185
|
orionis/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
|
-
orionis/services/environment/env.py,sha256=
|
|
186
|
+
orionis/services/environment/env.py,sha256=09poYYjI3lOEV3TuHh3JA8M8sfKN-lVIO4SKOmt6d_E,2845
|
|
187
187
|
orionis/services/environment/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
-
orionis/services/environment/contracts/caster.py,sha256=
|
|
189
|
-
orionis/services/environment/contracts/env.py,sha256=
|
|
188
|
+
orionis/services/environment/contracts/caster.py,sha256=OPi82zrvnvVSoOuDfZ89JTYd7cmfW4wSJejTW1azDsc,1180
|
|
189
|
+
orionis/services/environment/contracts/env.py,sha256=ozdYs3TkOsowPUrXSPEvm6mjoxYLWskliraQWh-WW4o,2122
|
|
190
190
|
orionis/services/environment/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
-
orionis/services/environment/core/dot_env.py,sha256=
|
|
191
|
+
orionis/services/environment/core/dot_env.py,sha256=eIHXpeRrdJ0bbY25BCpRnJ_lJEv_AgtRS-g0O1O7pqE,12141
|
|
192
192
|
orionis/services/environment/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
|
-
orionis/services/environment/dynamic/caster.py,sha256
|
|
194
|
-
orionis/services/environment/enums/__init__.py,sha256=
|
|
195
|
-
orionis/services/environment/enums/value_type.py,sha256=
|
|
193
|
+
orionis/services/environment/dynamic/caster.py,sha256=uovaSC8gQa2OzEGPr-iWMjFEdc_FVuX4HYklguJgKi4,33519
|
|
194
|
+
orionis/services/environment/enums/__init__.py,sha256=lV7sRtjZk3pUvqp21A_GZFkKPYSY6UHZzlQarkQOBjA,90
|
|
195
|
+
orionis/services/environment/enums/value_type.py,sha256=s-tTLgJLhI-ISmDNRpmEdj69DSmL3mDO1nrjRWAO7fU,1262
|
|
196
196
|
orionis/services/environment/exceptions/__init__.py,sha256=YwLc8GsB0swlwu9T9Qt2vevaCoq5V2vmPUSlEUAqg2Q,199
|
|
197
|
-
orionis/services/environment/exceptions/exception.py,sha256=
|
|
198
|
-
orionis/services/environment/exceptions/value.py,sha256=
|
|
197
|
+
orionis/services/environment/exceptions/exception.py,sha256=uXcPLI9PpxZTt4-se7fenz06_vLOGTGnSLzW4_XPhmg,612
|
|
198
|
+
orionis/services/environment/exceptions/value.py,sha256=F2dzNl3OL6AyPu2QcPkreUgjpfW6zp3dSlOoPp_j9-o,612
|
|
199
199
|
orionis/services/environment/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
|
-
orionis/services/environment/helpers/functions.py,sha256=
|
|
200
|
+
orionis/services/environment/helpers/functions.py,sha256=wk2VZJvA4Pel9D945cBdWydutDr2NO9TuLno0VOv5Wg,680
|
|
201
201
|
orionis/services/environment/key/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
|
-
orionis/services/environment/key/key_generator.py,sha256
|
|
203
|
-
orionis/services/environment/validators/__init__.py,sha256=
|
|
204
|
-
orionis/services/environment/validators/key_name.py,sha256=
|
|
205
|
-
orionis/services/environment/validators/types.py,sha256=
|
|
202
|
+
orionis/services/environment/key/key_generator.py,sha256=-tPubna_1mj8mgiYkzdiYd8QU4jWzCV8XmijvsYiXLE,846
|
|
203
|
+
orionis/services/environment/validators/__init__.py,sha256=S0Us4_BtKPuOMQZf4uFFqUINB8l6Eb9vJbbxUCzIhfc,135
|
|
204
|
+
orionis/services/environment/validators/key_name.py,sha256=_1KpFZIWnc6DDW4Mr09Pmq1YGQ4U2Ncc16tuEhf19Is,1658
|
|
205
|
+
orionis/services/environment/validators/types.py,sha256=WDByR8LQkJWTk-ddx9rSwG4BEipsRY0aOIXQd9GLi_4,2756
|
|
206
206
|
orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
207
|
orionis/services/introspection/reflection.py,sha256=_Wdy8Wtt3RKXAqg9o5rvYa_Hyu-Z4674LKnNVg7u7pU,11467
|
|
208
208
|
orionis/services/introspection/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -341,7 +341,7 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
|
|
|
341
341
|
orionis/test/validators/workers.py,sha256=HcZ3cnrk6u7cvM1xZpn_lsglHAq69_jx9RcTSvLrdb0,1204
|
|
342
342
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
343
|
orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
|
|
344
|
-
orionis-0.
|
|
344
|
+
orionis-0.436.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
|
345
345
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
346
|
tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
347
|
tests/container/test_container.py,sha256=asv8TkkupVoex6SWod74NBl4dSs7wb9mLmu_glNdNy8,14815
|
|
@@ -486,8 +486,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
486
486
|
tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
|
|
487
487
|
tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
488
|
tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
|
|
489
|
-
orionis-0.
|
|
490
|
-
orionis-0.
|
|
491
|
-
orionis-0.
|
|
492
|
-
orionis-0.
|
|
493
|
-
orionis-0.
|
|
489
|
+
orionis-0.436.0.dist-info/METADATA,sha256=1MjXxC0PqpAW6QVZ4_53srYAf3qTQqy_THJzp96--kc,4772
|
|
490
|
+
orionis-0.436.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
491
|
+
orionis-0.436.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
|
492
|
+
orionis-0.436.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
493
|
+
orionis-0.436.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|