reykit 1.1.42__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 CHANGED
@@ -479,7 +479,7 @@ def check_response_code(
479
479
  Parameters
480
480
  ----------
481
481
  code : Response code.
482
- range_ : Pass the code 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_ : Stack text 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_ : Stack parameters 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
@@ -27,7 +27,7 @@ def inject_dll(
27
27
 
28
28
  Parameters
29
29
  ----------
30
- id_ : Process ID.
30
+ id\\_ : Process ID.
31
31
  path : DLL file path.
32
32
  """
33
33
 
reykit/rlog.py CHANGED
@@ -155,7 +155,7 @@ class Log(Base):
155
155
 
156
156
  Parameters
157
157
  ----------
158
- format_ : Record 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_ : Record 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_ : Record 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_ : Record 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_ : Record 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_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
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_ : Record 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_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
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_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
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_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
643
+ filter\\_ : Filter method. The parameter is the `LogRecord` instance, return is `bool`.
644
644
  """
645
645
 
646
646
  # Add queue out.
reykit/rmonkey.py CHANGED
@@ -183,19 +183,19 @@ def monkey_patch_sqlalchemy_result_more_fetch():
183
183
  __doc__ = CursorResult.__doc__
184
184
 
185
185
  # Add method.
186
- to_table: MethodType = Table.to_table
187
- to_dict: MethodType = Table.to_dict
188
- to_list: MethodType = Table.to_list
189
- to_text: MethodType = Table.to_text
190
- to_json: MethodType = Table.to_json
191
- to_sql: MethodType = Table.to_sql
192
- to_df: MethodType = Table.to_df
193
- to_html: MethodType = Table.to_html
194
- to_csv: MethodType = Table.to_csv
195
- to_excel: MethodType = Table.to_excel
196
- show: MethodType = method_show
197
- exist: MethodType = method_exist
198
- empty: MethodType = method_empty
186
+ to_table = Table.to_table
187
+ to_dict = Table.to_dict
188
+ to_list = Table.to_list
189
+ to_text = Table.to_text
190
+ to_json = Table.to_json
191
+ to_sql = Table.to_sql
192
+ to_df = Table.to_df
193
+ to_html = Table.to_html
194
+ to_csv = Table.to_csv
195
+ to_excel = Table.to_excel
196
+ show = method_show
197
+ exist = method_exist
198
+ empty = method_empty
199
199
 
200
200
 
201
201
  return Result
reykit/ros.py CHANGED
@@ -51,7 +51,7 @@ from .rsys import run_cmd
51
51
 
52
52
  __all__ = (
53
53
  'get_md5',
54
- 'create_folder',
54
+ 'make_dir',
55
55
  'find_relpath',
56
56
  'get_file_str',
57
57
  'get_file_bytes',
@@ -98,9 +98,9 @@ def get_md5(data: str | bytes) -> str:
98
98
  return md5
99
99
 
100
100
 
101
- def create_folder(*paths: str, report: bool = False) -> None:
101
+ def make_dir(*paths: str, report: bool = False) -> None:
102
102
  """
103
- Create folders.
103
+ Make directorys.
104
104
 
105
105
  Parameters
106
106
  ----------
@@ -288,10 +288,7 @@ class File(Base):
288
288
  """
289
289
 
290
290
 
291
- def __init__(
292
- self,
293
- path: str
294
- ) -> None:
291
+ def __init__(self, path: str) -> None:
295
292
  """
296
293
  Build instance attributes.
297
294
 
@@ -305,21 +302,12 @@ class File(Base):
305
302
 
306
303
 
307
304
  @overload
308
- def open(
309
- self,
310
- mode: OpenBinaryMode = 'wb+'
311
- ) -> BinaryIO: ...
305
+ def open(self, mode: OpenBinaryMode = 'wb+') -> BinaryIO: ...
312
306
 
313
307
  @overload
314
- def open(
315
- self,
316
- mode: OpenTextMode
317
- ) -> TextIO: ...
308
+ def open(self, mode: OpenTextMode) -> TextIO: ...
318
309
 
319
- def open(
320
- self,
321
- mode: OpenTextMode | OpenBinaryMode = 'wb+'
322
- ) -> TextIO | BinaryIO:
310
+ def open(self, mode: OpenTextMode | OpenBinaryMode = 'wb+') -> TextIO | BinaryIO:
323
311
  """
324
312
  Open file.
325
313
 
@@ -379,27 +367,18 @@ class File(Base):
379
367
 
380
368
 
381
369
  @overload
382
- def read(
383
- self,
384
- type_: Literal['bytes'] = 'bytes'
385
- ) -> bytes: ...
370
+ def read(self, type_: Literal['bytes'] = 'bytes') -> bytes: ...
386
371
 
387
372
  @overload
388
- def read(
389
- self,
390
- type_: Literal['str']
391
- ) -> str: ...
373
+ def read(self, type_: Literal['str']) -> str: ...
392
374
 
393
- def read(
394
- self,
395
- type_: Literal['str', 'bytes'] = 'bytes'
396
- ) -> bytes | str:
375
+ def read(self, type_: Literal['str', 'bytes'] = 'bytes') -> bytes | str:
397
376
  """
398
377
  Read file data.
399
378
 
400
379
  Parameters
401
380
  ----------
402
- type_ : File data type.
381
+ type\\_ : File data type.
403
382
  - `Literal['bytes']`: Return file bytes data.
404
383
  - `Literal['str']`: Return file string data.
405
384
 
@@ -461,10 +440,7 @@ class File(Base):
461
440
  file.write(data)
462
441
 
463
442
 
464
- def copy(
465
- self,
466
- path: str
467
- ) -> None:
443
+ def copy(self, path: str) -> None:
468
444
  """
469
445
  Copy file to path.
470
446
 
@@ -480,10 +456,7 @@ class File(Base):
480
456
  )
481
457
 
482
458
 
483
- def move(
484
- self,
485
- path: str
486
- ) -> None:
459
+ def move(self, path: str) -> None:
487
460
  """
488
461
  Move file to path.
489
462
 
@@ -499,9 +472,29 @@ class File(Base):
499
472
  )
500
473
 
501
474
 
502
- def remove(
503
- self
504
- ) -> None:
475
+ def rename(self, name: str) -> str:
476
+ """
477
+ Rename file name.
478
+
479
+ Parameters
480
+ ----------
481
+ name : New file name.
482
+
483
+ Returns
484
+ -------
485
+ New file path.
486
+ """
487
+
488
+ # Get parameter.
489
+ move_path = os_join(self.dir, name)
490
+
491
+ # Move.
492
+ self.move(move_path)
493
+
494
+ return move_path
495
+
496
+
497
+ def remove(self) -> None:
505
498
  """
506
499
  Remove file.
507
500
  """
@@ -787,10 +780,7 @@ class File(Base):
787
780
  return file_bytes
788
781
 
789
782
 
790
- def __contains__(
791
- self,
792
- value: str | bytes
793
- ) -> bool:
783
+ def __contains__(self, value: str | bytes) -> bool:
794
784
  """
795
785
  Judge if file text contain value.
796
786
 
@@ -827,10 +817,7 @@ class Folder(Base):
827
817
  """
828
818
 
829
819
 
830
- def __init__(
831
- self,
832
- path: str | None = None
833
- ) -> None:
820
+ def __init__(self, path: str | None = None) -> None:
834
821
  """
835
822
  Build instance attributes.
836
823
 
@@ -951,7 +938,7 @@ class Folder(Base):
951
938
  ----------
952
939
  pattern : Match file name pattern.
953
940
  recursion : Is recursion directory.
954
- all_ : Whether return all match file path, otherwise return first match file path.
941
+ all\\_ : Whether return all match file path, otherwise return first match file path.
955
942
 
956
943
  Returns
957
944
  -------
@@ -980,10 +967,7 @@ class Folder(Base):
980
967
  return path
981
968
 
982
969
 
983
- def create(
984
- self,
985
- report: bool = False
986
- ) -> None:
970
+ def create(self, report: bool = False) -> None:
987
971
  """
988
972
  Create folders.
989
973
 
@@ -1007,10 +991,7 @@ class Folder(Base):
1007
991
  print(text)
1008
992
 
1009
993
 
1010
- def move(
1011
- self,
1012
- path: str
1013
- ) -> None:
994
+ def move(self, path: str) -> None:
1014
995
  """
1015
996
  Move folder to path.
1016
997
 
@@ -1026,6 +1007,28 @@ class Folder(Base):
1026
1007
  )
1027
1008
 
1028
1009
 
1010
+ def rename(self, name: str) -> str:
1011
+ """
1012
+ Rename folder name.
1013
+
1014
+ Parameters
1015
+ ----------
1016
+ name : New folder name.
1017
+
1018
+ Returns
1019
+ -------
1020
+ New folder path.
1021
+ """
1022
+
1023
+ # Get parameter.
1024
+ move_path = os_join(self.dir, name)
1025
+
1026
+ # Move.
1027
+ self.move(move_path)
1028
+
1029
+ return move_path
1030
+
1031
+
1029
1032
  @property
1030
1033
  def name(self) -> str:
1031
1034
  """
@@ -1202,8 +1205,7 @@ class TempFile(Base):
1202
1205
  """
1203
1206
 
1204
1207
 
1205
- def __init__(
1206
- self,
1208
+ def __init__(self,
1207
1209
  dir_: str | None = None,
1208
1210
  suffix: str | None = None,
1209
1211
  type_: Literal['str', 'bytes'] = 'bytes'
@@ -1213,9 +1215,9 @@ class TempFile(Base):
1213
1215
 
1214
1216
  Parameters
1215
1217
  ----------
1216
- dir_ : Directory path.
1218
+ dir\\_ : Directory path.
1217
1219
  suffix : File suffix.
1218
- type_ : File data type.
1220
+ type\\_ : File data type.
1219
1221
  """
1220
1222
 
1221
1223
  # Get parameter.
@@ -1252,10 +1254,7 @@ class TempFile(Base):
1252
1254
  return content
1253
1255
 
1254
1256
 
1255
- def write(
1256
- self,
1257
- data: str | bytes
1258
- ) -> None:
1257
+ def write(self, data: str | bytes) -> None:
1259
1258
  """
1260
1259
  Write file data.
1261
1260
 
@@ -1462,10 +1461,7 @@ class TempFile(Base):
1462
1461
  return file_size
1463
1462
 
1464
1463
 
1465
- def __contains__(
1466
- self,
1467
- value: str | bytes
1468
- ) -> bool:
1464
+ def __contains__(self, value: str | bytes) -> bool:
1469
1465
  """
1470
1466
  Judge if file text contain value.
1471
1467
 
@@ -1505,10 +1501,7 @@ class TempFolder(Base):
1505
1501
  """
1506
1502
 
1507
1503
 
1508
- def __init__(
1509
- self,
1510
- dir_: str | None = None
1511
- ) -> None:
1504
+ def __init__(self, dir_: str | None = None) -> None:
1512
1505
  """
1513
1506
  Build instance attributes.
1514
1507
 
@@ -1626,7 +1619,7 @@ class TempFolder(Base):
1626
1619
  ----------
1627
1620
  pattern : Match file name pattern.
1628
1621
  recursion : Is recursion directory.
1629
- all_ : Whether return all match file path, otherwise return first match file path.
1622
+ all\\_ : Whether return all match file path, otherwise return first match file path.
1630
1623
 
1631
1624
  Returns
1632
1625
  -------
@@ -1834,10 +1827,7 @@ class TempFolder(Base):
1834
1827
  __call__ = paths
1835
1828
 
1836
1829
 
1837
- def doc_to_docx(
1838
- path: str,
1839
- save_path: str | None = None
1840
- ) -> str:
1830
+ def doc_to_docx(path: str, save_path: str | None = None) -> str:
1841
1831
  """
1842
1832
  Convert `DOC` file to `DOCX` file.
1843
1833
 
@@ -1999,4 +1989,4 @@ def extract_file_content(path: str) -> str:
1999
1989
  case _:
2000
1990
  throw(AssertionError, suffix)
2001
1991
 
2002
- return content
1992
+ return content
reykit/rsys.py CHANGED
@@ -515,7 +515,7 @@ def search_process(
515
515
 
516
516
  Parameters
517
517
  ----------
518
- id_ : Search condition, a value or sequence of process 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_ : Search condition, a value or sequence of process 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_ : Search condition, a value or sequence of process 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_ : Search condition, a value or sequence of process 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_ : Filter elements.
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_ : Format type.
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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reykit
3
- Version: 1.1.42
3
+ Version: 1.1.44
4
4
  Summary: Kit method set.
5
5
  Project-URL: homepage, https://github.com/reyxbo/reykit/
6
6
  Author-email: Rey <reyxbo@163.com>
@@ -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=KDiGiMwj-7u5sfGOPMEb4AgrWfJbUZqpFCYHIKs3O9w,22115
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=krjeLPptPiYgbXd9h4umx4Nf34Bt6jQBT0MEvatVKL4,25572
8
- reykit/rmonkey.py,sha256=M-W19Q9OwuYWebLlJK4kpYhUOWufgtahDTAZVPbn83s,8143
7
+ reykit/rlog.py,sha256=FpxIa24jyr806KVdIjhaqmiggOEwuwZ7ncros9YNNHA,25592
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=xR79PnSlpHvHsoVKHWvEagreQB24N41XHq-psHQhlMI,40818
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=8Q9ZdggxRHXHMOwjMQa_kBN3gTkmpduHoXrKfa5UXqs,24933
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=sFp5n5ykD6B812Bywhe6gqzscNmx-U6w80Zf8p1y-Ow,12859
20
- reykit/rtime.py,sha256=PfhsXZLmSsKY2W1A0VrjhaVbMKVBHBD86AZ8nowNGig,17008
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=1VRawI2vCsLH7KK0PcBRWNc-bwseM-M05wkc_eamwJM,696
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.42.dist-info/METADATA,sha256=Ed5D0QkQMK1JOdnTOo-TPq72aJm2bRVDmhgc0ImnlQE,1872
26
- reykit-1.1.42.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
27
- reykit-1.1.42.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
28
- reykit-1.1.42.dist-info/RECORD,,
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,,