dcicutils 8.8.4.1b21__py3-none-any.whl → 8.8.4.1b23__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 CHANGED
@@ -79,15 +79,15 @@ def search_for_file(file: str,
79
79
  return None if single is True else []
80
80
 
81
81
 
82
- def normalize_path(value: Union[str, pathlib.Path], absolute: bool = False, home: Optional[bool] = None) -> str:
82
+ def normalize_path(value: Union[str, pathlib.Path], absolute: bool = False, expand_home: Optional[bool] = None) -> str:
83
83
  """
84
84
  Normalizes the given path value and returns the result; does things like remove redundant
85
85
  consecutive directory separators and redundant parent paths. If the given absolute argument
86
- is True than converts the path to an absolute path. If the given home argument is True and
87
- if the path can reasonably be represented with a home directory indicator (i.e. "~"), then
88
- converts it to such. If the home argument is False and path starts with the home directory
89
- indicator then expands it to the actual (absolute) home path. If the given value is not
90
- actually even a string (or pathlib.Path) then returns an empty string.
86
+ is True than converts the path to an absolute path. If the given expand_home argument is False
87
+ and if the path can reasonably be represented with a home directory indicator (i.e. "~"), then
88
+ converts it to such. If the expand_home argument is True and path starts with the home directory
89
+ indicator (i.e. "~") then expands it to the actual (absolute) home path of the caller. If the
90
+ given path value is not actually even a string (or pathlib.Path) then returns an empty string.
91
91
  """
92
92
  if isinstance(value, pathlib.Path):
93
93
  value = str(value)
@@ -95,9 +95,9 @@ def normalize_path(value: Union[str, pathlib.Path], absolute: bool = False, home
95
95
  return ""
96
96
  if not (value := value.strip()) or not (value := os.path.normpath(value)):
97
97
  return ""
98
- if home is False:
98
+ if expand_home is True:
99
99
  value = os.path.expanduser(value)
100
- elif (home is True) and (os.name == "posix") and value.startswith(home := HOME_DIRECTORY + os.sep):
100
+ elif (expand_home is False) and (os.name == "posix") and value.startswith(home := HOME_DIRECTORY + os.sep):
101
101
  value = "~/" + value[len(home):]
102
102
  if absolute is True:
103
103
  value = os.path.abspath(value)
dcicutils/misc_utils.py CHANGED
@@ -2714,7 +2714,20 @@ def get_cpu_architecture_name() -> str:
2714
2714
  return ""
2715
2715
 
2716
2716
 
2717
- def short_uuid(length: Optional[int] = None):
2717
+ def create_uuid(nodash: bool = False, upper: bool = False) -> str:
2718
+ value = str(uuid.uuid4())
2719
+ if nodash is True:
2720
+ value = value.replace("-", "")
2721
+ if upper is True:
2722
+ value = value.upper()
2723
+ return value
2724
+
2725
+
2726
+ def create_short_uuid(length: Optional[int] = None, upper: bool = False):
2727
+ # Not really techincally a uuid of course.
2718
2728
  if (length is None) or (not isinstance(length, int)) or (length < 1):
2719
2729
  length = 16
2720
- return shortuuid.ShortUUID().random(length=length)
2730
+ value = shortuuid.ShortUUID().random(length=length)
2731
+ if upper is True:
2732
+ value = value.upper()
2733
+ return value
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dcicutils
3
- Version: 8.8.4.1b21
3
+ Version: 8.8.4.1b23
4
4
  Summary: Utility package for interacting with the 4DN Data Portal and other 4DN resources
5
5
  Home-page: https://github.com/4dn-dcic/utils
6
6
  License: MIT
@@ -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=haP4JIqE5T0pmAY_pjibEIN8a98_B3v-BXq8fTifzL0,9905
31
+ dcicutils/file_utils.py,sha256=WKEe985ioa9QNHVllRp8gxaKxB7hAnN-anKnz4CPfv4,9970
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=Je5ErNjR5e6lfSXGRncK_lcR_-zP38PIpmHjApy9Wi4,1289
@@ -44,7 +44,7 @@ dcicutils/license_policies/park-lab-gpl-pipeline.jsonc,sha256=vLZkwm3Js-kjV44nug
44
44
  dcicutils/license_policies/park-lab-pipeline.jsonc,sha256=9qlY0ASy3iUMQlr3gorVcXrSfRHnVGbLhkS427UaRy4,283
45
45
  dcicutils/license_utils.py,sha256=d1cq6iwv5Ju-VjdoINi6q7CPNNL7Oz6rcJdLMY38RX0,46978
46
46
  dcicutils/log_utils.py,sha256=7pWMc6vyrorUZQf-V-M3YC6zrPgNhuV_fzm9xqTPph0,10883
47
- dcicutils/misc_utils.py,sha256=ZW2ElovbsrPoMFco6GmZ24zJHyvx6Ky-csr3TDlOli4,106213
47
+ dcicutils/misc_utils.py,sha256=nXfIt93f3rnp5HNhXRUNL1Caz265pYFOXnII1RcgFAM,106588
48
48
  dcicutils/obfuscation_utils.py,sha256=fo2jOmDRC6xWpYX49u80bVNisqRRoPskFNX3ymFAmjw,5963
49
49
  dcicutils/opensearch_utils.py,sha256=V2exmFYW8Xl2_pGFixF4I2Cc549Opwe4PhFi5twC0M8,1017
50
50
  dcicutils/portal_object_utils.py,sha256=gDXRgPsRvqCFwbC8WatsuflAxNiigOnqr0Hi93k3AgE,15422
@@ -73,8 +73,8 @@ 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.1b21.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
77
- dcicutils-8.8.4.1b21.dist-info/METADATA,sha256=L64XCFbcLBijgZiY6g823l5rAh7tFDsYU1OmsD1KuKo,3440
78
- dcicutils-8.8.4.1b21.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
79
- dcicutils-8.8.4.1b21.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
80
- dcicutils-8.8.4.1b21.dist-info/RECORD,,
76
+ dcicutils-8.8.4.1b23.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
77
+ dcicutils-8.8.4.1b23.dist-info/METADATA,sha256=kaEkCQSNE1Lw-BaMzECoGi4Qs299k0UQEQdbcAAyGvc,3440
78
+ dcicutils-8.8.4.1b23.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
79
+ dcicutils-8.8.4.1b23.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
80
+ dcicutils-8.8.4.1b23.dist-info/RECORD,,