dcicutils 8.8.1.1b5__py3-none-any.whl → 8.8.1.1b6__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.
- dcicutils/structured_data.py +6 -0
- {dcicutils-8.8.1.1b5.dist-info → dcicutils-8.8.1.1b6.dist-info}/METADATA +1 -1
- {dcicutils-8.8.1.1b5.dist-info → dcicutils-8.8.1.1b6.dist-info}/RECORD +6 -6
- {dcicutils-8.8.1.1b5.dist-info → dcicutils-8.8.1.1b6.dist-info}/LICENSE.txt +0 -0
- {dcicutils-8.8.1.1b5.dist-info → dcicutils-8.8.1.1b6.dist-info}/WHEEL +0 -0
- {dcicutils-8.8.1.1b5.dist-info → dcicutils-8.8.1.1b6.dist-info}/entry_points.txt +0 -0
dcicutils/structured_data.py
CHANGED
@@ -91,6 +91,7 @@ class StructuredDataSet:
|
|
91
91
|
self._errors = {}
|
92
92
|
self._resolved_refs = set()
|
93
93
|
self._validated = False
|
94
|
+
self._nrows = 0
|
94
95
|
self._autoadd_properties = autoadd if isinstance(autoadd, dict) and autoadd else None
|
95
96
|
self._norefs = True if norefs is True else False
|
96
97
|
self._debug_sleep = None
|
@@ -194,6 +195,10 @@ class StructuredDataSet:
|
|
194
195
|
upload_file["path"] = file_path
|
195
196
|
return upload_files
|
196
197
|
|
198
|
+
@property
|
199
|
+
def nrows(self) -> int:
|
200
|
+
return self._nrows
|
201
|
+
|
197
202
|
def compare(self, progress: Optional[Callable] = None) -> dict:
|
198
203
|
def get_counts() -> int:
|
199
204
|
ntypes = 0
|
@@ -328,6 +333,7 @@ class StructuredDataSet:
|
|
328
333
|
noschema = False
|
329
334
|
structured_row_template = None
|
330
335
|
for row in reader:
|
336
|
+
self._nrows += 1
|
331
337
|
if self._debug_sleep:
|
332
338
|
time.sleep(float(self._debug_sleep))
|
333
339
|
if not structured_row_template: # Delay creation just so we don't reference schema if there are no rows.
|
@@ -62,15 +62,15 @@ dcicutils/secrets_utils.py,sha256=8dppXAsiHhJzI6NmOcvJV5ldvKkQZzh3Fl-cb8Wm7MI,19
|
|
62
62
|
dcicutils/sheet_utils.py,sha256=VlmzteONW5VF_Q4vo0yA5vesz1ViUah1MZ_yA1rwZ0M,33629
|
63
63
|
dcicutils/snapshot_utils.py,sha256=ymP7PXH6-yEiXAt75w0ldQFciGNqWBClNxC5gfX2FnY,22961
|
64
64
|
dcicutils/ssl_certificate_utils.py,sha256=F0ifz_wnRRN9dfrfsz7aCp4UDLgHEY8LaK7PjnNvrAQ,9707
|
65
|
-
dcicutils/structured_data.py,sha256=
|
65
|
+
dcicutils/structured_data.py,sha256=kf5aiMXk-DGRtCXWo3D9e2HHcmMffouAvCS-r1epvsM,59254
|
66
66
|
dcicutils/task_utils.py,sha256=MF8ujmTD6-O2AC2gRGPHyGdUrVKgtr8epT5XU8WtNjk,8082
|
67
67
|
dcicutils/tmpfile_utils.py,sha256=n95XF8dZVbQRSXBZTGToXXfSs3JUVRyN6c3ZZ0nhAWI,1403
|
68
68
|
dcicutils/trace_utils.py,sha256=g8kwV4ebEy5kXW6oOrEAUsurBcCROvwtZqz9fczsGRE,1769
|
69
69
|
dcicutils/validation_utils.py,sha256=cMZIU2cY98FYtzK52z5WUYck7urH6JcqOuz9jkXpqzg,14797
|
70
70
|
dcicutils/variant_utils.py,sha256=2H9azNx3xAj-MySg-uZ2SFqbWs4kZvf61JnK6b-h4Qw,4343
|
71
71
|
dcicutils/zip_utils.py,sha256=rnjNv_k6L9jT2SjDSgVXp4BEJYLtz9XN6Cl2Fy-tqnM,2027
|
72
|
-
dcicutils-8.8.1.
|
73
|
-
dcicutils-8.8.1.
|
74
|
-
dcicutils-8.8.1.
|
75
|
-
dcicutils-8.8.1.
|
76
|
-
dcicutils-8.8.1.
|
72
|
+
dcicutils-8.8.1.1b6.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
|
73
|
+
dcicutils-8.8.1.1b6.dist-info/METADATA,sha256=i5C6Embybe7tMr1JUT4jB2tRppS8Omxs6afsU_LQkCE,3356
|
74
|
+
dcicutils-8.8.1.1b6.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
75
|
+
dcicutils-8.8.1.1b6.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
|
76
|
+
dcicutils-8.8.1.1b6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|