ommlds 0.0.0.dev454__py3-none-any.whl → 0.0.0.dev456__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.

Potentially problematic release.


This version of ommlds might be problematic. Click here for more details.

@@ -17,7 +17,7 @@ from .json import JsonValue
17
17
  class _TypedValuesFieldMarshalerFactory(msh.MarshalerFactory):
18
18
  tvs_rty: rfl.Type
19
19
 
20
- def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
20
+ def make_marshaler(self, ctx: msh.MarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
21
21
  return lambda: build_typed_values_marshaler(ctx, self.tvs_rty)
22
22
 
23
23
 
@@ -25,7 +25,7 @@ class _TypedValuesFieldMarshalerFactory(msh.MarshalerFactory):
25
25
  class _TypedValuesFieldUnmarshalerFactory(msh.UnmarshalerFactory):
26
26
  tvs_rty: rfl.Type
27
27
 
28
- def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
28
+ def make_unmarshaler(self, ctx: msh.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
29
29
  return lambda: build_typed_values_unmarshaler(ctx, self.tvs_rty)
30
30
 
31
31
 
@@ -37,14 +37,14 @@ class MarshalJsonValue(lang.NotInstantiable, lang.Final):
37
37
 
38
38
 
39
39
  class _JsonValueMarshalerFactory(msh.MarshalerFactory):
40
- def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
40
+ def make_marshaler(self, ctx: msh.MarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
41
41
  if rty is not MarshalJsonValue:
42
42
  return None
43
43
  return lambda: msh.NopMarshalerUnmarshaler()
44
44
 
45
45
 
46
46
  class _JsonValueUnmarshalerFactory(msh.UnmarshalerFactory):
47
- def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
47
+ def make_unmarshaler(self, ctx: msh.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
48
48
  if rty is not MarshalJsonValue:
49
49
  return None
50
50
  return lambda: msh.NopMarshalerUnmarshaler()
@@ -53,10 +53,10 @@ class _ContentMarshaler(msh.Marshaler):
53
53
 
54
54
 
55
55
  class _ContentMarshalerFactory(msh.MarshalerFactory):
56
- def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
56
+ def make_marshaler(self, ctx: msh.MarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
57
57
  if not (rty is MarshalContent or rty == _MARSHAL_CONTENT_UNION_RTY):
58
58
  return None
59
- return lambda: _ContentMarshaler(ctx.make(ExtendedContent))
59
+ return lambda: _ContentMarshaler(ctx.make_marshaler(ExtendedContent))
60
60
 
61
61
 
62
62
  @dc.dataclass(frozen=True)
@@ -75,10 +75,10 @@ class _ContentUnmarshaler(msh.Unmarshaler):
75
75
 
76
76
 
77
77
  class _ContentUnmarshalerFactory(msh.UnmarshalerFactory):
78
- def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
78
+ def make_unmarshaler(self, ctx: msh.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
79
79
  if not (rty is MarshalContent or rty == _MARSHAL_CONTENT_UNION_RTY):
80
80
  return None
81
- return lambda: _ContentUnmarshaler(ctx.make(ExtendedContent))
81
+ return lambda: _ContentUnmarshaler(ctx.make_unmarshaler(ExtendedContent))
82
82
 
83
83
 
84
84
  ##
@@ -106,10 +106,10 @@ class _CanContentMarshaler(msh.Marshaler):
106
106
 
107
107
 
108
108
  class _CanContentMarshalerFactory(msh.MarshalerFactory):
109
- def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
109
+ def make_marshaler(self, ctx: msh.MarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
110
110
  if not (rty is MarshalCanContent or rty == _MARSHAL_CAN_CONTENT_UNION_RTY):
111
111
  return None
112
- return lambda: _CanContentMarshaler(ctx.make(Content))
112
+ return lambda: _CanContentMarshaler(ctx.make_marshaler(Content))
113
113
 
114
114
 
115
115
  @dc.dataclass(frozen=True)
@@ -121,10 +121,10 @@ class _CanContentUnmarshaler(msh.Unmarshaler):
121
121
 
122
122
 
123
123
  class _CanContentUnmarshalerFactory(msh.UnmarshalerFactory):
124
- def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
124
+ def make_unmarshaler(self, ctx: msh.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
125
125
  if not (rty is MarshalCanContent or rty == _MARSHAL_CAN_CONTENT_UNION_RTY):
126
126
  return None
127
- return lambda: _CanContentUnmarshaler(ctx.make(Content))
127
+ return lambda: _CanContentUnmarshaler(ctx.make_unmarshaler(Content))
128
128
 
129
129
 
130
130
  ##
@@ -17,14 +17,14 @@ from .tokens import Tokens
17
17
 
18
18
 
19
19
  class TokensMarshalerFactory(msh.MarshalerFactory):
20
- def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
20
+ def make_marshaler(self, ctx: msh.MarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
21
21
  if rty is not Tokens:
22
22
  return None
23
23
 
24
24
  dc_rfl = dc.reflect(Tokens)
25
25
  dc_f = check.single(dc_rfl.fields.values())
26
26
  v_rty = rfl.type_(dc_f.type)
27
- v_m = ctx.make(v_rty)
27
+ v_m = ctx.make_marshaler(v_rty)
28
28
  f_n = dc_f.name
29
29
 
30
30
  def inner() -> msh.Marshaler:
@@ -34,14 +34,14 @@ class TokensMarshalerFactory(msh.MarshalerFactory):
34
34
 
35
35
 
36
36
  class TokensUnmarshalerFactory(msh.UnmarshalerFactory):
37
- def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
37
+ def make_unmarshaler(self, ctx: msh.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
38
38
  if rty is not Tokens:
39
39
  return None
40
40
 
41
41
  dc_rfl = dc.reflect(Tokens)
42
42
  dc_f = check.single(dc_rfl.fields.values())
43
43
  v_rty = rfl.type_(dc_f.type)
44
- v_u = ctx.make(v_rty)
44
+ v_u = ctx.make_unmarshaler(v_rty)
45
45
 
46
46
  def inner() -> msh.Unmarshaler:
47
47
  return msh.WrappedUnmarshaler(lambda _, v: Tokens(v), v_u)
@@ -40,14 +40,14 @@ class _RequestResponseMarshaler(msh.Marshaler):
40
40
  def marshal(self, ctx: msh.MarshalContext, o: ta.Any) -> msh.Value:
41
41
  tv_types_set = o._typed_values_info().tv_types_set # noqa # FIXME
42
42
  tv_ta = tv.TypedValues[ta.Union[*tv_types_set]] # type: ignore
43
- tv_m = ctx.make(tv_ta)
43
+ tv_m = ctx.marshal_factory_context.make_marshaler(tv_ta) # FIXME:
44
44
  tv_v = check.isinstance(tv_m.marshal(ctx, o._typed_values), ta.Sequence) # noqa
45
45
 
46
46
  if self.v_m is None:
47
47
  orty: rfl.Generic = check.isinstance(rfl.type_(rfl.get_orig_class(o)), rfl.Generic)
48
48
  check.state(orty.cls in (Request, Response))
49
49
  v_rty, tv_rty = orty.args
50
- v_v = ctx.make(v_rty).marshal(ctx, o.v)
50
+ v_v = ctx.marshal_factory_context.make_marshaler(v_rty).marshal(ctx, o.v) # FIXME
51
51
  else:
52
52
  v_v = self.v_m.marshal(ctx, o.v)
53
53
 
@@ -58,7 +58,7 @@ class _RequestResponseMarshaler(msh.Marshaler):
58
58
 
59
59
 
60
60
  class _RequestResponseMarshalerFactory(msh.MarshalerFactory):
61
- def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
61
+ def make_marshaler(self, ctx: msh.MarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
62
62
  if not _is_rr_rty(rty):
63
63
  return None
64
64
 
@@ -73,7 +73,7 @@ class _RequestResponseMarshalerFactory(msh.MarshalerFactory):
73
73
  raise TypeError(rty)
74
74
  v_m: msh.Marshaler | None = None
75
75
  if not isinstance(v_rty, ta.TypeVar):
76
- v_m = ctx.make(v_rty)
76
+ v_m = ctx.make_marshaler(v_rty)
77
77
  return _RequestResponseMarshaler(
78
78
  rty,
79
79
  _get_tv_fld(rty),
@@ -113,7 +113,7 @@ class _RequestResponseUnmarshaler(msh.Unmarshaler):
113
113
 
114
114
 
115
115
  class _RequestResponseUnmarshalerFactory(msh.UnmarshalerFactory):
116
- def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
116
+ def make_unmarshaler(self, ctx: msh.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
117
117
  if not _is_rr_rty(rty):
118
118
  return None
119
119
 
@@ -125,8 +125,8 @@ class _RequestResponseUnmarshalerFactory(msh.UnmarshalerFactory):
125
125
  raise TypeError(rty)
126
126
  tv_types_set = check.isinstance(tv_rty, rfl.Union).args
127
127
  tv_ta = tv.TypedValues[ta.Union[*tv_types_set]] # type: ignore
128
- tv_u = ctx.make(tv_ta)
129
- v_u = ctx.make(v_rty)
128
+ tv_u = ctx.make_unmarshaler(tv_ta)
129
+ v_u = ctx.make_unmarshaler(v_rty)
130
130
  return _RequestResponseUnmarshaler(
131
131
  rty,
132
132
  _get_tv_fld(rty),
@@ -41,7 +41,7 @@ def reflect_tool_catalog_entry(
41
41
  for p in sig.parameters.values():
42
42
  p_rty = rfl.type_(p.annotation)
43
43
  if not no_marshal_check:
44
- msh.global_marshaling().new_unmarshal_context().make(p_rty)
44
+ msh.global_marshaling().new_unmarshal_factory_context().make_unmarshaler(p_rty)
45
45
  in_rtys[p.name] = p_rty
46
46
  tf_input = ToolFn.MarshalInput(in_rtys)
47
47
  else:
@@ -53,7 +53,7 @@ def reflect_tool_catalog_entry(
53
53
  if marshal_output:
54
54
  out_rty = rfl.type_(sig.return_annotation)
55
55
  if not no_marshal_check:
56
- msh.global_marshaling().new_marshal_context().make(out_rty)
56
+ msh.global_marshaling().new_marshal_factory_context().make_marshaler(out_rty)
57
57
  tf_output = ToolFn.MarshalOutput(out_rty)
58
58
  else:
59
59
  if sig.return_annotation is not str:
@@ -25,10 +25,10 @@ class _VectorMarshaler(msh.Marshaler):
25
25
 
26
26
 
27
27
  class _VectorMarshalerFactory(msh.MarshalerFactory):
28
- def make_marshaler(self, ctx: msh.MarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
28
+ def make_marshaler(self, ctx: msh.MarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Marshaler] | None:
29
29
  if rty is not Vector:
30
30
  return None
31
- return lambda: _VectorMarshaler(ctx.make(ta.Sequence[float]))
31
+ return lambda: _VectorMarshaler(ctx.make_marshaler(ta.Sequence[float]))
32
32
 
33
33
 
34
34
  @dc.dataclass(frozen=True)
@@ -40,10 +40,10 @@ class _VectorUnmarshaler(msh.Unmarshaler):
40
40
 
41
41
 
42
42
  class _VectorUnmarshalerFactory(msh.UnmarshalerFactory):
43
- def make_unmarshaler(self, ctx: msh.UnmarshalContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None:
43
+ def make_unmarshaler(self, ctx: msh.UnmarshalFactoryContext, rty: rfl.Type) -> ta.Callable[[], msh.Unmarshaler] | None: # noqa
44
44
  if rty is not Vector:
45
45
  return None
46
- return lambda: _VectorUnmarshaler(ctx.make(ta.Sequence[float]))
46
+ return lambda: _VectorUnmarshaler(ctx.make_unmarshaler(ta.Sequence[float]))
47
47
 
48
48
 
49
49
  ##
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ommlds
3
- Version: 0.0.0.dev454
3
+ Version: 0.0.0.dev456
4
4
  Summary: ommlds
5
5
  Author: wrmsr
6
6
  License-Expression: BSD-3-Clause
@@ -14,8 +14,8 @@ Classifier: Programming Language :: Python :: 3.13
14
14
  Requires-Python: >=3.13
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: omdev==0.0.0.dev454
18
- Requires-Dist: omlish==0.0.0.dev454
17
+ Requires-Dist: omdev==0.0.0.dev456
18
+ Requires-Dist: omlish==0.0.0.dev456
19
19
  Provides-Extra: all
20
20
  Requires-Dist: llama-cpp-python~=0.3; extra == "all"
21
21
  Requires-Dist: mlx~=0.29; extra == "all"
@@ -107,7 +107,7 @@ ommlds/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
107
  ommlds/datasets/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
108
  ommlds/datasets/lib/movies.py,sha256=LmdfoXsZU9XMM_r-sxCLv_s06BFzwWO4xUj6sc9XVcI,1961
109
109
  ommlds/minichain/__init__.py,sha256=5pHq8Tlhgqx5p9ilC0EjN8dpOZ2Xc1ADHgwa1V-FFkk,10829
110
- ommlds/minichain/_marshal.py,sha256=IkEeaYfM2xr9Zh_mIWmE1cdY2DiC9ur6nTwwoaCfkkY,1879
110
+ ommlds/minichain/_marshal.py,sha256=n9PGWrHhvAmGIc7KDOYt3IF9Z6G0ncXskyICTp3Ji6k,1923
111
111
  ommlds/minichain/_typedvalues.py,sha256=Vl1Edt5khC0e5RPFBPmPCxn0IzrfVd0NHzAjAN2E6Kc,2183
112
112
  ommlds/minichain/completion.py,sha256=lQ0LfCIYZsvDqteHhhDIv16D2_gn_xMfEL0ouywE5Yo,1033
113
113
  ommlds/minichain/configs.py,sha256=WwrHxfkDAfo_RtuCqUgySthj-2W26lZbpuQoghUyGNw,167
@@ -199,7 +199,7 @@ ommlds/minichain/chat/transforms/base.py,sha256=V22SasLdnzvmSO7C19gigi8LKeWVtBHm
199
199
  ommlds/minichain/chat/transforms/metadata.py,sha256=Gw1cUIk2cVzHMyFPwboY_HWEuV_Ts3R4AVmOuyH120A,1563
200
200
  ommlds/minichain/chat/transforms/services.py,sha256=wJw2eu-TU1sVXUYvg7rc7QNn93cCXhtEI_q-KZ5Dz0I,1016
201
201
  ommlds/minichain/content/__init__.py,sha256=nHXG5a6KSoM9xqlvA4jfwVNbCtqV88bg7298PmmNJKA,384
202
- ommlds/minichain/content/_marshal.py,sha256=pVmDQ1k_7Z_KxyYjqinvzBPOu768M7QfYtEbaiYFWvE,5947
202
+ ommlds/minichain/content/_marshal.py,sha256=ZvdEKtB7a5ZoQgPBjeGleWx-Qr0UAc8LJICRBRjOndA,6035
203
203
  ommlds/minichain/content/images.py,sha256=d69MgAQm9DaslJJIqRJNY3f75t_Ti5aqkGG1Ypi5Iew,426
204
204
  ommlds/minichain/content/json.py,sha256=g4QjFLYJQUE38u5nd1QzNgruwl06efyaBjiq5ehftd0,250
205
205
  ommlds/minichain/content/materialize.py,sha256=GHfDIj0mTt1EkCHxqteNN_zLmPawZ3-GFt5ZaAg3tLs,5146
@@ -245,7 +245,7 @@ ommlds/minichain/lib/todo/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
245
245
  ommlds/minichain/lib/todo/tools/read.py,sha256=7P8ohR-t9y9f_iF-kr0JA36ti0LhJCeBpMsnXeXwHoU,1501
246
246
  ommlds/minichain/lib/todo/tools/write.py,sha256=TGO-zuF62j61pB8tFxd9wdtMHrYuVvnwnjinMOOGabk,14734
247
247
  ommlds/minichain/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
248
- ommlds/minichain/llms/_marshal.py,sha256=gl5q43NvIQluGCwIvkE8I_2xLrUyix8EgiEY2yTaW2s,1474
248
+ ommlds/minichain/llms/_marshal.py,sha256=YR7n2GVhS9I2rDvKe-VqzS-u1WbLcJT9DgFBO6oZ9fo,1518
249
249
  ommlds/minichain/llms/tokens.py,sha256=RPrAzf4Qx9xNPGj7_EkzcVOR9qIGkhQg8AM6qhr7gfw,292
250
250
  ommlds/minichain/llms/types.py,sha256=DQU9tnzqDoiKuZIImuFVBy9LxOk69k6dDlFQ5DYT7iw,1049
251
251
  ommlds/minichain/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -258,7 +258,7 @@ ommlds/minichain/registries/globals.py,sha256=oibPBjAO1MMemcaV6NdOLGenjB820sBvdL
258
258
  ommlds/minichain/registries/manifests.py,sha256=GTWk4lssAk8mmG3ilGK2NvIU-rGS3otOZNuGQUDStMI,362
259
259
  ommlds/minichain/registries/registry.py,sha256=wmk88NsM20Kl4PduX3Oy5roHPfNKtXENCITTc7M8gAY,4626
260
260
  ommlds/minichain/services/__init__.py,sha256=gjhYyT7-MY1PISdHMKmfk2o_QrdU7UV7I9ZNh2Yjpu4,336
261
- ommlds/minichain/services/_marshal.py,sha256=9ZwlqYpcEOTNPsMFxAaEsSJjMRIi-SGm_h8HWdavtHw,4231
261
+ ommlds/minichain/services/_marshal.py,sha256=hiO147wK7LcsC0WmqdwltKTOKZdq51J-ESY0JCtqo8s,4374
262
262
  ommlds/minichain/services/_origclasses.py,sha256=E9DBfnodZ5_5DlEfzQfRDyzzy_OqE48kWka070GUdgI,1405
263
263
  ommlds/minichain/services/_typedvalues.py,sha256=pptoba24KreotiXtRtxmWtcjRM5o7nObLfkOl6q8dmA,2842
264
264
  ommlds/minichain/services/facades.py,sha256=zoTY5GT7yIrFUY3fX7a-sSOvkk1_4GK5FlJJmRL_ems,1734
@@ -295,9 +295,9 @@ ommlds/minichain/tools/execution/catalog.py,sha256=sBde49FSClTreX8KO5pZ2-EE1NyTZ
295
295
  ommlds/minichain/tools/execution/context.py,sha256=Gdl1UNjzLQTeIc7m2BlNyLtNsdqCookQv12_WwDDkAI,1872
296
296
  ommlds/minichain/tools/execution/errors.py,sha256=-fE4yh-PsKQqYMyZW0CZMZIjXkJHLZAYyl3j2VYkJ-U,251
297
297
  ommlds/minichain/tools/execution/executors.py,sha256=cyx7JKKQfuqSVujNLXSo0qtXSkCDJ_plddvitmDUxeQ,1365
298
- ommlds/minichain/tools/execution/reflect.py,sha256=3X9OS66aY5-vvolgfGaocasc7H9ksjSX2Ryd78xRl-Y,1779
298
+ ommlds/minichain/tools/execution/reflect.py,sha256=Oklzx5jlMyNj6ivecEQfP6Zt_ICxc-nk-x9xSsxswlg,1817
299
299
  ommlds/minichain/vectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
300
- ommlds/minichain/vectors/_marshal.py,sha256=NPo43_Z6vsmnDngRmzte_uowOaOoRmkjmQiseKHIlZU,1519
300
+ ommlds/minichain/vectors/_marshal.py,sha256=UTUru1dt9uefyn1Rql1VrVivt6OzN24Jpzg210_ouaA,1563
301
301
  ommlds/minichain/vectors/embeddings.py,sha256=_r5DcCaTI-we_XLAHcPv-1PsKI-i-ndptn_qOJ9_fbc,1000
302
302
  ommlds/minichain/vectors/index.py,sha256=NFUeVffjQZd6HILpLEd8tKBLmVKl-2ZTjtsr91ah6VA,1135
303
303
  ommlds/minichain/vectors/search.py,sha256=27MTUiVT2xmSnmgJTAR09oQaiNRh1ixj0mGZVuSTVEg,1508
@@ -325,9 +325,9 @@ ommlds/wiki/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
325
325
  ommlds/wiki/utils/io.py,sha256=UKgDJGtmpnWvIqVd2mJc2QNPOqlToEY1GEveNp6_pMo,7088
326
326
  ommlds/wiki/utils/progress.py,sha256=EhvKcMFYtsarCQhIahlO6f0SboyAKP3UwUyrnVnP-Vk,3222
327
327
  ommlds/wiki/utils/xml.py,sha256=vVV8Ctn13aaRM9eYfs9Wd6rHn5WOCEUzQ44fIhOvJdg,3754
328
- ommlds-0.0.0.dev454.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
329
- ommlds-0.0.0.dev454.dist-info/METADATA,sha256=ItNuhU9x9jpv9HBnnuBzlqj63xfapYFEumGJgNABxXw,3224
330
- ommlds-0.0.0.dev454.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
331
- ommlds-0.0.0.dev454.dist-info/entry_points.txt,sha256=Z5YWtX7ClfiCKdW-dd_CSVvM0h4yQpJPi-2G3q6gNFo,35
332
- ommlds-0.0.0.dev454.dist-info/top_level.txt,sha256=Rbnk5d5wi58vnAXx13WFZqdQ4VX8hBCS2hEL3WeXOhY,7
333
- ommlds-0.0.0.dev454.dist-info/RECORD,,
328
+ ommlds-0.0.0.dev456.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
329
+ ommlds-0.0.0.dev456.dist-info/METADATA,sha256=UNc5DhrkQL_9W4KIOq96VFn9S0j4DFgFTKCi1W3fjVc,3224
330
+ ommlds-0.0.0.dev456.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
331
+ ommlds-0.0.0.dev456.dist-info/entry_points.txt,sha256=Z5YWtX7ClfiCKdW-dd_CSVvM0h4yQpJPi-2G3q6gNFo,35
332
+ ommlds-0.0.0.dev456.dist-info/top_level.txt,sha256=Rbnk5d5wi58vnAXx13WFZqdQ4VX8hBCS2hEL3WeXOhY,7
333
+ ommlds-0.0.0.dev456.dist-info/RECORD,,