omlish 0.0.0.dev72__py3-none-any.whl → 0.0.0.dev73__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- omlish/__about__.py +2 -2
- omlish/check.py +26 -26
- omlish/http/clients.py +1 -1
- omlish/http/headers.py +4 -3
- omlish/sql/queries/binary.py +15 -6
- omlish/sql/queries/multi.py +1 -2
- omlish/sql/queries/selects.py +9 -9
- omlish/sql/queries/unary.py +2 -2
- {omlish-0.0.0.dev72.dist-info → omlish-0.0.0.dev73.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev72.dist-info → omlish-0.0.0.dev73.dist-info}/RECORD +14 -14
- {omlish-0.0.0.dev72.dist-info → omlish-0.0.0.dev73.dist-info}/LICENSE +0 -0
- {omlish-0.0.0.dev72.dist-info → omlish-0.0.0.dev73.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev72.dist-info → omlish-0.0.0.dev73.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev72.dist-info → omlish-0.0.0.dev73.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
omlish/check.py
CHANGED
@@ -96,7 +96,7 @@ def _default_exception_factory(exc_cls: type[Exception], *args, **kwargs) -> Exc
|
|
96
96
|
_EXCEPTION_FACTORY = _default_exception_factory
|
97
97
|
|
98
98
|
|
99
|
-
class
|
99
|
+
class _ArgsKwargs:
|
100
100
|
def __init__(self, *args, **kwargs):
|
101
101
|
self.args = args
|
102
102
|
self.kwargs = kwargs
|
@@ -106,7 +106,7 @@ def _raise(
|
|
106
106
|
exception_type: type[Exception],
|
107
107
|
default_message: str,
|
108
108
|
message: Message,
|
109
|
-
ak:
|
109
|
+
ak: _ArgsKwargs = _ArgsKwargs(),
|
110
110
|
*,
|
111
111
|
render_fmt: str | None = None,
|
112
112
|
) -> ta.NoReturn:
|
@@ -159,7 +159,7 @@ def isinstance(v: ta.Any, spec: type[T] | tuple, msg: Message = None) -> T: # n
|
|
159
159
|
TypeError,
|
160
160
|
'Must be instance',
|
161
161
|
msg,
|
162
|
-
|
162
|
+
_ArgsKwargs(v, spec),
|
163
163
|
render_fmt='not isinstance(%s, %s)',
|
164
164
|
)
|
165
165
|
|
@@ -179,7 +179,7 @@ def cast(v: ta.Any, cls: type[T], msg: Message = None) -> T: # noqa
|
|
179
179
|
TypeError,
|
180
180
|
'Must be instance',
|
181
181
|
msg,
|
182
|
-
|
182
|
+
_ArgsKwargs(v, cls),
|
183
183
|
)
|
184
184
|
|
185
185
|
return v
|
@@ -198,7 +198,7 @@ def not_isinstance(v: T, spec: ta.Any, msg: Message = None) -> T: # noqa
|
|
198
198
|
TypeError,
|
199
199
|
'Must not be instance',
|
200
200
|
msg,
|
201
|
-
|
201
|
+
_ArgsKwargs(v, spec),
|
202
202
|
render_fmt='isinstance(%s, %s)',
|
203
203
|
)
|
204
204
|
|
@@ -221,7 +221,7 @@ def issubclass(v: type[T], spec: ta.Any, msg: Message = None) -> type[T]: # noq
|
|
221
221
|
TypeError,
|
222
222
|
'Must be subclass',
|
223
223
|
msg,
|
224
|
-
|
224
|
+
_ArgsKwargs(v, spec),
|
225
225
|
render_fmt='not issubclass(%s, %s)',
|
226
226
|
)
|
227
227
|
|
@@ -234,7 +234,7 @@ def not_issubclass(v: type[T], spec: ta.Any, msg: Message = None) -> type[T]: #
|
|
234
234
|
TypeError,
|
235
235
|
'Must not be subclass',
|
236
236
|
msg,
|
237
|
-
|
237
|
+
_ArgsKwargs(v, spec),
|
238
238
|
render_fmt='issubclass(%s, %s)',
|
239
239
|
)
|
240
240
|
|
@@ -250,7 +250,7 @@ def in_(v: T, c: ta.Container[T], msg: Message = None) -> T:
|
|
250
250
|
ValueError,
|
251
251
|
'Must be in',
|
252
252
|
msg,
|
253
|
-
|
253
|
+
_ArgsKwargs(v, c),
|
254
254
|
render_fmt='%s not in %s',
|
255
255
|
)
|
256
256
|
|
@@ -263,7 +263,7 @@ def not_in(v: T, c: ta.Container[T], msg: Message = None) -> T:
|
|
263
263
|
ValueError,
|
264
264
|
'Must not be in',
|
265
265
|
msg,
|
266
|
-
|
266
|
+
_ArgsKwargs(v, c),
|
267
267
|
render_fmt='%s in %s',
|
268
268
|
)
|
269
269
|
|
@@ -276,7 +276,7 @@ def empty(v: SizedT, msg: Message = None) -> SizedT:
|
|
276
276
|
ValueError,
|
277
277
|
'Must be empty',
|
278
278
|
msg,
|
279
|
-
|
279
|
+
_ArgsKwargs(v),
|
280
280
|
render_fmt='%s',
|
281
281
|
)
|
282
282
|
|
@@ -294,7 +294,7 @@ def iterempty(v: ta.Iterable[T], msg: Message = None) -> ta.Iterable[T]:
|
|
294
294
|
ValueError,
|
295
295
|
'Must be empty',
|
296
296
|
msg,
|
297
|
-
|
297
|
+
_ArgsKwargs(v),
|
298
298
|
render_fmt='%s',
|
299
299
|
)
|
300
300
|
|
@@ -307,7 +307,7 @@ def not_empty(v: SizedT, msg: Message = None) -> SizedT:
|
|
307
307
|
ValueError,
|
308
308
|
'Must not be empty',
|
309
309
|
msg,
|
310
|
-
|
310
|
+
_ArgsKwargs(v),
|
311
311
|
render_fmt='%s',
|
312
312
|
)
|
313
313
|
|
@@ -321,7 +321,7 @@ def unique(it: ta.Iterable[T], msg: Message = None) -> ta.Iterable[T]:
|
|
321
321
|
ValueError,
|
322
322
|
'Must be unique',
|
323
323
|
msg,
|
324
|
-
|
324
|
+
_ArgsKwargs(it, dupes),
|
325
325
|
)
|
326
326
|
|
327
327
|
return it
|
@@ -335,7 +335,7 @@ def single(obj: ta.Iterable[T], message: Message = None) -> T:
|
|
335
335
|
ValueError,
|
336
336
|
'Must be single',
|
337
337
|
message,
|
338
|
-
|
338
|
+
_ArgsKwargs(obj),
|
339
339
|
render_fmt='%s',
|
340
340
|
)
|
341
341
|
|
@@ -358,7 +358,7 @@ def opt_single(obj: ta.Iterable[T], message: Message = None) -> T | None:
|
|
358
358
|
ValueError,
|
359
359
|
'Must be empty or single',
|
360
360
|
message,
|
361
|
-
|
361
|
+
_ArgsKwargs(obj),
|
362
362
|
render_fmt='%s',
|
363
363
|
)
|
364
364
|
|
@@ -372,7 +372,7 @@ def none(v: ta.Any, msg: Message = None) -> None:
|
|
372
372
|
ValueError,
|
373
373
|
'Must be None',
|
374
374
|
msg,
|
375
|
-
|
375
|
+
_ArgsKwargs(v),
|
376
376
|
render_fmt='%s',
|
377
377
|
)
|
378
378
|
|
@@ -383,7 +383,7 @@ def not_none(v: T | None, msg: Message = None) -> T:
|
|
383
383
|
ValueError,
|
384
384
|
'Must not be None',
|
385
385
|
msg,
|
386
|
-
|
386
|
+
_ArgsKwargs(v),
|
387
387
|
render_fmt='%s',
|
388
388
|
)
|
389
389
|
|
@@ -399,7 +399,7 @@ def equal(v: T, o: ta.Any, msg: Message = None) -> T:
|
|
399
399
|
ValueError,
|
400
400
|
'Must be equal',
|
401
401
|
msg,
|
402
|
-
|
402
|
+
_ArgsKwargs(v, o),
|
403
403
|
render_fmt='%s != %s',
|
404
404
|
)
|
405
405
|
|
@@ -412,7 +412,7 @@ def is_(v: T, o: ta.Any, msg: Message = None) -> T:
|
|
412
412
|
ValueError,
|
413
413
|
'Must be the same',
|
414
414
|
msg,
|
415
|
-
|
415
|
+
_ArgsKwargs(v, o),
|
416
416
|
render_fmt='%s is not %s',
|
417
417
|
)
|
418
418
|
|
@@ -425,7 +425,7 @@ def is_not(v: T, o: ta.Any, msg: Message = None) -> T:
|
|
425
425
|
ValueError,
|
426
426
|
'Must not be the same',
|
427
427
|
msg,
|
428
|
-
|
428
|
+
_ArgsKwargs(v, o),
|
429
429
|
render_fmt='%s is %s',
|
430
430
|
)
|
431
431
|
|
@@ -438,7 +438,7 @@ def callable(v: T, msg: Message = None) -> T: # noqa
|
|
438
438
|
TypeError,
|
439
439
|
'Must be callable',
|
440
440
|
msg,
|
441
|
-
|
441
|
+
_ArgsKwargs(v),
|
442
442
|
render_fmt='%s',
|
443
443
|
)
|
444
444
|
|
@@ -451,7 +451,7 @@ def non_empty_str(v: str | None, msg: Message = None) -> str:
|
|
451
451
|
ValueError,
|
452
452
|
'Must be non-empty str',
|
453
453
|
msg,
|
454
|
-
|
454
|
+
_ArgsKwargs(v),
|
455
455
|
render_fmt='%s',
|
456
456
|
)
|
457
457
|
|
@@ -464,7 +464,7 @@ def replacing(expected: ta.Any, old: ta.Any, new: T, msg: Message = None) -> T:
|
|
464
464
|
ValueError,
|
465
465
|
'Must be replacing',
|
466
466
|
msg,
|
467
|
-
|
467
|
+
_ArgsKwargs(expected, old, new),
|
468
468
|
render_fmt='%s -> %s -> %s',
|
469
469
|
)
|
470
470
|
|
@@ -477,7 +477,7 @@ def replacing_none(old: ta.Any, new: T, msg: Message = None) -> T:
|
|
477
477
|
ValueError,
|
478
478
|
'Must be replacing None',
|
479
479
|
msg,
|
480
|
-
|
480
|
+
_ArgsKwargs(old, new),
|
481
481
|
render_fmt='%s -> %s',
|
482
482
|
)
|
483
483
|
|
@@ -493,7 +493,7 @@ def arg(v: bool, msg: Message = None) -> None:
|
|
493
493
|
RuntimeError,
|
494
494
|
'Argument condition not met',
|
495
495
|
msg,
|
496
|
-
|
496
|
+
_ArgsKwargs(v),
|
497
497
|
render_fmt='%s',
|
498
498
|
)
|
499
499
|
|
@@ -504,6 +504,6 @@ def state(v: bool, msg: Message = None) -> None:
|
|
504
504
|
RuntimeError,
|
505
505
|
'State condition not met',
|
506
506
|
msg,
|
507
|
-
|
507
|
+
_ArgsKwargs(v),
|
508
508
|
render_fmt='%s',
|
509
509
|
)
|
omlish/http/clients.py
CHANGED
@@ -133,7 +133,7 @@ class UrllibHttpClient(HttpClient):
|
|
133
133
|
|
134
134
|
# urllib headers are dumb dicts [1], and keys *must* be strings or it will automatically add problematic default
|
135
135
|
# headers because it doesn't see string keys in its header dict [2]. frustratingly it has no problem accepting
|
136
|
-
# bytes
|
136
|
+
# bytes values though [3].
|
137
137
|
# [1]: https://github.com/python/cpython/blob/232b303e4ca47892f544294bf42e31dc34f0ec72/Lib/urllib/request.py#L319-L325 # noqa
|
138
138
|
# [2]: https://github.com/python/cpython/blob/232b303e4ca47892f544294bf42e31dc34f0ec72/Lib/urllib/request.py#L1276-L1279 # noqa
|
139
139
|
# [3]: https://github.com/python/cpython/blob/232b303e4ca47892f544294bf42e31dc34f0ec72/Lib/http/client.py#L1300-L1301 # noqa
|
omlish/http/headers.py
CHANGED
@@ -12,13 +12,14 @@ CanHttpHeaders: ta.TypeAlias = ta.Union[
|
|
12
12
|
|
13
13
|
ta.Mapping[str, str],
|
14
14
|
ta.Mapping[str, ta.Sequence[str]],
|
15
|
+
ta.Mapping[str, str | ta.Sequence[str]],
|
15
16
|
|
16
17
|
ta.Mapping[bytes, bytes],
|
17
18
|
ta.Mapping[bytes, ta.Sequence[bytes]],
|
19
|
+
ta.Mapping[bytes, bytes | ta.Sequence[bytes]],
|
18
20
|
|
19
21
|
ta.Mapping[StrOrBytes, StrOrBytes],
|
20
22
|
ta.Mapping[StrOrBytes, ta.Sequence[StrOrBytes]],
|
21
|
-
|
22
23
|
ta.Mapping[StrOrBytes, StrOrBytes | ta.Sequence[StrOrBytes]],
|
23
24
|
|
24
25
|
ta.Sequence[tuple[str, str]],
|
@@ -153,11 +154,11 @@ class HttpHeaders:
|
|
153
154
|
...
|
154
155
|
|
155
156
|
@ta.overload
|
156
|
-
def __getitem__(self, item: int) -> StrOrBytes:
|
157
|
+
def __getitem__(self, item: int) -> tuple[StrOrBytes, StrOrBytes]:
|
157
158
|
...
|
158
159
|
|
159
160
|
@ta.overload
|
160
|
-
def __getitem__(self, item: slice) -> ta.Sequence[StrOrBytes]:
|
161
|
+
def __getitem__(self, item: slice) -> ta.Sequence[tuple[StrOrBytes, StrOrBytes]]:
|
161
162
|
...
|
162
163
|
|
163
164
|
def __getitem__(self, item):
|
omlish/sql/queries/binary.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
+
import enum
|
2
|
+
|
1
3
|
from ... import check
|
4
|
+
from ... import dataclasses as dc
|
2
5
|
from ... import lang
|
3
|
-
from .base import Node
|
4
6
|
from .exprs import CanExpr
|
5
7
|
from .exprs import Expr
|
6
8
|
from .exprs import ExprBuilder
|
@@ -9,16 +11,23 @@ from .exprs import ExprBuilder
|
|
9
11
|
##
|
10
12
|
|
11
13
|
|
12
|
-
class
|
14
|
+
class BinaryOpKind(enum.Enum):
|
15
|
+
ARITH = enum.auto()
|
16
|
+
BIT = enum.auto()
|
17
|
+
CMP = enum.auto()
|
18
|
+
|
19
|
+
|
20
|
+
class BinaryOp(dc.Frozen, lang.Final, eq=False):
|
13
21
|
name: str
|
22
|
+
kind: BinaryOpKind
|
14
23
|
|
15
24
|
|
16
25
|
class BinaryOps(lang.Namespace):
|
17
|
-
ADD = BinaryOp('add')
|
18
|
-
SUB = BinaryOp('sub')
|
26
|
+
ADD = BinaryOp('add', BinaryOpKind.ARITH)
|
27
|
+
SUB = BinaryOp('sub', BinaryOpKind.ARITH)
|
19
28
|
|
20
|
-
EQ = BinaryOp('eq')
|
21
|
-
NE = BinaryOp('ne')
|
29
|
+
EQ = BinaryOp('eq', BinaryOpKind.CMP)
|
30
|
+
NE = BinaryOp('ne', BinaryOpKind.CMP)
|
22
31
|
|
23
32
|
|
24
33
|
class Binary(Expr, lang.Final):
|
omlish/sql/queries/multi.py
CHANGED
@@ -3,7 +3,6 @@ import typing as ta
|
|
3
3
|
from ... import check
|
4
4
|
from ... import dataclasses as dc
|
5
5
|
from ... import lang
|
6
|
-
from .base import Node
|
7
6
|
from .exprs import CanExpr
|
8
7
|
from .exprs import Expr
|
9
8
|
from .exprs import ExprBuilder
|
@@ -12,7 +11,7 @@ from .exprs import ExprBuilder
|
|
12
11
|
##
|
13
12
|
|
14
13
|
|
15
|
-
class MultiOp(
|
14
|
+
class MultiOp(dc.Frozen, lang.Final, eq=False):
|
16
15
|
name: str
|
17
16
|
|
18
17
|
|
omlish/sql/queries/selects.py
CHANGED
@@ -22,9 +22,9 @@ class SelectItem(Node, lang.Final):
|
|
22
22
|
|
23
23
|
|
24
24
|
class Select(Stmt, lang.Final):
|
25
|
-
|
26
|
-
|
27
|
-
|
25
|
+
items: ta.Sequence[SelectItem] = dc.xfield(coerce=tuple)
|
26
|
+
from_: Relation | None = dc.xfield(None, repr_fn=dc.opt_repr)
|
27
|
+
where: Expr | None = dc.xfield(None, repr_fn=dc.opt_repr)
|
28
28
|
|
29
29
|
|
30
30
|
CanSelectItem: ta.TypeAlias = SelectItem | CanExpr
|
@@ -39,12 +39,12 @@ class SelectBuilder(ExprBuilder, RelationBuilder):
|
|
39
39
|
|
40
40
|
def select(
|
41
41
|
self,
|
42
|
-
|
43
|
-
|
44
|
-
|
42
|
+
items: ta.Sequence[CanSelectItem],
|
43
|
+
from_: CanRelation | None = None,
|
44
|
+
where: CanExpr | None = None,
|
45
45
|
) -> Select:
|
46
46
|
return Select(
|
47
|
-
[self.select_item(i) for i in
|
48
|
-
|
49
|
-
|
47
|
+
[self.select_item(i) for i in items],
|
48
|
+
from_=self.relation(from_) if from_ is not None else None,
|
49
|
+
where=self.expr(where) if where is not None else None,
|
50
50
|
)
|
omlish/sql/queries/unary.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
+
from ... import dataclasses as dc
|
1
2
|
from ... import lang
|
2
|
-
from .base import Node
|
3
3
|
from .exprs import CanExpr
|
4
4
|
from .exprs import Expr
|
5
5
|
from .exprs import ExprBuilder
|
@@ -8,7 +8,7 @@ from .exprs import ExprBuilder
|
|
8
8
|
##
|
9
9
|
|
10
10
|
|
11
|
-
class UnaryOp(
|
11
|
+
class UnaryOp(dc.Frozen, lang.Final, eq=False):
|
12
12
|
name: str
|
13
13
|
|
14
14
|
|
@@ -1,10 +1,10 @@
|
|
1
1
|
omlish/.manifests.json,sha256=TXvFdkAU0Zr2FKdo7fyvt9nr3UjCtrnAZ0diZXSAteE,1430
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=yPixWBOcI8ebqG0dPVHJ2dG1M4Ec4rBKr8ehmN0d7qQ,3420
|
3
3
|
omlish/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
omlish/argparse.py,sha256=Dc73G8lyoQBLvXhMYUbzQUh4SJu_OTvKUXjSUxq_ang,7499
|
5
5
|
omlish/c3.py,sha256=4vogWgwPb8TbNS2KkZxpoWbwjj7MuHG2lQG-hdtkvjI,8062
|
6
6
|
omlish/cached.py,sha256=UAizxlH4eMWHPzQtmItmyE6FEpFEUFzIkxaO2BHWZ5s,196
|
7
|
-
omlish/check.py,sha256=
|
7
|
+
omlish/check.py,sha256=rZFEn6IHiMq4KGCYxlUGcUCJP12pPPUs_-AG0aouPM8,10540
|
8
8
|
omlish/datetimes.py,sha256=HajeM1kBvwlTa-uR1TTZHmZ3zTPnnUr1uGGQhiO1XQ0,2152
|
9
9
|
omlish/defs.py,sha256=T3bq_7h_tO3nDB5RAFBn7DkdeQgqheXzkFColbOHZko,4890
|
10
10
|
omlish/dynamic.py,sha256=35C_cCX_Vq2HrHzGk5T-zbrMvmUdiIiwDzDNixczoDo,6541
|
@@ -202,13 +202,13 @@ omlish/graphs/dot/rendering.py,sha256=2UgXvMRN4Z9cfIqLlC7Iu_8bWbwUDEL4opHHkFfSqT
|
|
202
202
|
omlish/graphs/dot/utils.py,sha256=_FMwn77WfiiAfLsRTOKWm4IYbNv5kQN22YJ5psw6CWg,801
|
203
203
|
omlish/http/__init__.py,sha256=-ENDALr8ehHvivRD6cxIbEC94t0RHhrakf6CQRDTc8o,625
|
204
204
|
omlish/http/asgi.py,sha256=wXhBZ21bEl32Kv9yBrRwUR_7pHEgVtHP8ZZwbasQ6-4,3307
|
205
|
-
omlish/http/clients.py,sha256=
|
205
|
+
omlish/http/clients.py,sha256=eOY4bmbGdXuOOabt9NLAcTO7G49u85-HoAFW28mCXS4,6004
|
206
206
|
omlish/http/collections.py,sha256=s8w5s4Gewgxxhe2Ai0R45PgJYYifrLgTbU3VXVflHj4,260
|
207
207
|
omlish/http/consts.py,sha256=FTolezLknKU6WJjk_x2T3a5LEMlnZSqv7gzTq55lxcU,2147
|
208
208
|
omlish/http/cookies.py,sha256=uuOYlHR6e2SC3GM41V0aozK10nef9tYg83Scqpn5-HM,6351
|
209
209
|
omlish/http/dates.py,sha256=Otgp8wRxPgNGyzx8LFowu1vC4EKJYARCiAwLFncpfHM,2875
|
210
210
|
omlish/http/encodings.py,sha256=w2WoKajpaZnQH8j-IBvk5ZFL2O2pAU_iBvZnkocaTlw,164
|
211
|
-
omlish/http/headers.py,sha256=
|
211
|
+
omlish/http/headers.py,sha256=S66wiXezBHybrnjAM15E9x4GJvPRvFQHeKaXdJ799fw,5028
|
212
212
|
omlish/http/json.py,sha256=9XwAsl4966Mxrv-1ytyCqhcE6lbBJw-0_tFZzGszgHE,7440
|
213
213
|
omlish/http/sessions.py,sha256=VZ_WS5uiQG5y7i3u8oKuQMqf8dPKUOjFm_qk_0OvI8c,4793
|
214
214
|
omlish/http/wsgi.py,sha256=czZsVUX-l2YTlMrUjKN49wRoP4rVpS0qpeBn4O5BoMY,948
|
@@ -390,16 +390,16 @@ omlish/sql/alchemy/secrets.py,sha256=EMfy4EfTbEvrlv_41oOhn8qsoF-eTkY7HciPenIE6rI
|
|
390
390
|
omlish/sql/alchemy/sqlean.py,sha256=RbkuOuFIfM4fowwKk8-sQ6Dxk-tTUwxS94nY5Kxt52s,403
|
391
391
|
omlish/sql/queries/__init__.py,sha256=TEl0iNWVxPURJIRJSaKpy5EJkyVXw2Zej8jlKmeggAo,963
|
392
392
|
omlish/sql/queries/base.py,sha256=_8O3MbH_OEjBnhp2oIJUZ3ClaQ8l4Sj9BdPdsP0Ie-g,224
|
393
|
-
omlish/sql/queries/binary.py,sha256=
|
393
|
+
omlish/sql/queries/binary.py,sha256=qqlsyW7PM4DS2MkESKV81GMue22OnftOc8VD5KFpZI8,1242
|
394
394
|
omlish/sql/queries/exprs.py,sha256=tJ5gK21NKYbxKnJmrAUDkzaPqzg7hg6-z2GS4-MG05U,1092
|
395
395
|
omlish/sql/queries/idents.py,sha256=erW6fE9UapuvW1ZeLfGFz7yuW6zzktWIWmOuAHeF8_g,496
|
396
|
-
omlish/sql/queries/multi.py,sha256=
|
396
|
+
omlish/sql/queries/multi.py,sha256=qlcci2wv_gDfOPuPpwFS-aV6f11T8ftmIDzx2dbI82k,857
|
397
397
|
omlish/sql/queries/names.py,sha256=YiIyS6ehYMYrdLlUxMawV_Xf2zdi7RwVO9Qsxr_W4_4,772
|
398
398
|
omlish/sql/queries/relations.py,sha256=zAOCJWopA3MxAE_J4wxRtuvGEOcQgOnAQaF_wT4z930,804
|
399
|
-
omlish/sql/queries/selects.py,sha256=
|
399
|
+
omlish/sql/queries/selects.py,sha256=EcHlyKl5kGSY1d3GVxnImhGCTB6WvwQnlSA9eZanBqU,1364
|
400
400
|
omlish/sql/queries/std.py,sha256=pddD8-WDDGwX97OW7MLahaZTLsO_0NLxxIIAXXq1N40,537
|
401
401
|
omlish/sql/queries/stmts.py,sha256=pBqwD7dRlqMu6uh6vR3xaWOEgbZCcFWbOQ9ryYd17T4,441
|
402
|
-
omlish/sql/queries/unary.py,sha256=
|
402
|
+
omlish/sql/queries/unary.py,sha256=lbVfsfS2zcJFchZ4sqoGMFzNEgc_Tnfj5_P1Yjs9lqs,540
|
403
403
|
omlish/sql/tabledefs/__init__.py,sha256=TvtQsp-jJu6_ZahyCOFAaElSSBcRftNyJpdiDPGYCDk,190
|
404
404
|
omlish/sql/tabledefs/alchemy.py,sha256=MiNfVSgX_Ka6PmVTgAcCmS3ULK5mfVRXD_VC2-9TidU,485
|
405
405
|
omlish/sql/tabledefs/dtypes.py,sha256=egZDi-A17MC-4R_ZKR_3uQf1a6mGm91Gmh0b72O85bQ,362
|
@@ -433,9 +433,9 @@ omlish/text/delimit.py,sha256=ubPXcXQmtbOVrUsNh5gH1mDq5H-n1y2R4cPL5_DQf68,4928
|
|
433
433
|
omlish/text/glyphsplit.py,sha256=Ug-dPRO7x-OrNNr8g1y6DotSZ2KH0S-VcOmUobwa4B0,3296
|
434
434
|
omlish/text/indent.py,sha256=6Jj6TFY9unaPa4xPzrnZemJ-fHsV53IamP93XGjSUHs,1274
|
435
435
|
omlish/text/parts.py,sha256=7vPF1aTZdvLVYJ4EwBZVzRSy8XB3YqPd7JwEnNGGAOo,6495
|
436
|
-
omlish-0.0.0.
|
437
|
-
omlish-0.0.0.
|
438
|
-
omlish-0.0.0.
|
439
|
-
omlish-0.0.0.
|
440
|
-
omlish-0.0.0.
|
441
|
-
omlish-0.0.0.
|
436
|
+
omlish-0.0.0.dev73.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
437
|
+
omlish-0.0.0.dev73.dist-info/METADATA,sha256=8-3oSBXhJcYztmni0BLIGOG4G_Wme3JfJKM25ag5sLI,4167
|
438
|
+
omlish-0.0.0.dev73.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
439
|
+
omlish-0.0.0.dev73.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
440
|
+
omlish-0.0.0.dev73.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
441
|
+
omlish-0.0.0.dev73.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|