ripple-down-rules 0.0.9__py3-none-any.whl → 0.0.10__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.
- ripple_down_rules/datastructures/case.py +2 -0
- {ripple_down_rules-0.0.9.dist-info → ripple_down_rules-0.0.10.dist-info}/METADATA +1 -1
- {ripple_down_rules-0.0.9.dist-info → ripple_down_rules-0.0.10.dist-info}/RECORD +6 -6
- {ripple_down_rules-0.0.9.dist-info → ripple_down_rules-0.0.10.dist-info}/WHEEL +0 -0
- {ripple_down_rules-0.0.9.dist-info → ripple_down_rules-0.0.10.dist-info}/licenses/LICENSE +0 -0
- {ripple_down_rules-0.0.9.dist-info → ripple_down_rules-0.0.10.dist-info}/top_level.txt +0 -0
@@ -219,6 +219,8 @@ def create_case(obj: Any, recursion_idx: int = 0, max_recursion_idx: int = 0,
|
|
219
219
|
:param parent_is_iterable: Boolean indicating whether the parent object is iterable or not.
|
220
220
|
:return: The case that represents the object.
|
221
221
|
"""
|
222
|
+
if isinstance(obj, DataFrame):
|
223
|
+
return create_cases_from_dataframe(obj)
|
222
224
|
if isinstance(obj, Case):
|
223
225
|
return obj
|
224
226
|
if ((recursion_idx > max_recursion_idx) or (obj.__class__.__module__ == "builtins")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ripple_down_rules
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.10
|
4
4
|
Summary: Implements the various versions of Ripple Down Rules (RDR) for knowledge representation and reasoning.
|
5
5
|
Author-email: Abdelrhman Bassiouny <abassiou@uni-bremen.de>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -8,11 +8,11 @@ ripple_down_rules/rules.py,sha256=R9wIyalXBc6fGogzy92OxsyKAtJdQwdso_Vs1evWZGU,10
|
|
8
8
|
ripple_down_rules/utils.py,sha256=pmjIPjF9wq6dmCHCoUKFRsJmSaI0b-hRLn375WHgWgQ,18010
|
9
9
|
ripple_down_rules/datastructures/__init__.py,sha256=zpmiYm4WkwNHaGdTIfacS7llN5d2xyU6U-saH_TpydI,103
|
10
10
|
ripple_down_rules/datastructures/callable_expression.py,sha256=TN6bi4VYjyLlSLTEA3dRo5ENfEdQYc8Fjj5nbnsz-C0,9058
|
11
|
-
ripple_down_rules/datastructures/case.py,sha256=
|
11
|
+
ripple_down_rules/datastructures/case.py,sha256=UYHz-Ag7TjwP9MRQuUTVH0nmph6ddutTSZMEXGFkxf4,13676
|
12
12
|
ripple_down_rules/datastructures/dataclasses.py,sha256=EVQ1jBKW7K7q7_JNgikHX9fm3EmQQKA74sNjEQ4rXn8,2449
|
13
13
|
ripple_down_rules/datastructures/enums.py,sha256=l0Eu-TeJ6qB2XHoJycXmUgLw-3yUebQ8SsEbW8bBZdM,4543
|
14
|
-
ripple_down_rules-0.0.
|
15
|
-
ripple_down_rules-0.0.
|
16
|
-
ripple_down_rules-0.0.
|
17
|
-
ripple_down_rules-0.0.
|
18
|
-
ripple_down_rules-0.0.
|
14
|
+
ripple_down_rules-0.0.10.dist-info/licenses/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
15
|
+
ripple_down_rules-0.0.10.dist-info/METADATA,sha256=V5b5MB5FTIFqf5uwarrh39ttMlKMp_FA8COtxxlXfNo,42519
|
16
|
+
ripple_down_rules-0.0.10.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
17
|
+
ripple_down_rules-0.0.10.dist-info/top_level.txt,sha256=VeoLhEhyK46M1OHwoPbCQLI1EifLjChqGzhQ6WEUqeM,18
|
18
|
+
ripple_down_rules-0.0.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|