omlish 0.0.0.dev202__py3-none-any.whl → 0.0.0.dev204__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.
- omlish/__about__.py +2 -2
- omlish/formats/xml.py +70 -16
- {omlish-0.0.0.dev202.dist-info → omlish-0.0.0.dev204.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev202.dist-info → omlish-0.0.0.dev204.dist-info}/RECORD +8 -8
- {omlish-0.0.0.dev202.dist-info → omlish-0.0.0.dev204.dist-info}/LICENSE +0 -0
- {omlish-0.0.0.dev202.dist-info → omlish-0.0.0.dev204.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev202.dist-info → omlish-0.0.0.dev204.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev202.dist-info → omlish-0.0.0.dev204.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
omlish/formats/xml.py
CHANGED
@@ -18,6 +18,49 @@ else:
|
|
18
18
|
##
|
19
19
|
|
20
20
|
|
21
|
+
def strip_ns(tag: str) -> str:
|
22
|
+
# It really do just be like this:
|
23
|
+
# https://github.com/python/cpython/blob/ff3bc82f7c9882c27aad597aac79355da7257186/Lib/xml/etree/ElementTree.py#L803-L804
|
24
|
+
if tag[:1] == '{':
|
25
|
+
_, tag = tag[1:].rsplit('}', 1)
|
26
|
+
return tag
|
27
|
+
|
28
|
+
|
29
|
+
##
|
30
|
+
|
31
|
+
|
32
|
+
ITER_PARSE_EVENTS = ('start', 'end', 'comment', 'pi', 'start-ns', 'end-ns')
|
33
|
+
|
34
|
+
|
35
|
+
def yield_root_children(
|
36
|
+
source: ta.Any,
|
37
|
+
*,
|
38
|
+
retain_on_root: bool = False,
|
39
|
+
**kwargs: ta.Any,
|
40
|
+
) -> ta.Iterator['ET.Element']:
|
41
|
+
it = iter(ET.iterparse(source, ('start', 'end'), **kwargs))
|
42
|
+
|
43
|
+
ev, root = next(it)
|
44
|
+
if ev != 'start':
|
45
|
+
raise RuntimeError(ev)
|
46
|
+
yield root
|
47
|
+
|
48
|
+
depth = 0
|
49
|
+
for ev, el in it:
|
50
|
+
if ev == 'start':
|
51
|
+
depth += 1
|
52
|
+
|
53
|
+
elif ev == 'end':
|
54
|
+
depth -= 1
|
55
|
+
if not depth:
|
56
|
+
if not retain_on_root:
|
57
|
+
root.remove(el)
|
58
|
+
yield el
|
59
|
+
|
60
|
+
|
61
|
+
##
|
62
|
+
|
63
|
+
|
21
64
|
@dc.dataclass(frozen=True)
|
22
65
|
class SimpleElement:
|
23
66
|
tag: str
|
@@ -36,27 +79,38 @@ class SimpleElement:
|
|
36
79
|
return dct
|
37
80
|
|
38
81
|
|
39
|
-
def build_simple_element(
|
40
|
-
|
41
|
-
|
42
|
-
|
82
|
+
def build_simple_element(
|
83
|
+
element: 'ET.Element',
|
84
|
+
*,
|
85
|
+
strip_tag_ns: bool = False,
|
86
|
+
) -> SimpleElement:
|
87
|
+
def rec(cur: 'ET.Element') -> SimpleElement:
|
88
|
+
atts = {}
|
89
|
+
for name, value in cur.attrib.items():
|
90
|
+
atts[name] = value # noqa
|
43
91
|
|
44
|
-
|
92
|
+
body: list[SimpleElement | str] = []
|
45
93
|
|
46
|
-
|
47
|
-
|
94
|
+
if cur.text and (s := cur.text.strip()):
|
95
|
+
body.append(s)
|
48
96
|
|
49
|
-
|
50
|
-
|
97
|
+
for child in cur:
|
98
|
+
body.append(rec(child))
|
51
99
|
|
52
|
-
|
53
|
-
|
100
|
+
if child.tail and (s := child.tail.strip()):
|
101
|
+
body.append(s)
|
102
|
+
|
103
|
+
tag = cur.tag
|
104
|
+
if strip_tag_ns:
|
105
|
+
tag = strip_ns(tag)
|
106
|
+
|
107
|
+
return SimpleElement(
|
108
|
+
tag,
|
109
|
+
atts,
|
110
|
+
body,
|
111
|
+
)
|
54
112
|
|
55
|
-
return
|
56
|
-
element.tag,
|
57
|
-
atts,
|
58
|
-
body,
|
59
|
-
)
|
113
|
+
return rec(element)
|
60
114
|
|
61
115
|
|
62
116
|
def parse_tree(s: str) -> 'ET.ElementTree':
|
@@ -1,5 +1,5 @@
|
|
1
1
|
omlish/.manifests.json,sha256=dyIpveH7Z8OnQp2pTn6NVv7LCDXVrozJWAzbk8PBavg,7950
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=tmCsWZoA9lkQN8lJFntsOmuJASS82__AiecZPv_owxo,3409
|
3
3
|
omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
|
4
4
|
omlish/c3.py,sha256=ubu7lHwss5V4UznbejAI0qXhXahrU01MysuHOZI9C4U,8116
|
5
5
|
omlish/cached.py,sha256=UI-XTFBwA6YXWJJJeBn-WkwBkfzDjLBBaZf4nIJA9y0,510
|
@@ -228,7 +228,7 @@ omlish/formats/json5.py,sha256=odpZIShlUpv19aACWe58SoMPcv0AHKIa6zSMjlKgaMI,515
|
|
228
228
|
omlish/formats/pickle.py,sha256=jdp4E9WH9qVPBE3sSqbqDtUo18RbTSIiSpSzJ-IEVZw,529
|
229
229
|
omlish/formats/props.py,sha256=auCv-Jx79KGlWfyG1-Qo0ou-Ex0W_mF3r_lDFdsVkWI,18920
|
230
230
|
omlish/formats/repr.py,sha256=kYrNs4o-ji8nOdp6u_L3aMgBMWN1ZAZJSAWgQQfStSQ,414
|
231
|
-
omlish/formats/xml.py,sha256=
|
231
|
+
omlish/formats/xml.py,sha256=rKXN1RDJV-jliM4fZ2NtmsujB5cAGQBMzRHRHEnH9Ko,2661
|
232
232
|
omlish/formats/yaml.py,sha256=ffOwGnLA6chdiFyaS7X0TBMGmHG9AoGudzKVWfQ1UOs,7389
|
233
233
|
omlish/formats/ini/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
234
|
omlish/formats/ini/codec.py,sha256=omuFg0kiDksv8rRlWd_v32ebzEcKlgmiPgGID3bRi2M,631
|
@@ -609,9 +609,9 @@ omlish/text/indent.py,sha256=YjtJEBYWuk8--b9JU_T6q4yxV85_TR7VEVr5ViRCFwk,1336
|
|
609
609
|
omlish/text/minja.py,sha256=jZC-fp3Xuhx48ppqsf2Sf1pHbC0t8XBB7UpUUoOk2Qw,5751
|
610
610
|
omlish/text/parts.py,sha256=7vPF1aTZdvLVYJ4EwBZVzRSy8XB3YqPd7JwEnNGGAOo,6495
|
611
611
|
omlish/text/random.py,sha256=jNWpqiaKjKyTdMXC-pWAsSC10AAP-cmRRPVhm59ZWLk,194
|
612
|
-
omlish-0.0.0.
|
613
|
-
omlish-0.0.0.
|
614
|
-
omlish-0.0.0.
|
615
|
-
omlish-0.0.0.
|
616
|
-
omlish-0.0.0.
|
617
|
-
omlish-0.0.0.
|
612
|
+
omlish-0.0.0.dev204.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
613
|
+
omlish-0.0.0.dev204.dist-info/METADATA,sha256=MwBcWkbZSbQ3gkM4DWFACa-CtMUx8D3RWCbnmreY8R0,4264
|
614
|
+
omlish-0.0.0.dev204.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
615
|
+
omlish-0.0.0.dev204.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
616
|
+
omlish-0.0.0.dev204.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
617
|
+
omlish-0.0.0.dev204.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|