pkn 0.1.1__py3-none-any.whl → 0.1.2__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.
- pkn/__init__.py +1 -1
- pkn/pydantic/roots.py +4 -4
- pkn/tests/pydantic/test_roots.py +8 -0
- {pkn-0.1.1.dist-info → pkn-0.1.2.dist-info}/METADATA +1 -1
- {pkn-0.1.1.dist-info → pkn-0.1.2.dist-info}/RECORD +7 -7
- {pkn-0.1.1.dist-info → pkn-0.1.2.dist-info}/WHEEL +0 -0
- {pkn-0.1.1.dist-info → pkn-0.1.2.dist-info}/licenses/LICENSE +0 -0
pkn/__init__.py
CHANGED
pkn/pydantic/roots.py
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
from typing import Dict as DictType, List as ListType
|
1
|
+
from typing import Dict as DictType, List as ListType, Optional, Union
|
2
2
|
|
3
|
-
from pydantic import BaseModel, RootModel
|
3
|
+
from pydantic import BaseModel, Field, RootModel
|
4
4
|
|
5
5
|
__all__ = ("Dict", "List")
|
6
6
|
|
7
7
|
|
8
8
|
class Dict(RootModel):
|
9
|
-
root: DictType[str, BaseModel]
|
9
|
+
root: Optional[DictType[str, Optional[Union[BaseModel, "Dict", "List", int, float, str]]]] = Field(default_factory=dict)
|
10
10
|
|
11
11
|
def __iter__(self):
|
12
12
|
return iter(self.root)
|
@@ -46,7 +46,7 @@ class Dict(RootModel):
|
|
46
46
|
|
47
47
|
|
48
48
|
class List(RootModel):
|
49
|
-
root: ListType[BaseModel]
|
49
|
+
root: Optional[ListType[Union[BaseModel, "Dict", "List", int, float, str]]] = Field(default_factory=list)
|
50
50
|
|
51
51
|
def __iter__(self):
|
52
52
|
return iter(self.root)
|
pkn/tests/pydantic/test_roots.py
CHANGED
@@ -27,6 +27,10 @@ class TestPydanticRoots:
|
|
27
27
|
assert "a" not in d
|
28
28
|
assert "b" not in d
|
29
29
|
|
30
|
+
def test_dict_types(self):
|
31
|
+
d = Dict({"a": MyModel(a=1, b="b"), "b": "abc", "c": 1, "d": 1.2, "e": List(), "f": Dict(), "g": None})
|
32
|
+
assert len(d) == 7
|
33
|
+
|
30
34
|
def test_list(self):
|
31
35
|
lst = List([MyModel(a=1, b="b"), MyModel(a=2, b="c")])
|
32
36
|
assert len(lst) == 2
|
@@ -37,3 +41,7 @@ class TestPydanticRoots:
|
|
37
41
|
del lst[0]
|
38
42
|
assert len(lst) == 1
|
39
43
|
assert lst[0] == MyModel(a=2, b="c")
|
44
|
+
|
45
|
+
def test_list_types(self):
|
46
|
+
d = List([MyModel(a=1, b="b"), "abc", 1, 1.2, List(), Dict(), None])
|
47
|
+
assert len(d) == 7
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pkn/__init__.py,sha256=
|
1
|
+
pkn/__init__.py,sha256=8KXL-9bF0pEahj6yBE3dQ2NqHbFoMSaPgJ_GxCzk3wI,47
|
2
2
|
pkn/infra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
pkn/infra/at.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
pkn/infra/common.py,sha256=Ymsc6F60EUJoCxGNUbj2xQ4OwsVh5IwcOXFnn_mRGYE,744
|
@@ -8,10 +8,10 @@ pkn/infra/reboot.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
pkn/infra/systemctl.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
pkn/pydantic/__init__.py,sha256=M-lKT4BNEjAX0098TvC4U8CVnDTn4smN-fkMK9haopM,21
|
10
10
|
pkn/pydantic/generic.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
pkn/pydantic/roots.py,sha256=
|
11
|
+
pkn/pydantic/roots.py,sha256=2jt5fbGGMDu7kEi6EYci21FFkLwxtEse1ldrAehTYyw,2575
|
12
12
|
pkn/tests/test_all.py,sha256=7jewXmZqf4xpkDjN1yc17oxTCHQIlxqWqgmm_l96kSI,60
|
13
|
-
pkn/tests/pydantic/test_roots.py,sha256=
|
14
|
-
pkn-0.1.
|
15
|
-
pkn-0.1.
|
16
|
-
pkn-0.1.
|
17
|
-
pkn-0.1.
|
13
|
+
pkn/tests/pydantic/test_roots.py,sha256=uNfzA5jqIDK8WVD-yIJdwTJOdec7HwmCwI677rbi86I,1377
|
14
|
+
pkn-0.1.2.dist-info/METADATA,sha256=6jFvA6_OYXNtxS75OFNnYB7t3MnHT4e_BzL_Hdild3A,2036
|
15
|
+
pkn-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
16
|
+
pkn-0.1.2.dist-info/licenses/LICENSE,sha256=88kGYCLkpYJl18wjFE_ggvtjqnPAm2zhiIgX12fG_ug,11345
|
17
|
+
pkn-0.1.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|