reykit 1.1.43__py3-none-any.whl → 1.1.44__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/rbase.py +3 -3
- reykit/rdll/__init__.py +1 -1
- reykit/rlog.py +10 -10
- reykit/ros.py +5 -5
- reykit/rsys.py +4 -4
- reykit/rtext.py +1 -1
- reykit/rtime.py +1 -1
- {reykit-1.1.43.dist-info → reykit-1.1.44.dist-info}/METADATA +1 -1
- {reykit-1.1.43.dist-info → reykit-1.1.44.dist-info}/RECORD +11 -11
- {reykit-1.1.43.dist-info → reykit-1.1.44.dist-info}/WHEEL +0 -0
- {reykit-1.1.43.dist-info → reykit-1.1.44.dist-info}/licenses/LICENSE +0 -0
reykit/rbase.py
CHANGED
@@ -479,7 +479,7 @@ def check_response_code(
|
|
479
479
|
Parameters
|
480
480
|
----------
|
481
481
|
code : Response code.
|
482
|
-
range
|
482
|
+
range\\_ : Pass the code range.
|
483
483
|
- `None`: Check if is between 200 and 299.
|
484
484
|
- `int`: Check if is this value.
|
485
485
|
- `Iterable`: Check if is in sequence.
|
@@ -650,7 +650,7 @@ def get_stack_text(format_: Literal['plain', 'full'] = 'plain', limit: int = 2)
|
|
650
650
|
|
651
651
|
Parameters
|
652
652
|
----------
|
653
|
-
format
|
653
|
+
format\\_ : Stack text format.
|
654
654
|
- `Literal['plain']`: Floor stack position.
|
655
655
|
- `Literal['full']`: Full stack information.
|
656
656
|
limit : Stack limit level.
|
@@ -714,7 +714,7 @@ def get_stack_param(format_: Literal['floor', 'full'] = 'floor', limit: int = 2)
|
|
714
714
|
|
715
715
|
Parameters
|
716
716
|
----------
|
717
|
-
format
|
717
|
+
format\\_ : Stack parameters format.
|
718
718
|
- `Literal['floor']`: Floor stack parameters.
|
719
719
|
- `Literal['full']`: Full stack parameters.
|
720
720
|
limit : Stack limit level.
|
reykit/rdll/__init__.py
CHANGED
reykit/rlog.py
CHANGED
@@ -155,7 +155,7 @@ class Log(Base):
|
|
155
155
|
|
156
156
|
Parameters
|
157
157
|
----------
|
158
|
-
format
|
158
|
+
format\\_ : Record format.
|
159
159
|
record : Log record instance.
|
160
160
|
"""
|
161
161
|
|
@@ -223,7 +223,7 @@ class Log(Base):
|
|
223
223
|
|
224
224
|
Parameters
|
225
225
|
----------
|
226
|
-
format
|
226
|
+
format\\_ : Record format.
|
227
227
|
record : Log record instance.
|
228
228
|
"""
|
229
229
|
|
@@ -277,7 +277,7 @@ class Log(Base):
|
|
277
277
|
|
278
278
|
Parameters
|
279
279
|
----------
|
280
|
-
format
|
280
|
+
format\\_ : Record format.
|
281
281
|
record : Log record instance.
|
282
282
|
"""
|
283
283
|
|
@@ -297,7 +297,7 @@ class Log(Base):
|
|
297
297
|
|
298
298
|
Parameters
|
299
299
|
----------
|
300
|
-
format
|
300
|
+
format\\_ : Record format.
|
301
301
|
mode : Handler mode.
|
302
302
|
- `None`: Standard filter method.
|
303
303
|
- `Literal['print']`: Print handler filter method.
|
@@ -404,14 +404,14 @@ class Log(Base):
|
|
404
404
|
Parameters
|
405
405
|
----------
|
406
406
|
level : Handler level.
|
407
|
-
format
|
407
|
+
format\\_ : Record format.
|
408
408
|
- `None`: Use attribute `default_format`.
|
409
409
|
- `str`: Use this value.
|
410
410
|
`Contain 'format_time'`: Date and time and millisecond, print output with color.
|
411
411
|
`Contain 'format_levelname'`: Level name and fixed width, print output with color.
|
412
412
|
`Contain 'format_path'`: Record code path, print output with color.
|
413
413
|
`Contain 'format_message'`: message content, file output delete ANSI code, print outputwith color.
|
414
|
-
filter
|
414
|
+
filter\\_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
|
415
415
|
- `None`: Use default filter method.
|
416
416
|
- `Callable`: Use this method.
|
417
417
|
|
@@ -483,14 +483,14 @@ class Log(Base):
|
|
483
483
|
- `Literal['m']`: Everyday midnight.
|
484
484
|
- `Literal['w0', 'w1', 'w2', 'w3', 'w4', 'w5', 'w6']`: Weekly midnight, 'w0' is monday, 'w6' is sunday, and so on.
|
485
485
|
level : Handler level.
|
486
|
-
format
|
486
|
+
format\\_ : Record format.
|
487
487
|
- `None`: Use attribute `default_format`.
|
488
488
|
- `str`: Use this value.
|
489
489
|
`Contain 'format_time'`: Date and time and millisecond, print output with color.
|
490
490
|
`Contain 'format_levelname'`: Level name and fixed width, print output with color.
|
491
491
|
`Contain 'format_path'`: Record code path, print output with color.
|
492
492
|
`Contain 'format_message'`: message content, file output delete ANSI code, print outputwith color.
|
493
|
-
filter
|
493
|
+
filter\\_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
|
494
494
|
- `None`: Use default filter method.
|
495
495
|
- `Callable`: Use this method.
|
496
496
|
|
@@ -602,7 +602,7 @@ class Log(Base):
|
|
602
602
|
- `None`: Create queue and use.
|
603
603
|
- `Queue`: Use this queue.
|
604
604
|
level : Handler level.
|
605
|
-
filter
|
605
|
+
filter\\_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
|
606
606
|
|
607
607
|
Returns
|
608
608
|
-------
|
@@ -640,7 +640,7 @@ class Log(Base):
|
|
640
640
|
----------
|
641
641
|
method : Handler method. The parameter is the `LogRecord` instance.
|
642
642
|
level : Handler level.
|
643
|
-
filter
|
643
|
+
filter\\_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
|
644
644
|
"""
|
645
645
|
|
646
646
|
# Add queue out.
|
reykit/ros.py
CHANGED
@@ -378,7 +378,7 @@ class File(Base):
|
|
378
378
|
|
379
379
|
Parameters
|
380
380
|
----------
|
381
|
-
type
|
381
|
+
type\\_ : File data type.
|
382
382
|
- `Literal['bytes']`: Return file bytes data.
|
383
383
|
- `Literal['str']`: Return file string data.
|
384
384
|
|
@@ -938,7 +938,7 @@ class Folder(Base):
|
|
938
938
|
----------
|
939
939
|
pattern : Match file name pattern.
|
940
940
|
recursion : Is recursion directory.
|
941
|
-
all
|
941
|
+
all\\_ : Whether return all match file path, otherwise return first match file path.
|
942
942
|
|
943
943
|
Returns
|
944
944
|
-------
|
@@ -1215,9 +1215,9 @@ class TempFile(Base):
|
|
1215
1215
|
|
1216
1216
|
Parameters
|
1217
1217
|
----------
|
1218
|
-
dir
|
1218
|
+
dir\\_ : Directory path.
|
1219
1219
|
suffix : File suffix.
|
1220
|
-
type
|
1220
|
+
type\\_ : File data type.
|
1221
1221
|
"""
|
1222
1222
|
|
1223
1223
|
# Get parameter.
|
@@ -1619,7 +1619,7 @@ class TempFolder(Base):
|
|
1619
1619
|
----------
|
1620
1620
|
pattern : Match file name pattern.
|
1621
1621
|
recursion : Is recursion directory.
|
1622
|
-
all
|
1622
|
+
all\\_ : Whether return all match file path, otherwise return first match file path.
|
1623
1623
|
|
1624
1624
|
Returns
|
1625
1625
|
-------
|
reykit/rsys.py
CHANGED
@@ -515,7 +515,7 @@ def search_process(
|
|
515
515
|
|
516
516
|
Parameters
|
517
517
|
----------
|
518
|
-
id
|
518
|
+
id\\_ : Search condition, a value or sequence of process ID.
|
519
519
|
name : Search condition, a value or sequence of process name.
|
520
520
|
port : Search condition, a value or sequence of process port.
|
521
521
|
|
@@ -601,7 +601,7 @@ def kill_process(
|
|
601
601
|
|
602
602
|
Parameters
|
603
603
|
----------
|
604
|
-
id
|
604
|
+
id\\_ : Search condition, a value or sequence of process ID.
|
605
605
|
name : Search condition, a value or sequence of process name.
|
606
606
|
port : Search condition, a value or sequence of process port.
|
607
607
|
|
@@ -639,7 +639,7 @@ def pause_process(
|
|
639
639
|
|
640
640
|
Parameters
|
641
641
|
----------
|
642
|
-
id
|
642
|
+
id\\_ : Search condition, a value or sequence of process ID.
|
643
643
|
name : Search condition, a value or sequence of process name.
|
644
644
|
port : Search condition, a value or sequence of process port.
|
645
645
|
|
@@ -677,7 +677,7 @@ def resume_process(
|
|
677
677
|
|
678
678
|
Parameters
|
679
679
|
----------
|
680
|
-
id
|
680
|
+
id\\_ : Search condition, a value or sequence of process ID.
|
681
681
|
name : Search condition, a value or sequence of process name.
|
682
682
|
port : Search condition, a value or sequence of process port.
|
683
683
|
|
reykit/rtext.py
CHANGED
@@ -498,7 +498,7 @@ def join_filter_text(data: Iterable, char: str = ',', filter_: tuple = (None, ''
|
|
498
498
|
- `Element is 'str'`: Join.
|
499
499
|
- `Element is 'Any'`: Convert to string and join.
|
500
500
|
char : Join character.
|
501
|
-
filter
|
501
|
+
filter\\_ : Filter elements.
|
502
502
|
|
503
503
|
Returns
|
504
504
|
-------
|
reykit/rtime.py
CHANGED
@@ -76,7 +76,7 @@ def now(
|
|
76
76
|
|
77
77
|
Parameters
|
78
78
|
----------
|
79
|
-
format
|
79
|
+
format\\_ : Format type.
|
80
80
|
- `Literal['datetime']`: Return datetime object of datetime package.
|
81
81
|
- `Literal['date']`: Return date object of datetime package.
|
82
82
|
- `Literal['time']`: Return time object of datetime package.
|
@@ -1,28 +1,28 @@
|
|
1
1
|
reykit/__init__.py,sha256=V86CHqPAAVkooVx3_QIOKpDIFVneQCTTSwfJ-uWgBno,788
|
2
2
|
reykit/rall.py,sha256=7Hip02YOkIDm3_xkoSDjvvYV2LhdBV2r4UKzWWnIfIo,628
|
3
|
-
reykit/rbase.py,sha256=
|
3
|
+
reykit/rbase.py,sha256=KPSMPMenmzsA50Q84r0DOXv4Ei-hbp06HXnCB46dsP4,22121
|
4
4
|
reykit/rdata.py,sha256=DqxoWkbN3WqGZ5FC9VRlhXAwpTGebv1M5VSeOeR2YnQ,10308
|
5
5
|
reykit/remail.py,sha256=s7TXbLgEWEqNoeM42c6FpPufB2LajHgQuahfZri3urQ,6706
|
6
6
|
reykit/rimage.py,sha256=p7caatLE71yy7GUTkTKyMOaJTeBfl6pZr_7BFjcDvY8,6159
|
7
|
-
reykit/rlog.py,sha256=
|
7
|
+
reykit/rlog.py,sha256=FpxIa24jyr806KVdIjhaqmiggOEwuwZ7ncros9YNNHA,25592
|
8
8
|
reykit/rmonkey.py,sha256=L9AGF6CzU-GvvtRsX7a5WYUb1W6Ji_FnkZY1HgW_wMA,7987
|
9
9
|
reykit/rnet.py,sha256=zvEWAM42jAdQT868FFDrm-OPn5f3SNfMZP-bU8Sbx0A,16934
|
10
10
|
reykit/rnum.py,sha256=PhG4V_BkVfCJUsbpMDN1umGZly1Hsus80TW8bpyBtyY,3653
|
11
|
-
reykit/ros.py,sha256=
|
11
|
+
reykit/ros.py,sha256=BYqFWqktxRZsSzxPU0u-QnMnNKH90SY3anwoIuajzCI,41150
|
12
12
|
reykit/rrand.py,sha256=9QPXCsREIu45g6WP-XN67X05kmW3cTmctn3InvqYxuY,8947
|
13
13
|
reykit/rre.py,sha256=4DVxy28dl5zn6_II8-cgr7E2nVPH5QJIJVB4o7Vsf1A,6078
|
14
14
|
reykit/rschedule.py,sha256=_nrfrXYxlFAKCDbM8ibTTb60zNDlHxyE310cv-A19Kw,5799
|
15
15
|
reykit/rstdout.py,sha256=Vgqm66rtjIaYWO-EFEm9PGzgXDzZXZGq-BS1Lg6zD40,8197
|
16
|
-
reykit/rsys.py,sha256=
|
16
|
+
reykit/rsys.py,sha256=28B-QO0DiKjiNv-kbGh3z-BN4YOrhWVYML3b3cGrPHo,24941
|
17
17
|
reykit/rtable.py,sha256=Ua6R1eHMtq4jAaWvfFTsgk-KQmtz5KwuYq4kguzRKaY,12198
|
18
18
|
reykit/rtask.py,sha256=98iCzNdJ_fFRDyOLjXEFNW3tzdAwXcCF7JkZ7Gf0fEE,22848
|
19
|
-
reykit/rtext.py,sha256=
|
20
|
-
reykit/rtime.py,sha256=
|
19
|
+
reykit/rtext.py,sha256=EQ_9aZYJL59CLG7i1MMb2Nbqrud_wbmcsmCVLQt_WJA,12861
|
20
|
+
reykit/rtime.py,sha256=S6tKTjxSoqG4Itd138aOu6T3iGBBkhSf9Bs8Dj0HCAE,17010
|
21
21
|
reykit/rwrap.py,sha256=3at29SGx5As9fmv1t9m_ibjHTvXpA6uPo-mroSsrX-I,15323
|
22
22
|
reykit/rzip.py,sha256=ABUDLwEHQIpcvZbJE_oV78H7dik6nC7kaRz660Ro9Os,3481
|
23
|
-
reykit/rdll/__init__.py,sha256=
|
23
|
+
reykit/rdll/__init__.py,sha256=WrJ_8jp_hbn2nl1osrR3buZMsmAGRVY6HfQdhDoJpSM,698
|
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.44.dist-info/METADATA,sha256=xCpIJbTK_kGo5QXcDPnhxHzKVJiR8SsJUaUs7ztrJ-0,1872
|
26
|
+
reykit-1.1.44.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
27
|
+
reykit-1.1.44.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
28
|
+
reykit-1.1.44.dist-info/RECORD,,
|
File without changes
|
File without changes
|