dcicutils 8.8.4.1b6__py3-none-any.whl → 8.8.4.1b8__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- dcicutils/file_utils.py +20 -0
- dcicutils/tmpfile_utils.py +2 -2
- {dcicutils-8.8.4.1b6.dist-info → dcicutils-8.8.4.1b8.dist-info}/METADATA +1 -1
- {dcicutils-8.8.4.1b6.dist-info → dcicutils-8.8.4.1b8.dist-info}/RECORD +7 -7
- {dcicutils-8.8.4.1b6.dist-info → dcicutils-8.8.4.1b8.dist-info}/LICENSE.txt +0 -0
- {dcicutils-8.8.4.1b6.dist-info → dcicutils-8.8.4.1b8.dist-info}/WHEEL +0 -0
- {dcicutils-8.8.4.1b6.dist-info → dcicutils-8.8.4.1b8.dist-info}/entry_points.txt +0 -0
dcicutils/file_utils.py
CHANGED
@@ -76,3 +76,23 @@ def normalize_file_path(path: str, home_directory: bool = True) -> str:
|
|
76
76
|
if path.startswith(home_directory) and path != home_directory:
|
77
77
|
path = "~/" + pathlib.Path(path).relative_to(home_directory).as_posix()
|
78
78
|
return path
|
79
|
+
|
80
|
+
|
81
|
+
def are_files_equal(filea: str, fileb: str) -> bool:
|
82
|
+
"""
|
83
|
+
Returns True iff the contents of the two given files are exactly the same.
|
84
|
+
"""
|
85
|
+
try:
|
86
|
+
with open(filea, "rb") as fa:
|
87
|
+
with open(fileb, "rb") as fb:
|
88
|
+
chunk_size = 4096
|
89
|
+
while True:
|
90
|
+
chunka = fa.read(chunk_size)
|
91
|
+
chunkb = fb.read(chunk_size)
|
92
|
+
if chunka != chunkb:
|
93
|
+
return False
|
94
|
+
if not chunka:
|
95
|
+
break
|
96
|
+
return True
|
97
|
+
except Exception:
|
98
|
+
return False
|
dcicutils/tmpfile_utils.py
CHANGED
@@ -39,11 +39,11 @@ def remove_temporary_directory(tmp_directory_name: str) -> None:
|
|
39
39
|
shutil.rmtree(tmp_directory_name)
|
40
40
|
|
41
41
|
|
42
|
-
def create_temporary_file_name(suffix: Optional[str] = None) -> str:
|
42
|
+
def create_temporary_file_name(prefix: Optional[str] = None, suffix: Optional[str] = None) -> str:
|
43
43
|
"""
|
44
44
|
Generates and returns the full path to file within the system temporary directory.
|
45
45
|
"""
|
46
|
-
with tempfile.NamedTemporaryFile(suffix=suffix, delete=False) as tmp_file:
|
46
|
+
with tempfile.NamedTemporaryFile(prefix=prefix, suffix=suffix, delete=False) as tmp_file:
|
47
47
|
tmp_file_name = tmp_file.name
|
48
48
|
return tmp_file_name
|
49
49
|
|
@@ -28,7 +28,7 @@ dcicutils/es_utils.py,sha256=ZksLh5ei7kRUfiFltk8sd2ZSfh15twbstrMzBr8HNw4,7541
|
|
28
28
|
dcicutils/exceptions.py,sha256=4giQGtpak-omQv7BP6Ckeu91XK5fnDosC8gfdmN_ccA,9931
|
29
29
|
dcicutils/ff_mocks.py,sha256=6RKS4eUiu_Wl8yP_8V0CaV75w4ZdWxdCuL1CVlnMrek,36918
|
30
30
|
dcicutils/ff_utils.py,sha256=oIhuZPnGtfwj6bWyCc1u23JbMB_6InPp01ZqUOljd8M,73123
|
31
|
-
dcicutils/file_utils.py,sha256=
|
31
|
+
dcicutils/file_utils.py,sha256=RvA6ILj-JiM33co2o4nJPFnGSgG2oEXNvT3pSSsBdqo,4258
|
32
32
|
dcicutils/function_cache_decorator.py,sha256=XMyiEGODVr2WoAQ68vcoX_9_Xb9p8pZXdXl7keU8i2g,10026
|
33
33
|
dcicutils/glacier_utils.py,sha256=Q4CVXsZCbP-SoZIsZ5NMcawDfelOLzbQnIlQn-GdlTo,34149
|
34
34
|
dcicutils/http_utils.py,sha256=RB0x9hRMZM9Xd1x00c5J0iUzUdYzIQR0XKFiQ94HWO0,807
|
@@ -68,13 +68,13 @@ dcicutils/structured_data.py,sha256=BQuIMv6OPySsn6YxtXE2Er-zLE2QJuCYhEQ3V0u_UXY,
|
|
68
68
|
dcicutils/submitr/progress_constants.py,sha256=5bxyX77ql8qEJearfHEvsvXl7D0GuUODW0T65mbRmnE,2895
|
69
69
|
dcicutils/submitr/ref_lookup_strategy.py,sha256=Js2cVznTmgjciLWBPLCvMiwLIHXjDn3jww-gJPjYuFw,3467
|
70
70
|
dcicutils/task_utils.py,sha256=MF8ujmTD6-O2AC2gRGPHyGdUrVKgtr8epT5XU8WtNjk,8082
|
71
|
-
dcicutils/tmpfile_utils.py,sha256=
|
71
|
+
dcicutils/tmpfile_utils.py,sha256=6p9aw8xZn4aQqhX26Vt3aJj-3POcLYM5A9SVD-SUqsY,2340
|
72
72
|
dcicutils/trace_utils.py,sha256=g8kwV4ebEy5kXW6oOrEAUsurBcCROvwtZqz9fczsGRE,1769
|
73
73
|
dcicutils/validation_utils.py,sha256=cMZIU2cY98FYtzK52z5WUYck7urH6JcqOuz9jkXpqzg,14797
|
74
74
|
dcicutils/variant_utils.py,sha256=2H9azNx3xAj-MySg-uZ2SFqbWs4kZvf61JnK6b-h4Qw,4343
|
75
75
|
dcicutils/zip_utils.py,sha256=_Y9EmL3D2dUZhxucxHvrtmmlbZmK4FpSsHEb7rGSJLU,3265
|
76
|
-
dcicutils-8.8.4.
|
77
|
-
dcicutils-8.8.4.
|
78
|
-
dcicutils-8.8.4.
|
79
|
-
dcicutils-8.8.4.
|
80
|
-
dcicutils-8.8.4.
|
76
|
+
dcicutils-8.8.4.1b8.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
|
77
|
+
dcicutils-8.8.4.1b8.dist-info/METADATA,sha256=8Z51hXw6f3ZgvXeEDlWSrYwkmT0KDpaveiBSmY46J6E,3396
|
78
|
+
dcicutils-8.8.4.1b8.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
79
|
+
dcicutils-8.8.4.1b8.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
|
80
|
+
dcicutils-8.8.4.1b8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|