dcicutils 8.7.2.1b6__py3-none-any.whl → 8.7.2.1b7__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- dcicutils/data_readers.py +9 -1
- {dcicutils-8.7.2.1b6.dist-info → dcicutils-8.7.2.1b7.dist-info}/METADATA +1 -1
- {dcicutils-8.7.2.1b6.dist-info → dcicutils-8.7.2.1b7.dist-info}/RECORD +6 -6
- {dcicutils-8.7.2.1b6.dist-info → dcicutils-8.7.2.1b7.dist-info}/LICENSE.txt +0 -0
- {dcicutils-8.7.2.1b6.dist-info → dcicutils-8.7.2.1b7.dist-info}/WHEEL +0 -0
- {dcicutils-8.7.2.1b6.dist-info → dcicutils-8.7.2.1b7.dist-info}/entry_points.txt +0 -0
dcicutils/data_readers.py
CHANGED
@@ -170,7 +170,15 @@ class Excel:
|
|
170
170
|
if self._workbook is None:
|
171
171
|
self._workbook = openpyxl.load_workbook(self._file, data_only=True)
|
172
172
|
self.sheet_names = [sheet_name for sheet_name in self._workbook.sheetnames
|
173
|
-
if self.
|
173
|
+
if not self.is_hidden_sheet(self._workbook[sheet_name])]
|
174
|
+
|
175
|
+
def is_hidden_sheet(self, sheet: openpyxl.worksheet.worksheet.Worksheet) -> bool:
|
176
|
+
if not self._include_hidden_sheets:
|
177
|
+
if sheet.sheet_state == "hidden":
|
178
|
+
return True
|
179
|
+
if sheet.title.startswith("(") and sheet.title.endswith(")"):
|
180
|
+
return True
|
181
|
+
return False
|
174
182
|
|
175
183
|
def __del__(self) -> None:
|
176
184
|
if (workbook := self._workbook) is not None:
|
@@ -10,7 +10,7 @@ dcicutils/common.py,sha256=YE8Mt5-vaZWWz4uaChSVhqGFbFtW5QKtnIyOr4zG4vM,3955
|
|
10
10
|
dcicutils/contribution_scripts.py,sha256=0k5Gw1TumcD5SAcXVkDd6-yvuMEw-jUp5Kfb7FJH6XQ,2015
|
11
11
|
dcicutils/contribution_utils.py,sha256=vYLS1JUB3sKd24BUxZ29qUBqYeQBLK9cwo8x3k64uPg,25653
|
12
12
|
dcicutils/creds_utils.py,sha256=xrLekD49Ex0GOpL9n7LlJA4gvNcY7txTVFOSYD7LvEU,11113
|
13
|
-
dcicutils/data_readers.py,sha256=
|
13
|
+
dcicutils/data_readers.py,sha256=A48f7H7upkePpRKfq8bEv1EGM5Jjdes1pyjnreatjh0,6666
|
14
14
|
dcicutils/data_utils.py,sha256=k2OxOlsx7AJ6jF-YNlMyGus_JqSUBe4_n1s65Mv1gQQ,3098
|
15
15
|
dcicutils/datetime_utils.py,sha256=EODDGAngp1yh2ZlDIuI7tB74JBJucw2DljqfPknzK0Y,4666
|
16
16
|
dcicutils/deployment_utils.py,sha256=rcNUFMe_tsrG4CHEtgBe41cZx4Pk4JqISPsjrJRMoEs,68891
|
@@ -69,8 +69,8 @@ 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.7.2.
|
73
|
-
dcicutils-8.7.2.
|
74
|
-
dcicutils-8.7.2.
|
75
|
-
dcicutils-8.7.2.
|
76
|
-
dcicutils-8.7.2.
|
72
|
+
dcicutils-8.7.2.1b7.dist-info/LICENSE.txt,sha256=qnwSmfnEWMl5l78VPDEzAmEbLVrRqQvfUQiHT0ehrOo,1102
|
73
|
+
dcicutils-8.7.2.1b7.dist-info/METADATA,sha256=QPMBO-ACtYso8RGVZNhcN3t5o2mDUFvlBviU6Q6bIXk,3356
|
74
|
+
dcicutils-8.7.2.1b7.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
75
|
+
dcicutils-8.7.2.1b7.dist-info/entry_points.txt,sha256=51Q4F_2V10L0282W7HFjP4jdzW4K8lnWDARJQVFy_hw,270
|
76
|
+
dcicutils-8.7.2.1b7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|