reykit 1.1.104__py3-none-any.whl → 1.1.106__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.
- reykit/rlog.py +0 -4
- reykit/rmonkey.py +2 -3
- reykit/rschedule.py +1 -3
- reykit/rstdout.py +0 -2
- reykit/rtask.py +1 -1
- {reykit-1.1.104.dist-info → reykit-1.1.106.dist-info}/METADATA +1 -1
- {reykit-1.1.104.dist-info → reykit-1.1.106.dist-info}/RECORD +9 -9
- {reykit-1.1.104.dist-info → reykit-1.1.106.dist-info}/WHEEL +0 -0
- {reykit-1.1.104.dist-info → reykit-1.1.106.dist-info}/licenses/LICENSE +0 -0
reykit/rlog.py
CHANGED
@@ -308,7 +308,6 @@ class Log(Base):
|
|
308
308
|
"""
|
309
309
|
|
310
310
|
|
311
|
-
# Define.
|
312
311
|
def default_filter_method(
|
313
312
|
record: LogRecord
|
314
313
|
) -> Literal[True]:
|
@@ -360,7 +359,6 @@ class Log(Base):
|
|
360
359
|
"""
|
361
360
|
|
362
361
|
|
363
|
-
# Define.
|
364
362
|
class _Filter(Base, Filter):
|
365
363
|
"""
|
366
364
|
Filter type.
|
@@ -646,7 +644,6 @@ class Log(Base):
|
|
646
644
|
_, queue = self.add_queue(level=level, filter_=filter_)
|
647
645
|
|
648
646
|
|
649
|
-
# Define.
|
650
647
|
@wrap_thread
|
651
648
|
def execute() -> None:
|
652
649
|
"""
|
@@ -698,7 +695,6 @@ class Log(Base):
|
|
698
695
|
"""
|
699
696
|
|
700
697
|
|
701
|
-
# Define.
|
702
698
|
def preprocess(__s: str) -> str:
|
703
699
|
"""
|
704
700
|
Preprocess function.
|
reykit/rmonkey.py
CHANGED
@@ -209,7 +209,7 @@ def monkey_sqlalchemy_row_index_field():
|
|
209
209
|
from typing import Any, overload
|
210
210
|
from sqlalchemy.engine.row import Row
|
211
211
|
|
212
|
-
|
212
|
+
|
213
213
|
@overload
|
214
214
|
def __getitem__(self, index: str | int) -> Any: ...
|
215
215
|
|
@@ -251,7 +251,6 @@ def monkey_pprint_modify_width_judgment() -> None:
|
|
251
251
|
from pprint import PrettyPrinter, _recursion
|
252
252
|
|
253
253
|
|
254
|
-
# Define.
|
255
254
|
def __format(_self, obj, stream, indent, allowance, context, level):
|
256
255
|
|
257
256
|
from .rtext import get_width
|
@@ -299,12 +298,12 @@ def monkey_path_pil_image_get_bytes():
|
|
299
298
|
>>> image.get_bytes()
|
300
299
|
"""
|
301
300
|
|
301
|
+
# Import.
|
302
302
|
from PIL.Image import Image
|
303
303
|
from io import BytesIO
|
304
304
|
from .rbase import Base
|
305
305
|
|
306
306
|
|
307
|
-
# Define.
|
308
307
|
def method_get_bytes(self: Image) -> bytes:
|
309
308
|
"""
|
310
309
|
Get image bytes data.
|
reykit/rschedule.py
CHANGED
@@ -16,8 +16,7 @@ from apscheduler.executors.pool import ThreadPoolExecutor
|
|
16
16
|
from apscheduler.schedulers.background import BackgroundScheduler
|
17
17
|
from apscheduler.schedulers.blocking import BlockingScheduler
|
18
18
|
from apscheduler.job import Job
|
19
|
-
from reydb import rorm
|
20
|
-
from reydb.rdb import Database
|
19
|
+
from reydb import rorm, Database
|
21
20
|
|
22
21
|
from .rbase import Base, throw
|
23
22
|
|
@@ -237,7 +236,6 @@ class Schedule(Base):
|
|
237
236
|
"""
|
238
237
|
|
239
238
|
|
240
|
-
# Define.
|
241
239
|
@functools_wraps(task)
|
242
240
|
def _task(*args, **kwargs) -> None:
|
243
241
|
"""
|
reykit/rstdout.py
CHANGED
@@ -251,7 +251,6 @@ def modify_print(preprocess: Callable[[str], str] | None) -> None:
|
|
251
251
|
"""
|
252
252
|
|
253
253
|
|
254
|
-
# Define.
|
255
254
|
def write(__s: str) -> int | None:
|
256
255
|
"""
|
257
256
|
Modified standard output write method.
|
@@ -303,7 +302,6 @@ def add_print_position() -> None:
|
|
303
302
|
"""
|
304
303
|
|
305
304
|
|
306
|
-
# Define.
|
307
305
|
def preprocess(__s: str) -> str:
|
308
306
|
"""
|
309
307
|
Preprocess function.
|
reykit/rtask.py
CHANGED
@@ -4,25 +4,25 @@ reykit/rbase.py,sha256=nQWIODrCkrcNEWY0tNW5Gm894kfqKxkVlr3jsXQRnwI,22252
|
|
4
4
|
reykit/rdata.py,sha256=JLdq6vAaHsMIV59GifWqb9J5WSuWJr313WtcKI_XvJY,11332
|
5
5
|
reykit/remail.py,sha256=ybWJ2mXSgtIzr-p_OYyrijxjNxQXt5wEMtUUMbhQfLg,6702
|
6
6
|
reykit/rimage.py,sha256=onM8cdkIY2L84nocvSyBoY9-JieIAJn0eWBh30WRPeg,6133
|
7
|
-
reykit/rlog.py,sha256=
|
8
|
-
reykit/rmonkey.py,sha256=
|
7
|
+
reykit/rlog.py,sha256=_B264n2BfFFte-_CfMPeuOieycyaS2Ut4bLR2_xAFa4,25658
|
8
|
+
reykit/rmonkey.py,sha256=uvJYGehkXfWoLF65jv4jwWacc8z-8EIhpUsffe-68mA,7903
|
9
9
|
reykit/rnet.py,sha256=p-Z-jMt3LELGQgRPzzkqbdS4X6m7BafGrqn_JLLmsEY,16846
|
10
10
|
reykit/rnum.py,sha256=O8tFLAbDIGG25SvC3i_d9Jq8lRaR1JrzZe5WN0pqIiU,3612
|
11
11
|
reykit/ros.py,sha256=0QIBlhDUv3BCeiuVRBZQbhS6wHLF1RWrLHW1Uq9nUw8,47723
|
12
12
|
reykit/rrand.py,sha256=dcBVVzlRDmSsdWs9MH4SSNMZ_ORhnIBwLzLzX2yvKDk,8558
|
13
13
|
reykit/rre.py,sha256=gNRM94qXWWdyha5kaXeDj03WFs4BGFirq_Orhgi18wY,6010
|
14
|
-
reykit/rschedule.py,sha256
|
15
|
-
reykit/rstdout.py,sha256=
|
14
|
+
reykit/rschedule.py,sha256=--qIgMop7yPQO9W9ac_KiP28-KLvKyHT9IhkY88Mbzo,12177
|
15
|
+
reykit/rstdout.py,sha256=ykEOI4K9TDu10KKhI83tlKcIreqgx_Lu6gBC3FvSUXs,8090
|
16
16
|
reykit/rsys.py,sha256=kmk20RozJxSFgqPuUOk7mo7YcKEF1u6irTULpVW4ZLA,24903
|
17
17
|
reykit/rtable.py,sha256=e4Eh06p4XFXLDcIfKPVvFd56nMklvPpaff_pe6NhEIM,10596
|
18
|
-
reykit/rtask.py,sha256=
|
18
|
+
reykit/rtask.py,sha256=n1JFMsKRvy0vOndjsZpHcTe04Z89L82ixVkRfhG9KXM,27528
|
19
19
|
reykit/rtext.py,sha256=M92jCkmak5nELlue7YCFNXS02g_d2Uc1YQSjsdw3KA8,13236
|
20
20
|
reykit/rtime.py,sha256=p6mcGqQZX7XRFOIv4VyOI7K8XWADoltXPT26b2ha2wY,17775
|
21
21
|
reykit/rwrap.py,sha256=noJ_tNqAH95ZgXcFtyiLzKr4MCLkGXFPZvREM-4J068,15074
|
22
22
|
reykit/rzip.py,sha256=kPSjz1hCgPFqmINn3qw_8yVCb6wAPbSq4-VIcan98z8,3442
|
23
23
|
reykit/rdll/__init__.py,sha256=DUYGZzREGzhis36rKYGzI5JYCZJlUoKb80mkoXFfsV4,694
|
24
24
|
reykit/rdll/rdll_core.py,sha256=o6-rKcTQgxZQe0kD3GnwyNb3KL9IogzgCQNOmYLMm7A,5086
|
25
|
-
reykit-1.1.
|
26
|
-
reykit-1.1.
|
27
|
-
reykit-1.1.
|
28
|
-
reykit-1.1.
|
25
|
+
reykit-1.1.106.dist-info/METADATA,sha256=7FDMiyxj11fdw6LnIc8NA3J1FBjj894EfTFqZixKRzw,1882
|
26
|
+
reykit-1.1.106.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
27
|
+
reykit-1.1.106.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
28
|
+
reykit-1.1.106.dist-info/RECORD,,
|
File without changes
|
File without changes
|