dcicutils 8.8.4.1b10__py3-none-any.whl → 8.8.4.1b11__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
@@ -103,7 +103,7 @@ def are_files_equal(filea: str, fileb: str) -> bool:
103
103
 
104
104
  def create_random_file(file: Optional[str] = None,
105
105
  prefix: Optional[str] = None, suffix: Optional[str] = None,
106
- nbytes: int = 1024, binary: bool = False) -> str:
106
+ nbytes: int = 1024, binary: bool = False, line_length: Optional[int] = None) -> str:
107
107
  if not isinstance(nbytes, int) or nbytes < 0:
108
108
  nbytes = 0
109
109
  if not isinstance(file, str) or not file:
@@ -116,11 +116,13 @@ def create_random_file(file: Optional[str] = None,
116
116
  if binary is True:
117
117
  f.write(os.urandom(nbytes))
118
118
  else:
119
- nchars = 81
120
- nlines = nbytes // nchars
121
- nremainder = nbytes % nchars
119
+ if (not isinstance(line_length, int)) or (line_length < 1):
120
+ line_length = 80
121
+ line_length += 1
122
+ nlines = nbytes // line_length
123
+ nremainder = nbytes % line_length
122
124
  for n in range(nlines):
123
- f.write("".join(random.choices(string.ascii_letters + string.digits, k=nchars - 1)))
125
+ f.write("".join(random.choices(string.ascii_letters + string.digits, k=line_length - 1)))
124
126
  f.write("\n")
125
127
  if nremainder > 1:
126
128
  f.write("".join(random.choices(string.ascii_letters + string.digits, k=nremainder - 1)))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dcicutils
3
- Version: 8.8.4.1b10
3
+ Version: 8.8.4.1b11
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=LTqazsGmGeaWdtlCzocAPi9AKQnSCmqJBWeqm58sQN4,5496
31
+ dcicutils/file_utils.py,sha256=uZFhYA1G_cNVX8cnqFhwjCSLbOO3Maa6zTYq6V-ORew,5656
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
@@ -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.1b10.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
77
- dcicutils-8.8.4.1b10.dist-info/METADATA,sha256=2Y1QUrGrECPLgGQlX6m4l6xqf_nQLu8mFPp9zTbIRg8,3397
78
- dcicutils-8.8.4.1b10.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
79
- dcicutils-8.8.4.1b10.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
80
- dcicutils-8.8.4.1b10.dist-info/RECORD,,
76
+ dcicutils-8.8.4.1b11.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
77
+ dcicutils-8.8.4.1b11.dist-info/METADATA,sha256=-DlCLMTUa84j_dv7uHt_rZPpYXe_U5Nkr2SgDDOA8rU,3397
78
+ dcicutils-8.8.4.1b11.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
79
+ dcicutils-8.8.4.1b11.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
80
+ dcicutils-8.8.4.1b11.dist-info/RECORD,,