omlish 0.0.0.dev449__py3-none-any.whl → 0.0.0.dev451__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/bootstrap/_marshal.py +1 -1
- omlish/dataclasses/tools/modifiers.py +5 -0
- omlish/diag/pydevd.py +13 -1
- omlish/formats/dotenv.py +1 -1
- omlish/lite/maysync.py +1 -5
- omlish/lite/pycharm.py +1 -1
- omlish/marshal/__init__.py +6 -0
- omlish/marshal/polymorphism/standard.py +3 -5
- omlish/marshal/polymorphism/unions.py +39 -6
- omlish/secrets/marshal.py +1 -1
- omlish/specs/jsonrpc/_marshal.py +1 -1
- omlish/specs/jsonschema/_marshal.py +1 -1
- omlish/specs/openapi/_marshal.py +1 -1
- omlish/sql/queries/_marshal.py +1 -1
- omlish/sql/tabledefs/_marshal.py +1 -1
- omlish/typedvalues/marshal.py +1 -1
- {omlish-0.0.0.dev449.dist-info → omlish-0.0.0.dev451.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev449.dist-info → omlish-0.0.0.dev451.dist-info}/RECORD +23 -23
- {omlish-0.0.0.dev449.dist-info → omlish-0.0.0.dev451.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev449.dist-info → omlish-0.0.0.dev451.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev449.dist-info → omlish-0.0.0.dev451.dist-info}/licenses/LICENSE +0 -0
- {omlish-0.0.0.dev449.dist-info → omlish-0.0.0.dev451.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
omlish/bootstrap/_marshal.py
CHANGED
@@ -8,7 +8,7 @@ from .harness import BOOTSTRAP_TYPES_BY_NAME
|
|
8
8
|
|
9
9
|
|
10
10
|
@lang.static_init
|
11
|
-
def
|
11
|
+
def _install_standard_marshaling() -> None:
|
12
12
|
cfgs_poly = msh.Polymorphism(
|
13
13
|
Bootstrap.Config,
|
14
14
|
[msh.Impl(b.Config, n) for n, b in BOOTSTRAP_TYPES_BY_NAME.items()],
|
@@ -3,6 +3,7 @@ import typing as ta
|
|
3
3
|
|
4
4
|
from ... import check
|
5
5
|
from ... import lang
|
6
|
+
from ...lite.dataclasses import is_immediate_dataclass
|
6
7
|
|
7
8
|
|
8
9
|
if ta.TYPE_CHECKING:
|
@@ -40,6 +41,8 @@ def update_fields(
|
|
40
41
|
def inner(cls):
|
41
42
|
if issubclass(cls, meta.DataMeta):
|
42
43
|
raise TypeError('update_fields() cannot be used on DataMeta subclasses')
|
44
|
+
if is_immediate_dataclass(cls):
|
45
|
+
raise TypeError('update_fields() cannot be used on already processed dataclasses')
|
43
46
|
|
44
47
|
if fields is None:
|
45
48
|
for a, v in list(cls.__dict__.items()):
|
@@ -51,6 +54,8 @@ def update_fields(
|
|
51
54
|
try:
|
52
55
|
v = cls.__dict__[a]
|
53
56
|
except KeyError:
|
57
|
+
if hasattr(cls, a):
|
58
|
+
raise TypeError('update_fields() cannot be used on parent dataclass fields') from None
|
54
59
|
v = dc.field()
|
55
60
|
else:
|
56
61
|
if not isinstance(v, dc.Field):
|
omlish/diag/pydevd.py
CHANGED
@@ -119,7 +119,19 @@ def _pydevd() -> types.ModuleType | None:
|
|
119
119
|
|
120
120
|
|
121
121
|
def is_present() -> bool:
|
122
|
-
|
122
|
+
# FIXME: try to use `lang.can_import('pydevd'), but raises with:
|
123
|
+
# INTERNALERROR> File "/Users/spinlock/src/wrmsr/omlish/omlish/lang/imports/resolving.py", line 16, in can_import
|
124
|
+
# INTERNALERROR> spec = importlib.util.find_spec(name, package)
|
125
|
+
# INTERNALERROR> File "<frozen importlib.util>", line 111, in find_spec
|
126
|
+
# INTERNALERROR> ValueError: pydevd.__spec__ is None
|
127
|
+
# Really want to avoid actually importing pydevd due to side-effects, slowness, and even a pkg_resources deprecation
|
128
|
+
# warning...
|
129
|
+
try:
|
130
|
+
__import__('pydevd')
|
131
|
+
except ImportError:
|
132
|
+
return False
|
133
|
+
else:
|
134
|
+
return True
|
123
135
|
|
124
136
|
|
125
137
|
def get_setup() -> dict | None:
|
omlish/formats/dotenv.py
CHANGED
@@ -584,7 +584,7 @@ def dotenv_values(
|
|
584
584
|
For example, `foo=bar` results in `{"foo": "bar"}` whereas `foo` alone results in
|
585
585
|
`{"foo": None}`
|
586
586
|
|
587
|
-
|
587
|
+
Args:
|
588
588
|
path: Absolute or relative path to the .env file.
|
589
589
|
stream: `StringIO` object with .env content, used if `path` is `None`.
|
590
590
|
verbose: Whether to output a warning if the .env file is missing.
|
omlish/lite/maysync.py
CHANGED
@@ -25,6 +25,7 @@ Internally, it's not really correct to say that there is 'no event loop' in the
|
|
25
25
|
===
|
26
26
|
|
27
27
|
TODO:
|
28
|
+
- ! impl iterators not just generators !
|
28
29
|
- __del__
|
29
30
|
- (test) maysync context managers
|
30
31
|
- CancelledError
|
@@ -33,11 +34,6 @@ TODO:
|
|
33
34
|
- works down to 3.8
|
34
35
|
- make_maysync_from_sync can run with asyncio.run_in_thread
|
35
36
|
- make_maysync_from_async can run with asyncio.run_soon
|
36
|
-
|
37
|
-
TODO OVERHAUL:
|
38
|
-
- no more sync/async context, just one Context, and it means sync
|
39
|
-
- make FpMaywaitable *not reusable*
|
40
|
-
- `cannot reuse already awaited coroutine`
|
41
37
|
"""
|
42
38
|
import abc
|
43
39
|
import inspect
|
omlish/lite/pycharm.py
CHANGED
omlish/marshal/__init__.py
CHANGED
@@ -108,6 +108,11 @@ with _lang.auto_proxy_init(globals()):
|
|
108
108
|
IterableUnmarshaler,
|
109
109
|
)
|
110
110
|
|
111
|
+
from .composite.optionals import ( # noqa
|
112
|
+
OptionalMarshaler,
|
113
|
+
OptionalUnmarshaler,
|
114
|
+
)
|
115
|
+
|
111
116
|
from .composite.wrapped import ( # noqa
|
112
117
|
WrappedMarshaler,
|
113
118
|
WrappedUnmarshaler,
|
@@ -225,6 +230,7 @@ with _lang.auto_proxy_init(globals()):
|
|
225
230
|
from .singular.base64 import ( # noqa
|
226
231
|
BASE64_MARSHALER_FACTORY,
|
227
232
|
BASE64_UNMARSHALER_FACTORY,
|
233
|
+
Base64MarshalerUnmarshaler,
|
228
234
|
)
|
229
235
|
|
230
236
|
from .singular.primitives import ( # noqa
|
@@ -1,5 +1,3 @@
|
|
1
|
-
import typing as ta
|
2
|
-
|
3
1
|
from ..base.types import MarshalerFactory
|
4
2
|
from ..base.types import UnmarshalerFactory
|
5
3
|
from .marshal import PolymorphismMarshalerFactory
|
@@ -15,8 +13,8 @@ from .unmarshal import PolymorphismUnmarshalerFactory
|
|
15
13
|
def standard_polymorphism_factories(
|
16
14
|
poly: Polymorphism,
|
17
15
|
tt: TypeTagging = WrapperTypeTagging(),
|
18
|
-
) ->
|
19
|
-
return
|
16
|
+
) -> tuple[MarshalerFactory, UnmarshalerFactory]:
|
17
|
+
return (
|
20
18
|
PolymorphismMarshalerFactory(poly, tt),
|
21
19
|
PolymorphismUnmarshalerFactory(poly, tt),
|
22
|
-
|
20
|
+
)
|
@@ -2,6 +2,7 @@ import typing as ta
|
|
2
2
|
|
3
3
|
from ... import cached
|
4
4
|
from ... import check
|
5
|
+
from ... import collections as col
|
5
6
|
from ... import dataclasses as dc
|
6
7
|
from ... import lang
|
7
8
|
from ... import reflect as rfl
|
@@ -52,18 +53,41 @@ PRIMITIVE_UNION_TYPES: tuple[type, ...] = (
|
|
52
53
|
float,
|
53
54
|
int,
|
54
55
|
str,
|
56
|
+
bool,
|
55
57
|
)
|
56
58
|
|
57
59
|
|
60
|
+
class DestructuredPrimitiveUnionType(ta.NamedTuple):
|
61
|
+
prim: ta.Sequence[type]
|
62
|
+
non_prim: ta.Sequence[rfl.Type]
|
63
|
+
|
64
|
+
|
65
|
+
def _destructure_primitive_union_type(
|
66
|
+
rty: rfl.Type,
|
67
|
+
prim_tys: ta.Container[type] = PRIMITIVE_UNION_TYPES,
|
68
|
+
) -> DestructuredPrimitiveUnionType | None:
|
69
|
+
if not isinstance(rty, rfl.Union):
|
70
|
+
return None
|
71
|
+
|
72
|
+
pr = col.partition(rty.args, lambda a: isinstance(a, type) and a in prim_tys)
|
73
|
+
if not pr.t or len(pr.f) > 1:
|
74
|
+
return None
|
75
|
+
|
76
|
+
return DestructuredPrimitiveUnionType(*pr) # type: ignore[arg-type]
|
77
|
+
|
78
|
+
|
58
79
|
#
|
59
80
|
|
60
81
|
|
61
82
|
@dc.dataclass(frozen=True)
|
62
83
|
class PrimitiveUnionMarshaler(Marshaler):
|
63
84
|
tys: ta.Sequence[type]
|
85
|
+
x: Marshaler | None = None
|
64
86
|
|
65
87
|
def marshal(self, ctx: MarshalContext, o: ta.Any) -> Value:
|
66
88
|
if type(o) not in self.tys:
|
89
|
+
if self.x is not None:
|
90
|
+
return self.x.marshal(ctx, o)
|
67
91
|
raise TypeError(o)
|
68
92
|
return o
|
69
93
|
|
@@ -73,11 +97,14 @@ class PrimitiveUnionMarshalerFactory(SimpleMarshalerFactory):
|
|
73
97
|
tys: ta.Sequence[type] = PRIMITIVE_UNION_TYPES
|
74
98
|
|
75
99
|
def guard(self, ctx: MarshalContext, rty: rfl.Type) -> bool:
|
76
|
-
return
|
100
|
+
return _destructure_primitive_union_type(rty, self.tys) is not None
|
77
101
|
|
78
102
|
def fn(self, ctx: MarshalContext, rty: rfl.Type) -> Marshaler:
|
79
|
-
|
80
|
-
return PrimitiveUnionMarshaler(
|
103
|
+
prim, non_prim = check.not_none(_destructure_primitive_union_type(rty, self.tys))
|
104
|
+
return PrimitiveUnionMarshaler(
|
105
|
+
prim,
|
106
|
+
ctx.make(check.single(non_prim)) if non_prim else None,
|
107
|
+
)
|
81
108
|
|
82
109
|
|
83
110
|
#
|
@@ -86,9 +113,12 @@ class PrimitiveUnionMarshalerFactory(SimpleMarshalerFactory):
|
|
86
113
|
@dc.dataclass(frozen=True)
|
87
114
|
class PrimitiveUnionUnmarshaler(Unmarshaler):
|
88
115
|
tys: ta.Sequence[type]
|
116
|
+
x: Unmarshaler | None = None
|
89
117
|
|
90
118
|
def unmarshal(self, ctx: UnmarshalContext, v: Value) -> ta.Any:
|
91
119
|
if type(v) not in self.tys:
|
120
|
+
if self.x is not None:
|
121
|
+
return self.x.unmarshal(ctx, v)
|
92
122
|
raise TypeError(v)
|
93
123
|
return v
|
94
124
|
|
@@ -98,11 +128,14 @@ class PrimitiveUnionUnmarshalerFactory(SimpleUnmarshalerFactory):
|
|
98
128
|
tys: ta.Sequence[type] = PRIMITIVE_UNION_TYPES
|
99
129
|
|
100
130
|
def guard(self, ctx: UnmarshalContext, rty: rfl.Type) -> bool:
|
101
|
-
return
|
131
|
+
return _destructure_primitive_union_type(rty, self.tys) is not None
|
102
132
|
|
103
133
|
def fn(self, ctx: UnmarshalContext, rty: rfl.Type) -> Unmarshaler:
|
104
|
-
|
105
|
-
return PrimitiveUnionUnmarshaler(
|
134
|
+
prim, non_prim = check.not_none(_destructure_primitive_union_type(rty, self.tys))
|
135
|
+
return PrimitiveUnionUnmarshaler(
|
136
|
+
prim,
|
137
|
+
ctx.make(check.single(non_prim)) if non_prim else None,
|
138
|
+
)
|
106
139
|
|
107
140
|
|
108
141
|
#
|
omlish/secrets/marshal.py
CHANGED
@@ -54,7 +54,7 @@ def marshal_secret_field(f: dc.Field) -> dc.Field:
|
|
54
54
|
|
55
55
|
|
56
56
|
@lang.static_init
|
57
|
-
def
|
57
|
+
def _install_standard_marshaling() -> None:
|
58
58
|
msh.install_standard_factories(
|
59
59
|
msh.ForbiddenTypeMarshalerFactory({Secret}),
|
60
60
|
msh.ForbiddenTypeUnmarshalerFactory({Secret}),
|
omlish/specs/jsonrpc/_marshal.py
CHANGED
@@ -51,7 +51,7 @@ class NotSpecifiedUnionUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
|
|
51
51
|
|
52
52
|
|
53
53
|
@lang.static_init
|
54
|
-
def
|
54
|
+
def _install_standard_marshaling() -> None:
|
55
55
|
msh.install_standard_factories(
|
56
56
|
msh.ForbiddenTypeMarshalerFactory({_NOT_SPECIFIED_RTY}),
|
57
57
|
msh.ForbiddenTypeUnmarshalerFactory({_NOT_SPECIFIED_RTY}),
|
@@ -22,7 +22,7 @@ class _KeywordsUnmarshaler(msh.Unmarshaler):
|
|
22
22
|
|
23
23
|
|
24
24
|
@lang.static_init
|
25
|
-
def
|
25
|
+
def _install_standard_marshaling() -> None:
|
26
26
|
msh.install_standard_factories(
|
27
27
|
msh.TypeMapMarshalerFactory({Keywords: _KeywordsMarshaler()}),
|
28
28
|
msh.TypeMapUnmarshalerFactory({Keywords: _KeywordsUnmarshaler()}),
|
omlish/specs/openapi/_marshal.py
CHANGED
@@ -138,7 +138,7 @@ class _SchemaUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
|
|
138
138
|
|
139
139
|
|
140
140
|
@lang.static_init
|
141
|
-
def
|
141
|
+
def _install_standard_marshaling() -> None:
|
142
142
|
msh.install_standard_factories(
|
143
143
|
_ReferenceUnionMarshalerFactory(),
|
144
144
|
_ReferenceUnionUnmarshalerFactory(),
|
omlish/sql/queries/_marshal.py
CHANGED
omlish/sql/tabledefs/_marshal.py
CHANGED
omlish/typedvalues/marshal.py
CHANGED
@@ -144,7 +144,7 @@ class TypedValuesUnmarshalerFactory(msh.UnmarshalerFactoryMatchClass):
|
|
144
144
|
|
145
145
|
|
146
146
|
@lang.static_init
|
147
|
-
def
|
147
|
+
def _install_standard_marshaling() -> None:
|
148
148
|
msh.install_standard_factories(
|
149
149
|
TypedValueMarshalerFactory(),
|
150
150
|
TypedValueUnmarshalerFactory(),
|
@@ -1,5 +1,5 @@
|
|
1
1
|
omlish/.omlish-manifests.json,sha256=FLw7xkPiSXuImZgqSP8BwrEib2R1doSzUPLUkc-QUIA,8410
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=AWLCwwvTv_7_gUJfD0oOHrTpxeV811jn706gT5iNOPI,3613
|
3
3
|
omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
|
4
4
|
omlish/c3.py,sha256=ZNIMl1kwg3qdei4DiUrJPQe5M81S1e76N-GuNSwLBAE,8683
|
5
5
|
omlish/cached.py,sha256=MLap_p0rdGoDIMVhXVHm1tsbcWobJF0OanoodV03Ju8,542
|
@@ -48,7 +48,7 @@ omlish/asyncs/ioproxy/proxy.py,sha256=TmWNQb7iOKyEk8ZOG2gZuk0RhziymwypWblZQ5u2QS
|
|
48
48
|
omlish/asyncs/ioproxy/typing.py,sha256=ZM-9HRO4dpy-RqomSkyRha9s901ckL30bwjACi2TJ8s,2475
|
49
49
|
omlish/bootstrap/__init__.py,sha256=svuRMcY-rqA31fLnHpTRRAs1uN63MXIeGcKK3NoKhL0,691
|
50
50
|
omlish/bootstrap/__main__.py,sha256=GKhsZdPdJtzE4qnjt34-EvL07nLJVZD-d8nxfGl7EEI,188
|
51
|
-
omlish/bootstrap/_marshal.py,sha256=
|
51
|
+
omlish/bootstrap/_marshal.py,sha256=FF2sUEoLZyQ55F53hLmoeox6Y24XJuKryZXAIth-nJs,485
|
52
52
|
omlish/bootstrap/base.py,sha256=K9CaPlVO7X5dsvmEp-lZw32Ud52K0DoEbPIWGB7Hgcs,1075
|
53
53
|
omlish/bootstrap/diag.py,sha256=nTHKrZBdyEYoTpctwOpwzSMbQ2dROGkxpdzWfoe2xZg,5353
|
54
54
|
omlish/bootstrap/harness.py,sha256=qPYW7CXUdLi-a3BK6GvbdAPb91j5IiRlBPcXCjRGzZo,1995
|
@@ -190,7 +190,7 @@ omlish/dataclasses/metaclass/specs.py,sha256=ZFt7A5S2UQi5ecFGhd9ubnRD0maswQGERMC
|
|
190
190
|
omlish/dataclasses/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
191
191
|
omlish/dataclasses/tools/as_.py,sha256=FLUOtvFf1H3isDQsJcskSVIJeJ3iTtrjug7kp3zbHtI,2639
|
192
192
|
omlish/dataclasses/tools/iter.py,sha256=JQUFG4Gn-xthhJ3OEqXLOWkq2KhRMuIqvEow0HcFPZg,540
|
193
|
-
omlish/dataclasses/tools/modifiers.py,sha256=
|
193
|
+
omlish/dataclasses/tools/modifiers.py,sha256=Ocai2InDqq7dgY_sMI9m2ugPLE4h4Kp5VLeSmalh8s8,1828
|
194
194
|
omlish/dataclasses/tools/only_.py,sha256=hPpqzr9YW09YmlX_QJNU2aePHYJEIrbGCPwmnvVS_to,849
|
195
195
|
omlish/dataclasses/tools/replace.py,sha256=izM9lPT6AhEtjqn22auqaofa0j69KO7iootF-2Uj4cY,396
|
196
196
|
omlish/dataclasses/tools/repr.py,sha256=KFvF6uv2YYIKq8O3ZNbEAS1tqRQALsJ-SUlBNPd5_GI,190
|
@@ -204,7 +204,7 @@ omlish/diag/procfs.py,sha256=eeB3L9UpNBpAfsax3U6OczayYboPlFzOGplqlQ4gBNY,9700
|
|
204
204
|
omlish/diag/procstats.py,sha256=EJEe2Zc58ykBoTfqMXro7H52aQa_pd6uC2hsIPFceso,825
|
205
205
|
omlish/diag/ps.py,sha256=MEpMU6fbkh0bSWrOHh_okOa0JDTUSUQUVSYBdh1TGvE,1672
|
206
206
|
omlish/diag/pycharm.py,sha256=9Mgn5T2ZdlEUL3VV-GzVmCBs_ZtIpLwaUzP6pgHEUEo,4712
|
207
|
-
omlish/diag/pydevd.py,sha256=
|
207
|
+
omlish/diag/pydevd.py,sha256=P8izkeCEJWXFLqOWS6X8qUH3rlcfhiE07ZJOPGa5xYU,8203
|
208
208
|
omlish/diag/threads.py,sha256=sjtlTl41wxssoVCDkBB6xeLF-9kJEK3eA6hmSFWJSQA,3643
|
209
209
|
omlish/diag/timers.py,sha256=cxX3GgjTIjBx9DI4pzCCO5Hfqb1TM3uo22yim7kjfRU,3831
|
210
210
|
omlish/diag/_pycharm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -237,7 +237,7 @@ omlish/formats/__init__.py,sha256=T0AG1gFnqQ5JiHN0UPQjQ-7g5tnxMIG-mgOvMYExYAM,21
|
|
237
237
|
omlish/formats/cbor.py,sha256=o_Hbe4kthO9CeXK-FySrw0dHVlrdyTo2Y8PpGRDfZ3c,514
|
238
238
|
omlish/formats/cloudpickle.py,sha256=16si4yUp_pAdDWGECAWf6HLA2PwSANGGgDoMLGZUem8,579
|
239
239
|
omlish/formats/codecs.py,sha256=n_02fv1Qk2ixG9vDkTZKdRHGWPKnvDBDdOMVKfnElOI,1641
|
240
|
-
omlish/formats/dotenv.py,sha256=
|
240
|
+
omlish/formats/dotenv.py,sha256=nDLVPtWHsJaPWKv9Nl8IXSg2R6fayH40nUEBg_7Ozoc,19345
|
241
241
|
omlish/formats/logfmt.py,sha256=i_pKnzFFyNAcPiqC4FiTYPC6tJujlaGuw94V2YNVkf8,2639
|
242
242
|
omlish/formats/pickle.py,sha256=jdp4E9WH9qVPBE3sSqbqDtUo18RbTSIiSpSzJ-IEVZw,529
|
243
243
|
omlish/formats/props.py,sha256=orlqpFG88hL39apzaAOHmNooQv-kbnXX2WggZjdI-U8,18934
|
@@ -479,9 +479,9 @@ omlish/lite/inject.py,sha256=BQgjBj2mzJgMimLam-loSpQzcb31-8NYPVRQgHVv3cQ,29159
|
|
479
479
|
omlish/lite/json.py,sha256=m0Ce9eqUZG23-H7-oOp8n1sf4fzno5vtK4AK_4Vc-Mg,706
|
480
480
|
omlish/lite/marshal.py,sha256=oVqVwqTArFUj9lYhmKg_MVgnqlCAUvOnYgtU3bBu_bk,23020
|
481
481
|
omlish/lite/maybes.py,sha256=sJ4dawgBxlZ4oB9dZ3bhBb_8AOJlIW0nVIFgFZ1huXE,4384
|
482
|
-
omlish/lite/maysync.py,sha256=
|
482
|
+
omlish/lite/maysync.py,sha256=Otd-xqWaMzY9xBF5SiLKxu4kG_GaWGk8qTGFDAHXDm4,14803
|
483
483
|
omlish/lite/objects.py,sha256=HzN_4J6w6WDLKDrW8jSNUKgfAR5vUsB42rtSCu04oqQ,1921
|
484
|
-
omlish/lite/pycharm.py,sha256=
|
484
|
+
omlish/lite/pycharm.py,sha256=fdSTwtdqGRL0P9IkCrDAPqQkJsegq1NfYyVG2N6cy4w,1174
|
485
485
|
omlish/lite/reflect.py,sha256=aTRQJ-hgnyRxr0dFxivUTScmUgP7zcw_iDQZIsarG24,2119
|
486
486
|
omlish/lite/resources.py,sha256=YNSmX1Ohck1aoWRs55a-o5ChVbFJIQhtbqE-XwF55Oc,326
|
487
487
|
omlish/lite/runtime.py,sha256=J59skBq9kwo1H2s36jAk-k87eKPUtua6CmuXh-3dgmE,464
|
@@ -526,7 +526,7 @@ omlish/manifests/globals.py,sha256=kVqQ-fT4kc7xWzLHoI731GviitFPv2v2yqw-p7t7Exs,2
|
|
526
526
|
omlish/manifests/loading.py,sha256=s6KnhdFQCsI2i0Rus1sMU0so2v8dUBnk59BJkSnxGt8,17514
|
527
527
|
omlish/manifests/static.py,sha256=9BaPBLkuzxHmg5A-5k9BjjBFINCdmFOIu06dMFgCfz4,497
|
528
528
|
omlish/manifests/types.py,sha256=NeOGuIVrcbqjCDbQ3MnCxxHAgHnw0CkWJsBzo230PWE,453
|
529
|
-
omlish/marshal/__init__.py,sha256=
|
529
|
+
omlish/marshal/__init__.py,sha256=uzPPSRIamgMa0syMbY1I_2YJApaABNeDczBmrgm8j7I,6203
|
530
530
|
omlish/marshal/globals.py,sha256=Q6G18hcUwUDDNnpyRPnR5Tn_XZpZCSIEXo09nYSOaNU,2236
|
531
531
|
omlish/marshal/naming.py,sha256=Mk5YrbES836_KflNNRoc5Ajd96iMYLQIMERKx1KpT4g,865
|
532
532
|
omlish/marshal/standard.py,sha256=6L4FK7QVgVFAf2jkTQlCvN-15DWK49VCNlNwCBea3-8,6674
|
@@ -570,8 +570,8 @@ omlish/marshal/objects/unmarshal.py,sha256=izhtSwqSrlWSOL5uZS3naPxnfq3rhv25uUPN7
|
|
570
570
|
omlish/marshal/polymorphism/__init__.py,sha256=e2UTrSL0qp7w_1vkdxDWd7sXlWhep2KPV49-BB64ma8,130
|
571
571
|
omlish/marshal/polymorphism/marshal.py,sha256=ZnayCbRj3451U4py1-9dU99PHvjQuQk-ZQDGgzQjF4U,2292
|
572
572
|
omlish/marshal/polymorphism/metadata.py,sha256=c-sOVGvV96OqMfdXUVcVXK8u4xtxHjdHJFXmUx7Km40,3327
|
573
|
-
omlish/marshal/polymorphism/standard.py,sha256=
|
574
|
-
omlish/marshal/polymorphism/unions.py,sha256=
|
573
|
+
omlish/marshal/polymorphism/standard.py,sha256=6wwFFwL9fTwIDqhynZr05naL8gVNC_RnPux-8vmja8o,587
|
574
|
+
omlish/marshal/polymorphism/unions.py,sha256=kbUAPw4sv9w4gV-rlndHbJLmht_pn9MbLx_CCnaqsw8,5459
|
575
575
|
omlish/marshal/polymorphism/unmarshal.py,sha256=8bLeI9UxUluoIqkRJSJIbdCsKkXjx3myYe9uWs16QjY,2483
|
576
576
|
omlish/marshal/singular/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
577
577
|
omlish/marshal/singular/base64.py,sha256=OZ3Ydwy64S0M-xlktYy5MagzyzTOVYayUXblq8ZK-AE,1164
|
@@ -627,7 +627,7 @@ omlish/reflect/types.py,sha256=4Plo_1cHIk8-68lu8_c_SUEohy19exTNDsgvuVbOJ5A,16066
|
|
627
627
|
omlish/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
628
628
|
omlish/secrets/all.py,sha256=qBxUFIqxCExADL71taNH_W6FYT9QvOrdcaMeUUPO3aw,298
|
629
629
|
omlish/secrets/crypto.py,sha256=q0Hca5oMwvh39r0hrupN_ewxhlllbdDgAgVoloYFmDg,3714
|
630
|
-
omlish/secrets/marshal.py,sha256=
|
630
|
+
omlish/secrets/marshal.py,sha256=RmafPrkmSnO4YEjwLI21z1XQirdg55WMJ8U7zdJ_BqA,1985
|
631
631
|
omlish/secrets/openssl.py,sha256=4zp1KZ1EVRNaBS0VIokTqnamy3ZeeC1XN2wSXx4lEcM,6215
|
632
632
|
omlish/secrets/pwgen.py,sha256=Z5i1qMKK4idOZvWai5dXkI59gX7pYzFFlFYAj7qEmqA,1706
|
633
633
|
omlish/secrets/pwhash.py,sha256=Jctv3QzcMvVPXJsWA3w3LDUlzmyUDGEWG9sLiJz1xaw,4107
|
@@ -660,12 +660,12 @@ omlish/specs/jmespath/parser.py,sha256=uNk9_xQ9cZJC1h5naoH1HMbCs4B0WhV2jN5AvhdKT
|
|
660
660
|
omlish/specs/jmespath/scope.py,sha256=gsVjmAVF0b7s2SevWb0rBbURayiMSIuXfzO4v1ONIrY,1595
|
661
661
|
omlish/specs/jmespath/visitor.py,sha256=6OCi7oa4IsGW5fCqAeFuXYEwn-aLKuMrNMFtQKSpJWo,16951
|
662
662
|
omlish/specs/jsonrpc/__init__.py,sha256=u2kcJeo6YWEvFYf7OqDNKThszGLSmXYFNJpqXmXgm1M,504
|
663
|
-
omlish/specs/jsonrpc/_marshal.py,sha256=
|
663
|
+
omlish/specs/jsonrpc/_marshal.py,sha256=I4mw9uGwrlNe5xXoJixpefPuP-fh2QiDZsTBI4gAQZI,1856
|
664
664
|
omlish/specs/jsonrpc/conns.py,sha256=zvWnBHuSoGnvbGVk72Usp4IFsLscrzPozqR2hmFjnDI,7029
|
665
665
|
omlish/specs/jsonrpc/errors.py,sha256=WxEU7k1TqeZAo_H6eU0LcrXSd-Gi_3fTvtxjXZ9qKww,712
|
666
666
|
omlish/specs/jsonrpc/types.py,sha256=Se9ecG-_k-kY_Qlt9QD2t3y26oY4sXTcskp6XZfVans,3054
|
667
667
|
omlish/specs/jsonschema/__init__.py,sha256=12JNHdvV-LN0d0Ir80Ch8msVb4JqGSjB0wLSwW1oN2U,1187
|
668
|
-
omlish/specs/jsonschema/_marshal.py,sha256
|
668
|
+
omlish/specs/jsonschema/_marshal.py,sha256=LTIMWdBkBQ_1gdVwTszfPu9wIrPYbdG2MGts1bbLFqM,872
|
669
669
|
omlish/specs/jsonschema/types.py,sha256=_H7ma99hD3_Xu42BFGHOXRI5p79tY8WBX8QE36k7lbw,472
|
670
670
|
omlish/specs/jsonschema/keywords/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
671
671
|
omlish/specs/jsonschema/keywords/base.py,sha256=_O_VZySO5j5vnEiQWojk3zwaj7OQowT0e6bk3UYDTeM,3011
|
@@ -690,7 +690,7 @@ omlish/specs/jsonschema/schemas/draft202012/vocabularies/meta-data.json,sha256=j
|
|
690
690
|
omlish/specs/jsonschema/schemas/draft202012/vocabularies/unevaluated.json,sha256=Lb-8tzmUtnCwl2SSre4f_7RsIWgnhNL1pMpWH54tDLQ,506
|
691
691
|
omlish/specs/jsonschema/schemas/draft202012/vocabularies/validation.json,sha256=cBCjHlQfMtK-ch4t40jfdcmzaHaj7TBId_wKvaHTelg,2834
|
692
692
|
omlish/specs/openapi/__init__.py,sha256=KS7OHPBlXwBeTvmsUQy0VMzKYdz2RyH3qLF3bU0NXUw,147
|
693
|
-
omlish/specs/openapi/_marshal.py,sha256=
|
693
|
+
omlish/specs/openapi/_marshal.py,sha256=PYx4Jj8bxnimUwuFi6Y5-Nj1HternkSSx-Rovn-Wp2k,4450
|
694
694
|
omlish/specs/openapi/openapi.py,sha256=6KGY_d8HOyG7ssHIWM40MCXgIMzNLiLKHYNggTSpAYM,12027
|
695
695
|
omlish/sql/__init__.py,sha256=JjgIiP2YfiHHIANP7qgkJUG0IMIRzzvKntyhdDKeNdY,384
|
696
696
|
omlish/sql/abc.py,sha256=3hrCjB4jnPVMef_YXClCblzYUZ9l9yaxJJdd5_Nu9GM,4043
|
@@ -718,7 +718,7 @@ omlish/sql/api/queries.py,sha256=OVsVqNyXXJQVDPfV3GFE2gwnHyGEenS65rTQRTNGx1Y,735
|
|
718
718
|
omlish/sql/api/resources.py,sha256=RcjnsNoyFWG0VR8YDijwuyZtnxlGQe8jiPQVl_inzIc,2266
|
719
719
|
omlish/sql/api/rows.py,sha256=Jo3AA_6Wt7tlwLO6-rp0arzYFqZXSxPudGPkW2xCYgQ,1346
|
720
720
|
omlish/sql/queries/__init__.py,sha256=qoikGQZuwDkOBwGKdUVov_Ur3I-mezSDLLdzqwRw6l8,1567
|
721
|
-
omlish/sql/queries/_marshal.py,sha256=
|
721
|
+
omlish/sql/queries/_marshal.py,sha256=rVCQAyDEBo7LhjD0PlKqg8cLTs8WQS9ngCehz4Hvz4Q,2991
|
722
722
|
omlish/sql/queries/base.py,sha256=nsavenCsZgzpITSI1zGEAi95K3cRDfAxRgNJKJmYul0,3502
|
723
723
|
omlish/sql/queries/binary.py,sha256=dcEzeEn104AMPuQ7QrJU2O-YCN3SUdxB5S4jaWKOUqY,2253
|
724
724
|
omlish/sql/queries/exprs.py,sha256=dG9L218QtJM1HtDYIMWqHimK03N6AL1WONk3FvVRcXY,1480
|
@@ -736,7 +736,7 @@ omlish/sql/queries/stmts.py,sha256=pBqwD7dRlqMu6uh6vR3xaWOEgbZCcFWbOQ9ryYd17T4,4
|
|
736
736
|
omlish/sql/queries/unary.py,sha256=MEYBDZn_H0bexmUrJeONOv5-gIpYowUaXOsEHeQM4ks,1144
|
737
737
|
omlish/sql/queries/unions.py,sha256=w9lKrQ38nMme_gyDPciZNqyCBhwFkLusc9fjmBDu48U,438
|
738
738
|
omlish/sql/tabledefs/__init__.py,sha256=eFaO_QQaEv4Z9CLxFSzZgmXqxPI7xKTpDI6outo1VPk,150
|
739
|
-
omlish/sql/tabledefs/_marshal.py,sha256=
|
739
|
+
omlish/sql/tabledefs/_marshal.py,sha256=1yV2xDNX9iDY1y8QYj1CBDHwlqO6v4xEwDeSGyluMKc,474
|
740
740
|
omlish/sql/tabledefs/dtypes.py,sha256=X0N6Y1c2bQ4HC0WA-Yv_jZPvGlSqO7hMIV-towDw3MU,367
|
741
741
|
omlish/sql/tabledefs/elements.py,sha256=lP_Ch19hKmiGYPQVeC8HpFaKdTYnXi2FfpfwKMxZOck,1674
|
742
742
|
omlish/sql/tabledefs/lower.py,sha256=i4_QkVlVH5U99O6pqokrB661AudNVJ9Q-OwtkKOBleU,1410
|
@@ -818,13 +818,13 @@ omlish/typedvalues/collection.py,sha256=CK4Vk9kJqAt2V8o6I4zGyv2u9DKov12uSvsGdqEd
|
|
818
818
|
omlish/typedvalues/consumer.py,sha256=lDOE-O_sgGbOvbcBg2g5ZRaV2WixnuEYxFsJBaj18oU,4690
|
819
819
|
omlish/typedvalues/generic.py,sha256=ft-x4X3k1oFirtYnDfsvrI3ZQikWM8lGLrvrOEbcGq0,742
|
820
820
|
omlish/typedvalues/holder.py,sha256=vu-umn-h1nvUqmtV5T9ZfQ_OoOYsERu8PhI2N48Ryns,1133
|
821
|
-
omlish/typedvalues/marshal.py,sha256=
|
821
|
+
omlish/typedvalues/marshal.py,sha256=65LsnEiRrGdHvSBhXsEIgprCdOpz3mdEsJfx5avlq4A,4955
|
822
822
|
omlish/typedvalues/of_.py,sha256=UXkxSj504WI2UrFlqdZJbu2hyDwBhL7XVrc2qdR02GQ,1309
|
823
823
|
omlish/typedvalues/reflect.py,sha256=PAvKW6T4cW7u--iX80w3HWwZUS3SmIZ2_lQjT65uAyk,1026
|
824
824
|
omlish/typedvalues/values.py,sha256=ym46I-q2QJ_6l4UlERqv3yj87R-kp8nCKMRph0xQ3UA,1307
|
825
|
-
omlish-0.0.0.
|
826
|
-
omlish-0.0.0.
|
827
|
-
omlish-0.0.0.
|
828
|
-
omlish-0.0.0.
|
829
|
-
omlish-0.0.0.
|
830
|
-
omlish-0.0.0.
|
825
|
+
omlish-0.0.0.dev451.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
826
|
+
omlish-0.0.0.dev451.dist-info/METADATA,sha256=RUeIz2vQhHfOWnmVVON0-V6329t2jdfajK1I_Ih2ZJg,19003
|
827
|
+
omlish-0.0.0.dev451.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
828
|
+
omlish-0.0.0.dev451.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
829
|
+
omlish-0.0.0.dev451.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
830
|
+
omlish-0.0.0.dev451.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|