reykit 1.1.49__py3-none-any.whl → 1.1.50__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/ros.py
CHANGED
@@ -567,68 +567,68 @@ class File(Base):
|
|
567
567
|
return file_bytes
|
568
568
|
|
569
569
|
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
570
|
+
@property
|
571
|
+
def name_suffix(self) -> str:
|
572
|
+
"""
|
573
|
+
Return file name with suffix.
|
574
574
|
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
575
|
+
Returns
|
576
|
+
-------
|
577
|
+
File name with suffix.
|
578
|
+
"""
|
579
579
|
|
580
|
-
|
581
|
-
|
580
|
+
# Get.
|
581
|
+
file_name_suffix = os_basename(self.path)
|
582
582
|
|
583
|
-
|
583
|
+
return file_name_suffix
|
584
584
|
|
585
585
|
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
586
|
+
@property
|
587
|
+
def name(self) -> str:
|
588
|
+
"""
|
589
|
+
Return file name not with suffix.
|
590
590
|
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
591
|
+
Returns
|
592
|
+
-------
|
593
|
+
File name not with suffix.
|
594
|
+
"""
|
595
595
|
|
596
|
-
|
597
|
-
|
596
|
+
# Get.
|
597
|
+
file_name, _ = os_splitext(self.name_suffix)
|
598
598
|
|
599
|
-
|
599
|
+
return file_name
|
600
600
|
|
601
601
|
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
602
|
+
@property
|
603
|
+
def suffix(self) -> str:
|
604
|
+
"""
|
605
|
+
Return file suffix.
|
606
606
|
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
607
|
+
Returns
|
608
|
+
-------
|
609
|
+
File suffix.
|
610
|
+
"""
|
611
611
|
|
612
|
-
|
613
|
-
|
612
|
+
# Get.
|
613
|
+
_, file_suffix = os_splitext(self.path)
|
614
614
|
|
615
|
-
|
615
|
+
return file_suffix
|
616
616
|
|
617
617
|
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
618
|
+
@property
|
619
|
+
def dir(self) -> str:
|
620
|
+
"""
|
621
|
+
Return file directory.
|
622
622
|
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
623
|
+
Returns
|
624
|
+
-------
|
625
|
+
File directory.
|
626
|
+
"""
|
627
627
|
|
628
|
-
|
629
|
-
|
628
|
+
# Get.
|
629
|
+
file_dir = os_dirname(self.path)
|
630
630
|
|
631
|
-
|
631
|
+
return file_dir
|
632
632
|
|
633
633
|
|
634
634
|
@property
|
@@ -1249,7 +1249,7 @@ class Folder(Base):
|
|
1249
1249
|
__add__ = __radd__ = join
|
1250
1250
|
|
1251
1251
|
|
1252
|
-
class TempFile(
|
1252
|
+
class TempFile(Base):
|
1253
1253
|
"""
|
1254
1254
|
Temporary file type.
|
1255
1255
|
"""
|
@@ -8,7 +8,7 @@ reykit/rlog.py,sha256=FpxIa24jyr806KVdIjhaqmiggOEwuwZ7ncros9YNNHA,25592
|
|
8
8
|
reykit/rmonkey.py,sha256=9-NvBM4phThKTHpqTSPlPGfJWcoDSp4EVl8x3xHJacg,7951
|
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=XdsXS5iWyLXENWnsZXwobX3RHT1xFCF2K5itfbvY8O8,42913
|
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
|
@@ -22,7 +22,7 @@ reykit/rwrap.py,sha256=3at29SGx5As9fmv1t9m_ibjHTvXpA6uPo-mroSsrX-I,15323
|
|
22
22
|
reykit/rzip.py,sha256=ABUDLwEHQIpcvZbJE_oV78H7dik6nC7kaRz660Ro9Os,3481
|
23
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.50.dist-info/METADATA,sha256=_fMPpRdHrTR6QMGtwyoOUF-Df4mrufB6SfyyYSAiu8s,1872
|
26
|
+
reykit-1.1.50.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
27
|
+
reykit-1.1.50.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
28
|
+
reykit-1.1.50.dist-info/RECORD,,
|
File without changes
|
File without changes
|