spire-xls 15.7.1__py3-none-win_amd64.whl → 15.11.1__py3-none-win_amd64.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.
- spire/xls/AddtionalFormatWrapper.py +18 -15
- spire/xls/CellRange.py +10 -8
- spire/xls/CellStyleFlag.py +7 -0
- spire/xls/CellStyleObject.py +19 -12
- spire/xls/CommentsRange.py +6 -17
- spire/xls/ConverterSetting.py +15 -0
- spire/xls/DocumentProperty.py +1 -1
- spire/xls/ExcelCommentObject.py +6 -1
- spire/xls/ExcelFont.py +21 -15
- spire/xls/ExcelGradient.py +2 -0
- spire/xls/ExcelInterior.py +0 -13
- spire/xls/ExportTableOptions.py +6 -0
- spire/xls/Font.py +103 -103
- spire/xls/FontWrapper.py +20 -18
- spire/xls/GradientStops.py +1 -1
- spire/xls/HPageBreak.py +1 -0
- spire/xls/HyperLink.py +1 -0
- spire/xls/MsoTextFrame.py +102 -0
- spire/xls/RangeRichTextString.py +2 -2
- spire/xls/ReferRangeArea.py +0 -8
- spire/xls/RichText.py +1 -1
- spire/xls/RichTextShape.py +2 -1
- spire/xls/RichTextString.py +1 -0
- spire/xls/ShapeGlow.py +1 -1
- spire/xls/TextSaveOptions.py +7 -0
- spire/xls/VPageBreak.py +1 -0
- spire/xls/Workbook.py +85 -86
- spire/xls/Worksheet.py +63 -12
- spire/xls/XlsAddInFunction.py +4 -4
- spire/xls/XlsArcShape.py +1 -1
- spire/xls/XlsBorder.py +1 -0
- spire/xls/XlsButtonShape.py +1 -1
- spire/xls/XlsComment.py +1 -1
- spire/xls/XlsDataValidationTable.py +3 -1
- spire/xls/XlsFont.py +20 -14
- spire/xls/XlsName.py +14 -15
- spire/xls/XlsOvalShape.py +1 -1
- spire/xls/XlsPageSetup.py +8 -2
- spire/xls/XlsRadioButtonShape.py +21 -51
- spire/xls/XlsRange.py +26 -10
- spire/xls/XlsRectangleShape.py +1 -1
- spire/xls/XlsShape.py +7 -5
- spire/xls/XlsShapeFill.py +3 -0
- spire/xls/XlsStyle.py +3 -3
- spire/xls/XlsValidation.py +7 -4
- spire/xls/XlsWorkbook.py +50 -29
- spire/xls/XlsWorksheet.py +118 -121
- spire/xls/XlsWorksheetBase.py +39 -20
- spire/xls/__init__.py +2 -1
- spire/xls/autofilter/AutoFitterOptions.py +7 -0
- spire/xls/autofilter/CustomFilter.py +9 -1
- spire/xls/autofilter/FilterColumn.py +2 -2
- spire/xls/autofilter/XlsAutoFiltersCollection.py +1 -0
- spire/xls/charts/ChartArea.py +1 -0
- spire/xls/charts/XlsChart.py +1 -1
- spire/xls/charts/XlsChartFrameFormat.py +2 -1
- spire/xls/collection/ArcShapeCollection.py +1 -1
- spire/xls/collection/AutoFiltersCollection.py +1 -0
- spire/xls/collection/BordersCollectionArrayWrapper.py +2 -2
- spire/xls/collection/ButtonShapeCollection.py +4 -4
- spire/xls/collection/DataConnections.py +1 -1
- spire/xls/collection/ExternalLinkCollection.py +2 -1
- spire/xls/collection/GroupBoxCollection.py +4 -4
- spire/xls/collection/QueryTableCollection.py +1 -1
- spire/xls/collection/RangesCollection.py +4 -3
- spire/xls/collection/ShapeCollectionBase.py +6 -6
- spire/xls/collection/WorksheetsCollection.py +6 -6
- spire/xls/collection/XlsBordersCollection.py +2 -2
- spire/xls/collection/XlsChartsCollection.py +10 -8
- spire/xls/collection/XlsDataValidationCollection.py +4 -2
- spire/xls/collection/XlsFontsCollection.py +2 -1
- spire/xls/collection/XlsRangesCollection.py +17 -10
- spire/xls/collection/XlsStylesCollection.py +2 -2
- spire/xls/collection/XlsWorkbookObjectsCollection.py +5 -4
- spire/xls/collection/pivot_table/XlsPivotCachesCollection.py +1 -0
- spire/xls/collection/pivot_table/XlsPivotTablesCollection.py +1 -0
- spire/xls/conditional_formatting/ConditionalFormatWrapper.py +2 -2
- spire/xls/conditional_formatting/XlsConditionalFormat.py +10 -2
- spire/xls/conditional_formatting/XlsConditionalFormats.py +10 -5
- spire/xls/interfaces/IWorksheet.py +10 -10
- spire/xls/interfaces/ImportObjectOptions.py +7 -0
- spire/xls/lib/Spire.Xls.Base.dll +0 -0
- spire/xls/pivot_tables/PivotStyle.py +1 -0
- spire/xls/pivot_tables/PivotTableStyle.py +19 -12
- {spire_xls-15.7.1.dist-info → spire_xls-15.11.1.dist-info}/METADATA +1 -1
- {spire_xls-15.7.1.dist-info → spire_xls-15.11.1.dist-info}/RECORD +88 -87
- {spire_xls-15.7.1.dist-info → spire_xls-15.11.1.dist-info}/WHEEL +0 -0
- {spire_xls-15.7.1.dist-info → spire_xls-15.11.1.dist-info}/top_level.txt +0 -0
|
@@ -400,17 +400,21 @@ class XlsConditionalFormats ( SpireObject, ICloneParent, IConditionalFormats) :
|
|
|
400
400
|
|
|
401
401
|
@dispatch
|
|
402
402
|
|
|
403
|
-
def AddCells(self ,
|
|
403
|
+
def AddCells(self ,arrRanges:List['Rectangle']):
|
|
404
404
|
"""
|
|
405
405
|
Adds conditional formats to the specified cells.
|
|
406
406
|
|
|
407
407
|
Args:
|
|
408
408
|
arrCells (IList): The list of cells to add formats to.
|
|
409
409
|
"""
|
|
410
|
-
|
|
410
|
+
countarrRanges = len(arrRanges)
|
|
411
|
+
ArrayTypearrRanges = c_void_p * countarrRanges
|
|
412
|
+
arrayarrRanges = ArrayTypearrRanges()
|
|
413
|
+
for i in range(0, countarrRanges):
|
|
414
|
+
arrayarrRanges[i] = arrRanges[i].Ptr
|
|
411
415
|
|
|
412
|
-
GetDllLibXls().XlsConditionalFormats_AddCellsA.argtypes=[c_void_p ,
|
|
413
|
-
CallCFunction(GetDllLibXls().XlsConditionalFormats_AddCellsA, self.Ptr,
|
|
416
|
+
GetDllLibXls().XlsConditionalFormats_AddCellsA.argtypes=[c_void_p ,ArrayTypearrRanges,c_int]
|
|
417
|
+
CallCFunction(GetDllLibXls().XlsConditionalFormats_AddCellsA, self.Ptr, arrayarrRanges,countarrRanges)
|
|
414
418
|
|
|
415
419
|
|
|
416
420
|
def AddRange(self ,range:'IXLSRange'):
|
|
@@ -508,7 +512,7 @@ class XlsConditionalFormats ( SpireObject, ICloneParent, IConditionalFormats) :
|
|
|
508
512
|
GetDllLibXls().XlsConditionalFormats_Clone.argtypes=[c_void_p ,c_void_p]
|
|
509
513
|
GetDllLibXls().XlsConditionalFormats_Clone.restype=c_void_p
|
|
510
514
|
intPtr = CallCFunction(GetDllLibXls().XlsConditionalFormats_Clone, self.Ptr, intPtrparent)
|
|
511
|
-
ret = None if intPtr==None else
|
|
515
|
+
ret = None if intPtr==None else XlsConditionalFormats(intPtr)
|
|
512
516
|
return ret
|
|
513
517
|
|
|
514
518
|
|
|
@@ -617,6 +621,7 @@ class XlsConditionalFormats ( SpireObject, ICloneParent, IConditionalFormats) :
|
|
|
617
621
|
GetDllLibXls().XlsConditionalFormats_GetEnumerator.restype=c_void_p
|
|
618
622
|
intPtr = CallCFunction(GetDllLibXls().XlsConditionalFormats_GetEnumerator, self.Ptr)
|
|
619
623
|
ret = None if intPtr==None else IEnumerator(intPtr)
|
|
624
|
+
ret._gtype = XlsConditionalFormat
|
|
620
625
|
return ret
|
|
621
626
|
|
|
622
627
|
|
|
@@ -1218,21 +1218,21 @@ class IWorksheet ( ITabSheet, IExcelApplication) :
|
|
|
1218
1218
|
|
|
1219
1219
|
|
|
1220
1220
|
|
|
1221
|
-
@abc.abstractmethod
|
|
1222
|
-
def add_CellValueChanged(self ,value:'CellValueChangedEventHandler'):
|
|
1223
|
-
|
|
1221
|
+
# @abc.abstractmethod
|
|
1222
|
+
# def add_CellValueChanged(self ,value:'CellValueChangedEventHandler'):
|
|
1223
|
+
# """
|
|
1224
1224
|
|
|
1225
|
-
|
|
1226
|
-
|
|
1225
|
+
# """
|
|
1226
|
+
# pass
|
|
1227
1227
|
|
|
1228
1228
|
|
|
1229
1229
|
|
|
1230
|
-
@abc.abstractmethod
|
|
1231
|
-
def remove_CellValueChanged(self ,value:'CellValueChangedEventHandler'):
|
|
1232
|
-
|
|
1230
|
+
# @abc.abstractmethod
|
|
1231
|
+
# def remove_CellValueChanged(self ,value:'CellValueChangedEventHandler'):
|
|
1232
|
+
# """
|
|
1233
1233
|
|
|
1234
|
-
|
|
1235
|
-
|
|
1234
|
+
# """
|
|
1235
|
+
# pass
|
|
1236
1236
|
|
|
1237
1237
|
|
|
1238
1238
|
@property
|
|
@@ -12,6 +12,13 @@ class ImportObjectOptions (SpireObject) :
|
|
|
12
12
|
|
|
13
13
|
This class provides various settings to control how data is imported into Excel worksheets.
|
|
14
14
|
"""
|
|
15
|
+
@dispatch
|
|
16
|
+
def __init__(self):
|
|
17
|
+
GetDllLibXls().ImportObjectOptions_Create.restype = c_void_p
|
|
18
|
+
intPtr = CallCFunction(GetDllLibXls().ImportObjectOptions_Create)
|
|
19
|
+
|
|
20
|
+
super(ImportObjectOptions, self).__init__(intPtr)
|
|
21
|
+
|
|
15
22
|
@property
|
|
16
23
|
def ConvertNumericData(self)->bool:
|
|
17
24
|
"""
|
spire/xls/lib/Spire.Xls.Base.dll
CHANGED
|
Binary file
|
|
@@ -60,6 +60,7 @@ class PivotStyle (SpireObject) :
|
|
|
60
60
|
Returns:
|
|
61
61
|
XlsBordersCollection: The collection of border objects.
|
|
62
62
|
"""
|
|
63
|
+
from spire.xls.collection.XlsBordersCollection import XlsBordersCollection
|
|
63
64
|
GetDllLibXls().PivotStyle_get_Borders.argtypes=[c_void_p]
|
|
64
65
|
GetDllLibXls().PivotStyle_get_Borders.restype=c_void_p
|
|
65
66
|
intPtr = CallCFunction(GetDllLibXls().PivotStyle_get_Borders, self.Ptr)
|
|
@@ -12,6 +12,13 @@ class PivotTableStyle (SpireObject) :
|
|
|
12
12
|
This class provides functionality for managing the overall style of a PivotTable,
|
|
13
13
|
including whether it uses default styling and its name.
|
|
14
14
|
"""
|
|
15
|
+
@dispatch
|
|
16
|
+
def __init__(self,styleName:str):
|
|
17
|
+
GetDllLibXls().PivotTableStyle_CreateN.argtypes=[c_wchar_p]
|
|
18
|
+
GetDllLibXls().PivotTableStyle_CreateN.restype = c_void_p
|
|
19
|
+
intPtr = CallCFunction(GetDllLibXls().PivotTableStyle_CreateN,styleName)
|
|
20
|
+
|
|
21
|
+
super(PivotTableStyle, self).__init__(intPtr)
|
|
15
22
|
|
|
16
23
|
def SetConverter(self ,converter:'SpireObject'):
|
|
17
24
|
"""Sets the converter for the PivotTable style.
|
|
@@ -60,17 +67,17 @@ class PivotTableStyle (SpireObject) :
|
|
|
60
67
|
return ret
|
|
61
68
|
|
|
62
69
|
|
|
63
|
-
#
|
|
64
|
-
|
|
65
|
-
#
|
|
66
|
-
#
|
|
67
|
-
|
|
68
|
-
#
|
|
69
|
-
#
|
|
70
|
-
#
|
|
71
|
-
#
|
|
72
|
-
#
|
|
73
|
-
#
|
|
74
|
-
|
|
70
|
+
# @property
|
|
71
|
+
|
|
72
|
+
# def Styles(self)->'IDictionary':
|
|
73
|
+
# """
|
|
74
|
+
|
|
75
|
+
# """
|
|
76
|
+
# GetDllLibXls().PivotTableStyle_get_Styles.argtypes=[c_void_p]
|
|
77
|
+
# GetDllLibXls().PivotTableStyle_get_Styles.restype=c_void_p
|
|
78
|
+
# intPtr = CallCFunction(GetDllLibXls().PivotTableStyle_get_Styles, self.Ptr)
|
|
79
|
+
# ret = None if intPtr==None else IDictionary(intPtr)
|
|
80
|
+
# return ret
|
|
81
|
+
|
|
75
82
|
|
|
76
83
|
|
|
@@ -1,51 +1,52 @@
|
|
|
1
1
|
spire/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
spire/xls/AddtionalFormatWrapper.py,sha256=
|
|
2
|
+
spire/xls/AddtionalFormatWrapper.py,sha256=PC4sUmWHKdJBkkBTEypZDm2LehYvnD4UPHBulAJIleU,39991
|
|
3
3
|
spire/xls/Average.py,sha256=6f-QzE1SGrsxzz4xUbVAymmHTIIn20BL0drlsCkg074,1667
|
|
4
4
|
spire/xls/CellBaseStyle.py,sha256=JH3Fs1LgYML4I3bm12ytYFV9X2vnHI8Z1qIbkZbrOVU,1470
|
|
5
5
|
spire/xls/CellBorder.py,sha256=f3dj15Mhl6FfPbGL1qvUtr8LSXX4Ue_QPSRXASUrgqc,5834
|
|
6
|
-
spire/xls/CellRange.py,sha256=
|
|
6
|
+
spire/xls/CellRange.py,sha256=yv1jZ1pFjpeSnDuJ9hJIx-Qv4vh10w2kUsOA6YTLUyg,31980
|
|
7
7
|
spire/xls/CellStyle.py,sha256=WKOLVW_NYK0dHf1QVqyBMn0OPQ6Aowkt1X2ihtziVg4,3471
|
|
8
|
-
spire/xls/CellStyleFlag.py,sha256
|
|
9
|
-
spire/xls/CellStyleObject.py,sha256=
|
|
8
|
+
spire/xls/CellStyleFlag.py,sha256=YMc90YBrEACQWojFaFAM7TetrTyJYPOLxa5BJbkJFpo,24536
|
|
9
|
+
spire/xls/CellStyleObject.py,sha256=K-wWx7fYeZnobjXJVkUeBwDNs8Afz81h_RCN4RCx0lw,23011
|
|
10
10
|
spire/xls/CellValueChangedEventArgs.py,sha256=P0gypZUQr7Gc-_oxrpp_EoqnK8c9IvQ-BeEyKqR-VTs,2417
|
|
11
11
|
spire/xls/CellValueChangedEventHandler.py,sha256=147hvq__NcWtvKL6C1W-GCKq4uiiiViM11vYfWNJrJ8,1795
|
|
12
12
|
spire/xls/ColorScale.py,sha256=mOt6vi2S01PcWA4NV9pCH-1ybezMfVDoDdl6uO3b6lg,5908
|
|
13
|
-
spire/xls/CommentsRange.py,sha256=
|
|
13
|
+
spire/xls/CommentsRange.py,sha256=cLqMy19LOU6x36HSB1mPQoXO8AEhz2a47ioaEkMXgjE,26722
|
|
14
14
|
spire/xls/CommonWrapper.py,sha256=jMglAKbhTUEEtactDodB413r3zF9nhWulCikdFqXNaw,2289
|
|
15
|
-
spire/xls/ConverterSetting.py,sha256=
|
|
15
|
+
spire/xls/ConverterSetting.py,sha256=fPcwvbA7mdCQUwsY_8QkkSf7exXkmy_trpal2kX91MU,14234
|
|
16
16
|
spire/xls/DBConnection.py,sha256=dODefL8ijszjrPuApkGwRBIPFygKBbIItVdVVscmajc,8518
|
|
17
17
|
spire/xls/DVAspect.py,sha256=d90nTF6WhlClgoX6gDXf8lXS0lT4ulevLt15ABYTM9Y,688
|
|
18
18
|
spire/xls/DataBar.py,sha256=bQZY2XQXzPgAfrZNDicX_yOFhRHXCEsfXCVkwzasaq4,8269
|
|
19
|
-
spire/xls/DocumentProperty.py,sha256=
|
|
19
|
+
spire/xls/DocumentProperty.py,sha256=lGZ-HjaBCR4TiAQ9z1xf2RTC4JF8Ju95f0P4X0qar58,13678
|
|
20
20
|
spire/xls/Excel2016Charttype.py,sha256=sLRP91rakqaM0b06PlQZg_7hLL9w7sWvZti2MEveID4,1328
|
|
21
21
|
spire/xls/ExcelAddInFunction.py,sha256=W0gUXhxYelqjywP-Mc03cwi2pMcV60kL1Qvtyi1XoPQ,265
|
|
22
22
|
spire/xls/ExcelComment.py,sha256=1sgiS9exS5OvhNiYdZNkDis7810I316pTpGLPvqZO20,674
|
|
23
|
-
spire/xls/ExcelCommentObject.py,sha256=
|
|
24
|
-
spire/xls/ExcelFont.py,sha256=
|
|
25
|
-
spire/xls/ExcelGradient.py,sha256=
|
|
26
|
-
spire/xls/ExcelInterior.py,sha256=
|
|
23
|
+
spire/xls/ExcelCommentObject.py,sha256=8CoCEQHH3JOp3vQ3rEpg08psuvBQ063orDNe1kOJaaM,29419
|
|
24
|
+
spire/xls/ExcelFont.py,sha256=5jR_hAAdHnr9BkyyFzTFvyCIqEtHJ9NooKu_eOfQxmU,13317
|
|
25
|
+
spire/xls/ExcelGradient.py,sha256=5gYd8VxEYxFS5strs9n3H8Hly2ISmjMWTGWQf-yQ2JA,9557
|
|
26
|
+
spire/xls/ExcelInterior.py,sha256=n6NIwIJeiqvO6fMBiqWSxEi-idOiLBjweuE8PzQiibw,5898
|
|
27
27
|
spire/xls/ExcelPicture.py,sha256=KLHNreS8l5eNCaorjdFCWaDpk-SZ9l5T7XXuZE-xJnE,257
|
|
28
|
-
spire/xls/ExportTableOptions.py,sha256=
|
|
28
|
+
spire/xls/ExportTableOptions.py,sha256=5YlvosjozWqm8-68D4vxPxRpOjY3xwSYzpZA-thZHg4,4842
|
|
29
29
|
spire/xls/ExternalConnection.py,sha256=Cku6ry9F-fGtrel10X--vkW5tirtU04ZBgsUKyX3-lY,8490
|
|
30
30
|
spire/xls/ExternalLink.py,sha256=QVxqV-tMeuf8ySVa-lWobFxZGSXV4-HsLdeUMyoWEsw,2947
|
|
31
31
|
spire/xls/FileFormat.py,sha256=uUY9Gk6CLCyaGpa40_yWTLVJWYI_IkxPbVSnJYSa_SA,2095
|
|
32
|
-
spire/xls/Font.py,sha256=
|
|
32
|
+
spire/xls/Font.py,sha256=bwDdVwPhVutomWOCwRf16gbxicxBjHN9Z8VrgVy-KVE,13549
|
|
33
33
|
spire/xls/FontArrayWrapper.py,sha256=5OXKSGduUfwQD4RDIrrBWw1zLgtyjcyFKDEz9U3G8co,14664
|
|
34
|
-
spire/xls/FontWrapper.py,sha256=
|
|
34
|
+
spire/xls/FontWrapper.py,sha256=YMO-tbEkLrSpx33UcQjyr4Bs6550qCUcgW4BkuSMFdE,21882
|
|
35
35
|
spire/xls/Format3D.py,sha256=pn6mhN6NatMvOjhttTwTFG-VSMxWQYfC-EnU-YhccDc,13261
|
|
36
36
|
spire/xls/GeomertyAdjustValue.py,sha256=GT5Hx9e6sOR59MdB0BSLvj21-JbGsFjbAj0zzo64Els,2860
|
|
37
37
|
spire/xls/GetText.py,sha256=iuL7SVU5Lg5TSVzIPJoTq9eZWC-EgVCHYiHdWo-Z5aE,665
|
|
38
38
|
spire/xls/GoalSeek.py,sha256=s2XAuE77MgWequLTPcyz_0JJWDR5OnUXXO4dfPLTO1M,4590
|
|
39
39
|
spire/xls/GoalSeekResult.py,sha256=xfr3zmfCgqQ0eW4EQe0GM4wi9VbqZ0c8PDJt130fBu8,3649
|
|
40
40
|
spire/xls/GradientArrayWrapper.py,sha256=VZAbod3ehJNmR4ZCEMwAsq4EaFBMt_c5NnHXwkUI-U0,10681
|
|
41
|
-
spire/xls/GradientStops.py,sha256=
|
|
41
|
+
spire/xls/GradientStops.py,sha256=dTZwZzk5rIJvfv9LeAXr3bCJcG-BYwnVE_DagIbmUjQ,7731
|
|
42
42
|
spire/xls/GradientType.py,sha256=fA9uy-dddboGGJmTb7EQVxd7tQ82U5nMz-17uroCI04,938
|
|
43
43
|
spire/xls/GroupShape.py,sha256=fOyehsKvz22DCc8TESoOPK0ZTYaMEP3WLJQe3l9n070,470
|
|
44
|
-
spire/xls/HPageBreak.py,sha256=
|
|
44
|
+
spire/xls/HPageBreak.py,sha256=1ylGfL4mDvQmQAfQ145rVyd5KSsEdyaJBpca6Vqdr44,953
|
|
45
45
|
spire/xls/HTMLOptions.py,sha256=ydZ2oh7LZo_ZyPR6FmEudpffMJgpkr1cBcAQXC7bNaY,5037
|
|
46
|
-
spire/xls/HyperLink.py,sha256=
|
|
46
|
+
spire/xls/HyperLink.py,sha256=glqhtAxOB4kXcsixjBzZY6fJRAY7XgmxIqE6bR1SGjA,983
|
|
47
47
|
spire/xls/LOGFONT.py,sha256=uQommo145L21zk2Tz_c3IGtdAF4wqKqyfX9edlgAGXE,7115
|
|
48
48
|
spire/xls/MsoPathInfo.py,sha256=8soYIGy7Srm1W7bICX3_Jtd7Bwah7x_DQY_zOxHbMjU,1000
|
|
49
|
+
spire/xls/MsoTextFrame.py,sha256=Ye7fD6PQJxlrKp3L5N-yCuPapWEXAJpsJZqYQ5xpYAw,3651
|
|
49
50
|
spire/xls/OColor.py,sha256=556lFTKs8Kk8ZVFCWvWn_-f6iK-FIgGtjZy4NXZ3IsM,7059
|
|
50
51
|
spire/xls/OdsPageBackground.py,sha256=h9QRcbXbeAKWQAuiiu3GVLksPRncDt4s7kpygOU5uA0,4478
|
|
51
52
|
spire/xls/PageColRow.py,sha256=UbI1VXpK-7kyeBIdR53rxVuBSBwoT-kEbBm6QcEnW74,2158
|
|
@@ -56,45 +57,45 @@ spire/xls/PicTile.py,sha256=ptAvuOzx3ONJdxJ8B7OBbNItZKZGV02_eIHd4iPWP4c,4023
|
|
|
56
57
|
spire/xls/QueryTableXls.py,sha256=uGabwP-KYUIeIUDHNVBs0KskEDg1SUMldOjDYa4XsFg,2500
|
|
57
58
|
spire/xls/RTFCommentArray.py,sha256=caT9X5QbbbjbFvFYhY4uvDK0p5saXHj7Hg3PED4EEzo,6164
|
|
58
59
|
spire/xls/RTFStringArray.py,sha256=mp6O4HOR9S9flBuJStdnGIv8nb9Wa79o9I1AixvH40M,6132
|
|
59
|
-
spire/xls/RangeRichTextString.py,sha256=
|
|
60
|
-
spire/xls/ReferRangeArea.py,sha256=
|
|
61
|
-
spire/xls/RichText.py,sha256=
|
|
60
|
+
spire/xls/RangeRichTextString.py,sha256=DbqvPB4knhxwLzdBqXc5jSvUn8RSO1JqZ0AFTMvqlNo,2123
|
|
61
|
+
spire/xls/ReferRangeArea.py,sha256=swCokXSNh80cdPGDxOE4PX86usteQiMppLzTURuph90,4004
|
|
62
|
+
spire/xls/RichText.py,sha256=Fdkzsa1fdR79fW-1aQZ1ls7-jkRSK6gC3pJiqxWzEdo,1605
|
|
62
63
|
spire/xls/RichTextObject.py,sha256=CzFB7kJ1_KsczIVVD5z63MiahxLF9TV95ZdEMLd3tdg,6705
|
|
63
|
-
spire/xls/RichTextShape.py,sha256=
|
|
64
|
-
spire/xls/RichTextString.py,sha256=
|
|
64
|
+
spire/xls/RichTextShape.py,sha256=FokK8nBXrxfRy1NpKpATVEWhJUS2JvXGiu1IGYxOf6M,9118
|
|
65
|
+
spire/xls/RichTextString.py,sha256=QP_0hwtmMDDgFoe8FGDD8lgw7dC9QSzxEW_qLigPJ-M,6487
|
|
65
66
|
spire/xls/RtfTextWriter.py,sha256=IYs8Kq-i0gTXsSNrpO7ecef6mlauEvKMPiOl8EKppVE,21398
|
|
66
67
|
spire/xls/SaveShapeTypeOption.py,sha256=P3HDHDBd_XTsxYRADWx7r_xkAa1xnZ_hXAQfbm6MF5o,11816
|
|
67
68
|
spire/xls/ShapeGeomPath.py,sha256=7pLC4hBJ9XCfLRAskCDYzGLJWQTL79zW5t8AF9w-Vyw,693
|
|
68
|
-
spire/xls/ShapeGlow.py,sha256=
|
|
69
|
+
spire/xls/ShapeGlow.py,sha256=EFpti2rZq-2bqtqxhY4J2Ziy-n9bYphouj60No-Nufk,4273
|
|
69
70
|
spire/xls/ShapeReflection.py,sha256=EZtMAhb23OsBW3zIojjltg_pN6dCM3OEBqXS8vUdMpw,7058
|
|
70
71
|
spire/xls/ShapeSegmentPath.py,sha256=dvD2ZS92cymFgJerTGaA0SGjWBdyrF2E6ivH-_zJ61k,717
|
|
71
72
|
spire/xls/StringUtil.py,sha256=4-w9PblGH7SA-Lg6oLOGpUe0AlQdNVErB2wenoZHHMA,250
|
|
72
73
|
spire/xls/StyleArrayWrapper.py,sha256=tcILyequYam1I7jatrD1bkw4tlnkJEphz7oVpSWuCs0,29842
|
|
73
74
|
spire/xls/TextBoxShapeBase.py,sha256=oK_yfNU4KXElb7PgiDheLHX6DmyqVshTJXNdGbX3umo,4351
|
|
74
|
-
spire/xls/TextSaveOptions.py,sha256=
|
|
75
|
+
spire/xls/TextSaveOptions.py,sha256=s1uGdlKgRj3kxiqm1O6AR7MVsLwjaAxaL6kPIRIDef0,4389
|
|
75
76
|
spire/xls/TopBottom.py,sha256=9xjw7g9zvDQLC6MHJnS1alYOkSyMh91w3oYI9plbqP0,2062
|
|
76
77
|
spire/xls/UtilityMethods.py,sha256=zyGEQrJW8_an0kaCGMQ5eL_A9RLf8gUtqIsPafli4m0,1491
|
|
77
|
-
spire/xls/VPageBreak.py,sha256=
|
|
78
|
+
spire/xls/VPageBreak.py,sha256=S1CLI0GrDIEsrNrSMzRKqDCYIJ1t4xeuj3JyirINpgk,1044
|
|
78
79
|
spire/xls/Validation.py,sha256=dJ9xmSiXL4tJXWTbYw-rAqikegEq-YjEyOzeEWKTGFo,1542
|
|
79
80
|
spire/xls/WebQueryConnection.py,sha256=FqsTBizopyYOzv7Tm9D8IycYGFHOKc0NnUejCwu5Rfk,10024
|
|
80
|
-
spire/xls/Workbook.py,sha256=
|
|
81
|
-
spire/xls/Worksheet.py,sha256=
|
|
81
|
+
spire/xls/Workbook.py,sha256=UcUhigG5TyjMSs_9HMbdj4clmxhwz9Yc40m35snOEUs,106048
|
|
82
|
+
spire/xls/Worksheet.py,sha256=0-_xDchODcwoAHrL2m5Aj8RlLtcjbj9sr8LdpiWdxsI,48005
|
|
82
83
|
spire/xls/WriteProtection.py,sha256=_8k9Nz3CfqjwNvdR4McmDUvWtqSPur3Ymk56GdCx5Dw,2154
|
|
83
|
-
spire/xls/XlsAddInFunction.py,sha256=
|
|
84
|
-
spire/xls/XlsArcShape.py,sha256=
|
|
84
|
+
spire/xls/XlsAddInFunction.py,sha256=ufAIaYjbeEdyCpg1zoTeabmrQYsYHqxIKBVb_Eb9DMU,3388
|
|
85
|
+
spire/xls/XlsArcShape.py,sha256=AP1hRRNswS3pPb-sTk7bE--eKSsWQt5Oq7xLzZ5j5fs,18274
|
|
85
86
|
spire/xls/XlsBitmapShape.py,sha256=k-TQUMCyOMOvLh_jENZcGQf071_r9XaGOdJzkHj0bN8,15098
|
|
86
|
-
spire/xls/XlsBorder.py,sha256=
|
|
87
|
+
spire/xls/XlsBorder.py,sha256=lddq9XJapuNHULy_LAd3d6j1kP0NTUak-tE21o0xgzc,8039
|
|
87
88
|
spire/xls/XlsBorderArrayWrapper.py,sha256=QI1ae3V3HaGl5pXkqK0BI8mV5yLHahNHwkJ2ACVjoPo,5965
|
|
88
|
-
spire/xls/XlsButtonShape.py,sha256=
|
|
89
|
+
spire/xls/XlsButtonShape.py,sha256=g8mF4erBxLDAy-lAf2a6Vz3AG8TqoWZ4OJAtnUGB-kg,7117
|
|
89
90
|
spire/xls/XlsCheckBoxShape.py,sha256=TKFi3XFyQVejos9lSEK2F4Yhh8dBpaEvXV_eBRGCpCg,8662
|
|
90
91
|
spire/xls/XlsComboBoxShape.py,sha256=6IRkDpSGtV1sCYGhfoJ7Y7C0E3XEK9rGahl82j8MZQU,6728
|
|
91
|
-
spire/xls/XlsComment.py,sha256=
|
|
92
|
-
spire/xls/XlsDataValidationTable.py,sha256=
|
|
92
|
+
spire/xls/XlsComment.py,sha256=0W5-CtQLrs4UohGCmzogPt8g6m9cScTHx6h0McNWxzM,11808
|
|
93
|
+
spire/xls/XlsDataValidationTable.py,sha256=mCXr1hH_a4FW-_WM-zbeQp3x37Dj4b3NzLwoM_pQtew,5553
|
|
93
94
|
spire/xls/XlsDocumentProperty.py,sha256=zz9EivUYaxN2Zy5tR5MudecC-vFEqV8cf9nE9X4RLC4,19662
|
|
94
95
|
spire/xls/XlsEventArgs.py,sha256=dNExGvkMOR4_p9KBoMLKKxQFKEbocH1jH6NBoI_sM10,3539
|
|
95
96
|
spire/xls/XlsEventHandler.py,sha256=-dEn5EWUjmtuFInNXKgGZvG4now-5PiL8QEEgo9hzAY,2194
|
|
96
97
|
spire/xls/XlsFill.py,sha256=_3qRjyW3zVa5Jt53zolAmENoP2OFVxZcdEDNdQWg_x4,6846
|
|
97
|
-
spire/xls/XlsFont.py,sha256=
|
|
98
|
+
spire/xls/XlsFont.py,sha256=IXgPQUSfMbcsHAKk_RkTSKjqEhcAv_boH9An0B_r0N0,18647
|
|
98
99
|
spire/xls/XlsFontStyle.py,sha256=-xDk9uYvY83B090PLbHaB2Py--aYDxqKE_laEkXG5Vw,250
|
|
99
100
|
spire/xls/XlsGradient.py,sha256=4wHlfJ-x6m9DiKdplhnmSaCK5TZLJzOiCqnzIFU3MDI,10056
|
|
100
101
|
spire/xls/XlsGradientStop.py,sha256=8a5hibuz_sG_zqxzN1OOYeaAdTja09mJ0oQgVhfOVPA,4856
|
|
@@ -104,42 +105,42 @@ spire/xls/XlsHyperLink.py,sha256=6I0JOOWMhzP5yTzziPdp-Q1wEEv6Mfj7_BYjALlbQd4,108
|
|
|
104
105
|
spire/xls/XlsLabelShape.py,sha256=KgMU4Px0xrs0yINt9F6khVtsqdK0U5d8OBQ4ePLIj0M,3476
|
|
105
106
|
spire/xls/XlsLineShape.py,sha256=ZlzFp9ZBBWIEOhLqsfPNcmJFlAY8HDsRdwtxhT7xF1s,20932
|
|
106
107
|
spire/xls/XlsListBoxShape.py,sha256=v76qIbDA-vHjZgFh4l4ks0QQabR4xo6qwB5mvpB2TsY,7170
|
|
107
|
-
spire/xls/XlsName.py,sha256=
|
|
108
|
+
spire/xls/XlsName.py,sha256=iSrtI8PiS8NF5KoTkfxsf60RPA87wMborzXauoVKJag,86936
|
|
108
109
|
spire/xls/XlsObject.py,sha256=IjZvTq0ak60r6S-_80FXW64QelBSH27CvggSiOH8w2I,919
|
|
109
|
-
spire/xls/XlsOvalShape.py,sha256=
|
|
110
|
-
spire/xls/XlsPageSetup.py,sha256=
|
|
110
|
+
spire/xls/XlsOvalShape.py,sha256=UNpSSeCVDh-nUDKtcBp_1d9Zl_vrOaLa5Y4cl-rjEtM,9255
|
|
111
|
+
spire/xls/XlsPageSetup.py,sha256=LvCgx0U3sW_yhQTZOI5KtUUp3P3UXNrs5_kazHGq30Q,10616
|
|
111
112
|
spire/xls/XlsPageSetupBase.py,sha256=0Wr_NDr3hK56NoQEqQps9aY3a_SKPSMbEEtVsjORUVc,53026
|
|
112
113
|
spire/xls/XlsPrstGeomShape.py,sha256=Ch8FN5QU7TWO9rkbSK9E0RxtTVoaa_ekf-ZO1P3CCTs,4514
|
|
113
|
-
spire/xls/XlsRadioButtonShape.py,sha256=
|
|
114
|
-
spire/xls/XlsRange.py,sha256=
|
|
115
|
-
spire/xls/XlsRectangleShape.py,sha256=
|
|
114
|
+
spire/xls/XlsRadioButtonShape.py,sha256=Bb-zYWRHGjW-eyMI4BCMCFNK_UDvyWbhJt0i17LdGsw,9106
|
|
115
|
+
spire/xls/XlsRange.py,sha256=lQ9xiLYqh5_cKT37jYbbhQFCc0bemYLAo2RTq3K5LCI,102133
|
|
116
|
+
spire/xls/XlsRectangleShape.py,sha256=NygjjaSmOKpoJdcPn5Se6x2Z2UHk0q4ca7UHCUgzNUU,8992
|
|
116
117
|
spire/xls/XlsScrollBarShape.py,sha256=Q3lmZLJsOGLs-DwCArJtwc4a6P_Pl44rCNwuz-a-TDs,8311
|
|
117
|
-
spire/xls/XlsShape.py,sha256=
|
|
118
|
-
spire/xls/XlsShapeFill.py,sha256=
|
|
118
|
+
spire/xls/XlsShape.py,sha256=n3ahryRfx1PDbTG2GcLeBYZdTvvRbOvPlhiT9xYOVzQ,45602
|
|
119
|
+
spire/xls/XlsShapeFill.py,sha256=rGNBKRZJlgy66rIGZqrCcJG_odX3pG1W25oAVUoeVTM,40036
|
|
119
120
|
spire/xls/XlsShapeLineFormat.py,sha256=U--ulL6cHkT_NLze7ZHeBjLJBP0TuYkNv1QzuyxtVIk,21819
|
|
120
121
|
spire/xls/XlsSpinnerShape.py,sha256=I9OYg-w5HzTQPSPO_UERGuNkb9pYAoGNt4weF_YGssg,6196
|
|
121
|
-
spire/xls/XlsStyle.py,sha256=
|
|
122
|
+
spire/xls/XlsStyle.py,sha256=pP5mn2oghhLgqBbcHpM-Uw8HhkTPR3hh3J7cma3MvmU,5058
|
|
122
123
|
spire/xls/XlsTextBoxShape.py,sha256=wbuB632hZg8A6M_k4ZA80mDkNyBB41KINkf6e-TzlkE,27529
|
|
123
124
|
spire/xls/XlsVPageBreak.py,sha256=B8JZBzOTuSsQHsuOeAXvVjwsdIrE4tjbQBwgBtkTzgo,3107
|
|
124
|
-
spire/xls/XlsValidation.py,sha256=
|
|
125
|
+
spire/xls/XlsValidation.py,sha256=eOC1QGR4jFDxKlS3IuvRQFqTNoqG04F6j0IwU9o4HHQ,31411
|
|
125
126
|
spire/xls/XlsValidationWrapper.py,sha256=tZW6Uoed2sXNP2EaeD8cn8LUG1H1y4W0SLeZaN_Jjm4,23702
|
|
126
|
-
spire/xls/XlsWorkbook.py,sha256=
|
|
127
|
-
spire/xls/XlsWorksheet.py,sha256=
|
|
128
|
-
spire/xls/XlsWorksheetBase.py,sha256=
|
|
129
|
-
spire/xls/__init__.py,sha256=
|
|
130
|
-
spire/xls/autofilter/AutoFitterOptions.py,sha256=
|
|
127
|
+
spire/xls/XlsWorkbook.py,sha256=uBaRy_xJZMLpw6mbcMFZD1Tq3Eccjl0OFI06dXNrgYc,90359
|
|
128
|
+
spire/xls/XlsWorksheet.py,sha256=VGsYApDm2g9CPiiVaVgoUvxzaa6mzoK-Of9sVsv-XiM,166230
|
|
129
|
+
spire/xls/XlsWorksheetBase.py,sha256=cV3nZOrpaLgS537pWZGdFhQxtwi9Iquot1FruPYpb7k,50061
|
|
130
|
+
spire/xls/__init__.py,sha256=pvcgUNp5HTpBonYXkbasZ2Ab4T1a1zjGNhA1fjR7AuQ,44698
|
|
131
|
+
spire/xls/autofilter/AutoFitterOptions.py,sha256=0pEgB6h1UWqaGLCHhYkGx9TYpebZL4D90dED8JVr3rM,3534
|
|
131
132
|
spire/xls/autofilter/ColorFilter.py,sha256=bcRtMVnVcZ103DBgQNggVNgIb6WjutT2OFqzQmCo7Wc,2033
|
|
132
|
-
spire/xls/autofilter/CustomFilter.py,sha256=
|
|
133
|
+
spire/xls/autofilter/CustomFilter.py,sha256=KUbooGI93x7CfRKknX8KSsOYAWeJPshuT-YsFstBqAc,7011
|
|
133
134
|
spire/xls/autofilter/CustomFilterCollection.py,sha256=EjGlALGwgy5AZds_C93cIhzrncYTTvaD7fdD-hQl5ok,5049
|
|
134
135
|
spire/xls/autofilter/DateTimeGroupItem.py,sha256=46Unk7d4USVlJHEM8RT3VJ1DtTkV13c_dSiyQ-fJZ7U,6254
|
|
135
136
|
spire/xls/autofilter/DynamicFilter.py,sha256=jOArWsQhnMppizcnjSiDCfWVlPb15642SvFowRvtmHY,3049
|
|
136
|
-
spire/xls/autofilter/FilterColumn.py,sha256=
|
|
137
|
+
spire/xls/autofilter/FilterColumn.py,sha256=6S7ie-QjRkZT3GMd1cVncjOdnOR6N4895UT7bfNSB-Q,10556
|
|
137
138
|
spire/xls/autofilter/MultipleFilterCollection.py,sha256=FeCy6Iespn-O9Tc98kSfA-SiG2JRGGkmhjyyvZfpDC0,7626
|
|
138
139
|
spire/xls/autofilter/Top10Filter.py,sha256=TynxGWwK1YWLqcI3q6aBIcoP9gYtCaGmMRoxsaF6QVo,3575
|
|
139
|
-
spire/xls/autofilter/XlsAutoFiltersCollection.py,sha256=
|
|
140
|
+
spire/xls/autofilter/XlsAutoFiltersCollection.py,sha256=UaAWhUkPSjj2xRNkRuI_hM3hFPea8hBaj7fwWpYDuvU,5166
|
|
140
141
|
spire/xls/autofilter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
142
|
spire/xls/charts/Chart.py,sha256=9r8cJLMivEVOfveX9TpErGRqirSLICKQecd-POj7maQ,12359
|
|
142
|
-
spire/xls/charts/ChartArea.py,sha256=
|
|
143
|
+
spire/xls/charts/ChartArea.py,sha256=4Gv5XtAZP1cJSQ1Fj0Q4FKNBRhGhDJVvT45wlnwChTs,1928
|
|
143
144
|
spire/xls/charts/ChartBackgroundMode.py,sha256=IBgE3O1d4YBnvDEpvQ6_fjKb80T2HrXogffwx7uG4sU,336
|
|
144
145
|
spire/xls/charts/ChartBorder.py,sha256=nJfyjiAxFrlQq6-5t2Ozg9r6JM9df2ZwjXO72hCfJAg,256
|
|
145
146
|
spire/xls/charts/ChartCategoryAxis.py,sha256=4hKQFC_dQE3rzGM6rxUuieUfNd4mdFW2UGI5garEzbg,3135
|
|
@@ -165,7 +166,7 @@ spire/xls/charts/ChartTitle.py,sha256=Sw55AYyiG67KTJuAEZIZTaAR8oJ_fQbW9qc3jTVvkR
|
|
|
165
166
|
spire/xls/charts/ChartValueAxis.py,sha256=VEZd6icsM_Zb2ycsSHH9hv_pHFo7Vmd3fjeWQKjGxgM,2894
|
|
166
167
|
spire/xls/charts/ChartWallOrFloor.py,sha256=qCw9jFyq90zdytk7W4pNye6-GDmOCctRBg28xdVquvY,266
|
|
167
168
|
spire/xls/charts/HistogramAxisFormat.py,sha256=rBgo0xy7bkxAd8_0Pv1WFeRZcD55A_1umeLrWQGE_Y0,911
|
|
168
|
-
spire/xls/charts/XlsChart.py,sha256=
|
|
169
|
+
spire/xls/charts/XlsChart.py,sha256=OxyjresjK2xhYKskhM7WvdxT59LGN4ucx0AKGoWiPHc,63227
|
|
169
170
|
spire/xls/charts/XlsChartAxis.py,sha256=U54Mxpkvaigrqpe9WrnsVrq0UR10ao6J5mjLWhyDIzw,22187
|
|
170
171
|
spire/xls/charts/XlsChartBorder.py,sha256=TuCpC2Vz8ZmMejRtbjZVQB7TA66-ElHfHtOYZJzCcPM,7125
|
|
171
172
|
spire/xls/charts/XlsChartCategoryAxis.py,sha256=fvuO6ofiz9etYH6L4xWwfeXyK72dCSLDZIt0DzxwDxs,27024
|
|
@@ -176,7 +177,7 @@ spire/xls/charts/XlsChartDataTable.py,sha256=gKqf9RjLbicJq2XjvxGUhogXE7Oj3p86BF0
|
|
|
176
177
|
spire/xls/charts/XlsChartDropBar.py,sha256=MHavyFpV-aOs7vRiEGwguFqEYuDAJs6EK-1kTst1bKk,10405
|
|
177
178
|
spire/xls/charts/XlsChartFill.py,sha256=Ew4elk8n-5-lxV7suiKo69C5J7ayjN_Grg6n4po4ETM,25278
|
|
178
179
|
spire/xls/charts/XlsChartFormat.py,sha256=jPWmF96yJgalMSFL8XGONNGvSlj9xIiavBhAftjeeCg,49674
|
|
179
|
-
spire/xls/charts/XlsChartFrameFormat.py,sha256=
|
|
180
|
+
spire/xls/charts/XlsChartFrameFormat.py,sha256=MbGKrQcy_nD18Ho9LvKtDlEaNwm9czNEwaofLRILhNQ,24078
|
|
180
181
|
spire/xls/charts/XlsChartGridLine.py,sha256=cds8tJ2TzKdimVhWpthDELhorsJ9db6qrp9ZFXC_smI,5263
|
|
181
182
|
spire/xls/charts/XlsChartInterior.py,sha256=Y6xDjKfrnUacopJlruCouMlfq7Rq0KMNiI1TA3pYIqg,8602
|
|
182
183
|
spire/xls/charts/XlsChartLegend.py,sha256=mzwTQxjchEhePSqpqusE-TYIUJTSO_Z53hQ_0XuJJ8U,12294
|
|
@@ -193,12 +194,12 @@ spire/xls/charts/XlsChartValueAxis.py,sha256=OpkPg3qp9y0HJ-X06qH8-RFn8TIHNLFllrm
|
|
|
193
194
|
spire/xls/charts/XlsChartWallOrFloor.py,sha256=btg2YDPSUAMswecaMP4EuC9t3woyQDNfBP7ixVacCRI,12945
|
|
194
195
|
spire/xls/charts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
196
|
spire/xls/collection/AddInFunctionsCollection.py,sha256=hhaVYqNeoufc_3MhnkraVipPbOtJ7X7Pco8rM9cInhM,1025
|
|
196
|
-
spire/xls/collection/ArcShapeCollection.py,sha256=
|
|
197
|
-
spire/xls/collection/AutoFiltersCollection.py,sha256=
|
|
197
|
+
spire/xls/collection/ArcShapeCollection.py,sha256=89NGYl8FQ-U-mZuwMCRO4NsC-CBV9JWb1XC_zeVhaxc,3059
|
|
198
|
+
spire/xls/collection/AutoFiltersCollection.py,sha256=4i17cX-cd-_73yTkF180tHvuFLOpbTTyCAxVb_XA6XA,20763
|
|
198
199
|
spire/xls/collection/BordersCollection.py,sha256=bmzukteOUH14yn1lfGCp4SuGygpTQb0uuT_mQuCYv3M,6966
|
|
199
|
-
spire/xls/collection/BordersCollectionArrayWrapper.py,sha256=
|
|
200
|
+
spire/xls/collection/BordersCollectionArrayWrapper.py,sha256=rzBGW9VSuY0pM0r2Or2aUg_sZeUZl09D11cy6QrT4m4,4928
|
|
200
201
|
spire/xls/collection/BuiltInDocumentProperties.py,sha256=d-82kCIeEVrGORgkHCHTWcfHM_gKztyGths4W8VtMc4,354
|
|
201
|
-
spire/xls/collection/ButtonShapeCollection.py,sha256=
|
|
202
|
+
spire/xls/collection/ButtonShapeCollection.py,sha256=EYMEp_8xWTJ6Z9Uw95ymgPw4Ap8dW1GIE_nv2L-6FOA,2187
|
|
202
203
|
spire/xls/collection/ChartDataPointsCollection.py,sha256=0rrYSmUQrLj-YXgfsofEZy29m7o32Cpi84LMfwkBPKk,2424
|
|
203
204
|
spire/xls/collection/ChartFormatCollection.py,sha256=RMma1p5-_w_WjYCaaLzi6hfsYuL7imTCk5rcC-ePqqI,1690
|
|
204
205
|
spire/xls/collection/ChartSeries.py,sha256=VZTo9R7bhAIM3SEPapjERm-m3tmO_DrJtg1JXWvtEZs,6606
|
|
@@ -209,11 +210,11 @@ spire/xls/collection/CollectionChangeEventArgs.py,sha256=mgw3_pqdtePuGeG6ZV6Sttj
|
|
|
209
210
|
spire/xls/collection/CollectionExtended.py,sha256=7iE-g-S7pfZVR9rTuoG67T2d2ArP2Z38BKBLg1dGUOY,2838
|
|
210
211
|
spire/xls/collection/ComboBoxCollection.py,sha256=qtCVTrqPaKJMipPZq0AyPLjvx86idqpOnMDPZV6XIT4,3273
|
|
211
212
|
spire/xls/collection/CommentsCollection.py,sha256=ZduAbLbEy02LHtNZdnRgRdYasbtxP4_A9OqtVnT9qpA,4258
|
|
212
|
-
spire/xls/collection/DataConnections.py,sha256=
|
|
213
|
-
spire/xls/collection/ExternalLinkCollection.py,sha256=
|
|
213
|
+
spire/xls/collection/DataConnections.py,sha256=UfTXXKR2s-4fpuI2OtI2qtsRBZqs_jbCQtpedFPTACo,712
|
|
214
|
+
spire/xls/collection/ExternalLinkCollection.py,sha256=I5FsyuDE2w5nAnhRoQnOotMMj0W5jgzhRste4tWDuPI,759
|
|
214
215
|
spire/xls/collection/FontsCollection.py,sha256=hOyZe1bC6bhLsOuoK5XkLLOpkL7Ra7JfpGhUmJNcbrE,2486
|
|
215
216
|
spire/xls/collection/GeomertyAdjustValuesCollection.py,sha256=oiGtXtraGvehxgqQbn3YP0oqqQ3I1suCj26AVwvlpGs,1292
|
|
216
|
-
spire/xls/collection/GroupBoxCollection.py,sha256=
|
|
217
|
+
spire/xls/collection/GroupBoxCollection.py,sha256=Tikf4fLFvH4LpLBMoCNZ2yZ5wfAh3VyS_J1jqCgbQXc,2141
|
|
217
218
|
spire/xls/collection/GroupShapeCollection.py,sha256=5vzJ5xNM1S2ycC94QW-iYl1OWQtt0KAZDYipvc1AQIQ,1290
|
|
218
219
|
spire/xls/collection/HPageBreaksCollection.py,sha256=eDrJMi0z-jR9UBuhZNMeAwGdSuU5qu3GDETvAqrmTTo,3438
|
|
219
220
|
spire/xls/collection/HyperLinksCollection.py,sha256=gQ6mnKPcZupjVvfpTXC2eKYSFJZvge3pN7xdlLX_xYg,2234
|
|
@@ -224,12 +225,12 @@ spire/xls/collection/ListObjectCollection.py,sha256=VrMuNPR3mxZZZZUA-M3t4i0BM7Hf
|
|
|
224
225
|
spire/xls/collection/OvalShapeCollection.py,sha256=qjVppE6Xl-h-38gavPU3dBumEKvBk8NkZI8m_jFyXWM,3142
|
|
225
226
|
spire/xls/collection/PicturesCollection.py,sha256=AI3nqgiIKUMyQ7ScPswv4rC-E8M14-cKPk9_uN4PqHQ,21111
|
|
226
227
|
spire/xls/collection/PrstGeomShapeCollection.py,sha256=M7KCCDzRGp08R3ZRJeGSLMfbEH1Qe2oq8OlegKubnLU,4472
|
|
227
|
-
spire/xls/collection/QueryTableCollection.py,sha256=
|
|
228
|
+
spire/xls/collection/QueryTableCollection.py,sha256=8tdLfd3Dm2DR8xMxcME-4B5PPVdrGB7Zgu82rp6K1FI,719
|
|
228
229
|
spire/xls/collection/RadioButtonCollection.py,sha256=hj57J_bVraiMu_4iDCFvTRtkt3LMk7NcMf3jLCmb1-4,4405
|
|
229
|
-
spire/xls/collection/RangesCollection.py,sha256=
|
|
230
|
+
spire/xls/collection/RangesCollection.py,sha256=eyB7ebl0BVlNq3tSSObzbUHmCVo8wJ7kft_rHIXlKus,19638
|
|
230
231
|
spire/xls/collection/RectangleCollection.py,sha256=niU3Ugcm3Q67NC662WOl3-PqQSk9-FHklW2LVdLyFOI,2307
|
|
231
232
|
spire/xls/collection/ScrollBarCollection.py,sha256=R7VEB6zYmFrnJPLmf8hEX4WVtT3yv4FXHwtWEcpdWd8,2243
|
|
232
|
-
spire/xls/collection/ShapeCollectionBase.py,sha256=
|
|
233
|
+
spire/xls/collection/ShapeCollectionBase.py,sha256=cDrDH7Rd6qEhYk_iO_Sp2O-9wKxu5-6NQc-G4kFwl64,2884
|
|
233
234
|
spire/xls/collection/SpinnerShapeCollection.py,sha256=vWGal4Zzm5F2SrcK1AExJdntSLgz_E6UB8Hl-7ATsCw,2216
|
|
234
235
|
spire/xls/collection/StylesCollection.py,sha256=15ZHssEfTHlT0ZsXfINRqPHBJA-gNTOLCwDuHMgGyrA,4079
|
|
235
236
|
spire/xls/collection/TextBoxCollection.py,sha256=d_Ur5pEAqHwqcN3AERiFz74f7GR-10cgi5NTNu03ezs,2187
|
|
@@ -237,25 +238,25 @@ spire/xls/collection/VPageBreaksCollection.py,sha256=S7ZNS6ErYWAPC4W98ij4X-koKAB
|
|
|
237
238
|
spire/xls/collection/WorkbookObjectsCollection.py,sha256=IeoKc38lEVRUvFRT7eAGb9YR_VYsw3aHgLtMMzZfQoc,708
|
|
238
239
|
spire/xls/collection/WorksheetChartsCollection.py,sha256=Xnf1IfgJMx1yTv26Bfa0kw42e2C_ZH4nQ0yzfQGwFBE,2815
|
|
239
240
|
spire/xls/collection/WorksheetConditionalFormats.py,sha256=dk8VgJes37dWat_xGC5oTd0obFrXIhZiEfI7gNVIalM,288
|
|
240
|
-
spire/xls/collection/WorksheetsCollection.py,sha256=
|
|
241
|
+
spire/xls/collection/WorksheetsCollection.py,sha256=FVpPV-zQHBp9xMK2t4PCC-vtikxJAn5hrv2TnlrxVWY,12543
|
|
241
242
|
spire/xls/collection/XlsAddInFunctionsCollection.py,sha256=xpvo6KyKDkNvKNgwPqgvt_2cclRblZ1a08Y1EMbWEJA,3314
|
|
242
|
-
spire/xls/collection/XlsBordersCollection.py,sha256=
|
|
243
|
+
spire/xls/collection/XlsBordersCollection.py,sha256=V63O-dH9xQgNqHZRqPuZG8bgAJCGrUx4meSprYmj-tY,3501
|
|
243
244
|
spire/xls/collection/XlsBuiltInDocumentProperties.py,sha256=mfSYFAES3VTb7XLIkMsE0VpWcB9BTXtOYyzrrtvBrKY,24076
|
|
244
245
|
spire/xls/collection/XlsChartDataPointsCollection.py,sha256=9TSS6EBxqrfI-S9bNlLmkF1BiydQW3k7GG8Gjjh7AhY,4288
|
|
245
246
|
spire/xls/collection/XlsChartFormatCollection.py,sha256=gjdPV90PQLMO4yO_QbseRPNdavi0x5z-F9NYz3IUb5k,5463
|
|
246
247
|
spire/xls/collection/XlsChartSeries.py,sha256=cRAW4Zc-ice2As-jJHGC_-HYL5ZT8V1SHdjvdT_nmH0,3704
|
|
247
|
-
spire/xls/collection/XlsChartsCollection.py,sha256=
|
|
248
|
+
spire/xls/collection/XlsChartsCollection.py,sha256=HUe_IfMDcV2q0E8r9lw8x53MaVLNYLTqwMr4TBtZU8k,2896
|
|
248
249
|
spire/xls/collection/XlsCommentsCollection.py,sha256=fdQTKcydWddkuxn3jy5sHVa01gYMl7gxkxkgfTkb6EE,4088
|
|
249
|
-
spire/xls/collection/XlsDataValidationCollection.py,sha256=
|
|
250
|
-
spire/xls/collection/XlsFontsCollection.py,sha256=
|
|
250
|
+
spire/xls/collection/XlsDataValidationCollection.py,sha256=YZb0UpGTf_DDfDWyWnhg9ZOJGdTx9nPvG4pfrFXRD4g,6166
|
|
251
|
+
spire/xls/collection/XlsFontsCollection.py,sha256=2QrHLfj8FeCBvH8pYznABRFur-ntdlsUQoWezEvifHY,1589
|
|
251
252
|
spire/xls/collection/XlsHPageBreaksCollection.py,sha256=-3N4ySFWstnbqONcSGA6ljFbKz-b0cNLGu2CmgF9gVo,2891
|
|
252
253
|
spire/xls/collection/XlsHeaderFooterShapeCollection.py,sha256=WOeccj61qAk7D3TSsx_bYH6d6nJuEco19xkh4M7XrO4,2050
|
|
253
254
|
spire/xls/collection/XlsHyperLinksCollection.py,sha256=jKHav6xH19AYzge9lJYa6Ecu2ly7JGFEghWD-kiqZK8,3433
|
|
254
255
|
spire/xls/collection/XlsPicturesCollection.py,sha256=T9I1kJt81OIwweh1eps65A9n2tqEzAKdk7KQMx4vTtc,14348
|
|
255
|
-
spire/xls/collection/XlsRangesCollection.py,sha256=
|
|
256
|
-
spire/xls/collection/XlsStylesCollection.py,sha256=
|
|
256
|
+
spire/xls/collection/XlsRangesCollection.py,sha256=vYM5PCWWpmqrCrmjRx3J3e7SWMfihPWbL5QXvP0YN5Y,59224
|
|
257
|
+
spire/xls/collection/XlsStylesCollection.py,sha256=Ii5FzBeb7MqkQGWp8QckkOXmgdlPlBh-xVhXT9PZRtY,2246
|
|
257
258
|
spire/xls/collection/XlsVPageBreaksCollection.py,sha256=BnWodbvBrlMD6bT0wWSAATlXamHucdhx2AdDxkSawgY,2835
|
|
258
|
-
spire/xls/collection/XlsWorkbookObjectsCollection.py,sha256=
|
|
259
|
+
spire/xls/collection/XlsWorkbookObjectsCollection.py,sha256=3nXuN_SVk0EzLphIrfmAyoKYhGY1X0UsJQzBWdxNBzc,3329
|
|
259
260
|
spire/xls/collection/XlsWorksheetChartsCollection.py,sha256=yVDjrNudg54P9uOoK0sa7c_syA0z6W0WlF-W1r6i2lE,750
|
|
260
261
|
spire/xls/collection/XlsWorksheetConditionalFormats.py,sha256=LSxJrPhEymTAvtLy2QgydCoiP1GU8_VZhHj3gi-hATI,7800
|
|
261
262
|
spire/xls/collection/XlsWorksheetsCollection.py,sha256=D08NEw1Rw5Gn5wVXPugUCJs2fxeHH6IaokCLnF2tF0k,14549
|
|
@@ -266,8 +267,8 @@ spire/xls/collection/pivot_table/PivotConditionalFormatCollection.py,sha256=13aA
|
|
|
266
267
|
spire/xls/collection/pivot_table/PivotDataFields.py,sha256=Rjs2eWn4eE0uMHtWoi8ZRcDQX_8rMpIqCrUTTh5PR1E,3105
|
|
267
268
|
spire/xls/collection/pivot_table/PivotTableFields.py,sha256=jvsQ2shkfrdMyi5bb3hEuUrklwLPu9pCpe_sY2ANaYo,3962
|
|
268
269
|
spire/xls/collection/pivot_table/PivotTablesCollection.py,sha256=IXv4xfVRoAIDP0LndqaaFcraUp7pQ1W6oEQ3NGSNdJQ,276
|
|
269
|
-
spire/xls/collection/pivot_table/XlsPivotCachesCollection.py,sha256=
|
|
270
|
-
spire/xls/collection/pivot_table/XlsPivotTablesCollection.py,sha256=
|
|
270
|
+
spire/xls/collection/pivot_table/XlsPivotCachesCollection.py,sha256=ulExInBzGUd6MaANsYIeD7PNQ5K0PkEg-7hHfp39n_Q,3808
|
|
271
|
+
spire/xls/collection/pivot_table/XlsPivotTablesCollection.py,sha256=Sa2Gyxp_v241q9TT2aZMKivlRd1d0T8fwnfjTyhwZWM,4372
|
|
271
272
|
spire/xls/collection/pivot_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
272
273
|
spire/xls/common/Boolean.py,sha256=I_zL5L96rDMCGMMdJ-MqvtXtlSfaG2sA034O0AhuQbQ,4941
|
|
273
274
|
spire/xls/common/Byte.py,sha256=G1MQnk9cmo5S3RRhsG7DUP_pDqPf-rn_IGEj0cQgALU,6490
|
|
@@ -314,13 +315,13 @@ spire/xls/conditional_formatting/ConditionValue.py,sha256=SD9fSCEtjxBiPPO2TbwYDB
|
|
|
314
315
|
spire/xls/conditional_formatting/ConditionValuePosition.py,sha256=zC5Bf3gnh6K4ey0ask_EzHBkuq50LFlbqXcEaDIsbtc,387
|
|
315
316
|
spire/xls/conditional_formatting/ConditionalFormat.py,sha256=sgeY7yRyBeRDZE2gjMp8lx2RV8VdrM5lxM69mtTRhLo,350
|
|
316
317
|
spire/xls/conditional_formatting/ConditionalFormatScope.py,sha256=3LGAqvt5H8KvJR0xkxKxEG2YO0WUWCLAVwlXQ6oERvw,375
|
|
317
|
-
spire/xls/conditional_formatting/ConditionalFormatWrapper.py,sha256=
|
|
318
|
+
spire/xls/conditional_formatting/ConditionalFormatWrapper.py,sha256=InpuxmiGjtdKu2LJjo3hx6SkdZlKqr5dNCDZYYOSqDM,52211
|
|
318
319
|
spire/xls/conditional_formatting/ConditionalFormats.py,sha256=uznxrQRNXsYTwJoJ8ffjGLC1tJoUoQvmtL8dfHCKib0,2544
|
|
319
320
|
spire/xls/conditional_formatting/DataBarBorder.py,sha256=lNxxRi1dcOnBO-Rp-7QUS_Im2mkxbopP62Dy8wJ_xu8,1745
|
|
320
321
|
spire/xls/conditional_formatting/NegativeBarFormat.py,sha256=zGmHKNsSqZLPJAogdLr8V_7Bz9IFeutQA3iuBwx7Oq4,3524
|
|
321
322
|
spire/xls/conditional_formatting/XlsConditionValue.py,sha256=JT-eC1IAywCRon2Gj5mz8Dh31xf1k1nYdTIL561b-BQ,5203
|
|
322
|
-
spire/xls/conditional_formatting/XlsConditionalFormat.py,sha256=
|
|
323
|
-
spire/xls/conditional_formatting/XlsConditionalFormats.py,sha256=
|
|
323
|
+
spire/xls/conditional_formatting/XlsConditionalFormat.py,sha256=CIVvD7hCGmfsGF72BHDryhlxGGG3btv2oZqBtHAEUj4,47117
|
|
324
|
+
spire/xls/conditional_formatting/XlsConditionalFormats.py,sha256=AY3AiJ0OTNbH43bgP146EDk4vVgesr3SiTPvmLh-3MM,26577
|
|
324
325
|
spire/xls/conditional_formatting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
326
|
spire/xls/enums/AlertStyleType.py,sha256=9734xAOr3L6Jy1XBDaKmzjfMvZnzFUMUjVEPhPlMRAs,326
|
|
326
327
|
spire/xls/enums/AutoFormatOptions.py,sha256=HRz51h9-LOQnHI9aDi6vGuTI5_y70inUDEBxZ8O7Qnk,422
|
|
@@ -616,12 +617,12 @@ spire/xls/interfaces/ITextBoxShape.py,sha256=CMC_2XkBDWgXgVaHuGVzyP1tC_-0JLySe2Y
|
|
|
616
617
|
spire/xls/interfaces/ITextFrame.py,sha256=4v2a3IUb89IPJl3Rr7XdPYjf9-9xLZG4k65cuwOktq8,3790
|
|
617
618
|
spire/xls/interfaces/IVPageBreak.py,sha256=rHSiH0HRFS1Fu8BqgUE3kheqNC93oizFsgCdxI4e4qc,797
|
|
618
619
|
spire/xls/interfaces/IWorkbook.py,sha256=3EF6-Fxp0pEj9qn5B2oQcpcFsnPmbGrI-_G_VU0Y6-Q,42501
|
|
619
|
-
spire/xls/interfaces/IWorksheet.py,sha256=
|
|
620
|
+
spire/xls/interfaces/IWorksheet.py,sha256=UvN-IHs3jM_D3xUiJ3MLjjsORNyLDSZZ4KoMRN2XORo,74383
|
|
620
621
|
spire/xls/interfaces/IXLSRange.py,sha256=YvEzrqc_k_TDKL8G327cO4l8GL8sCNztcgLMIGAjd80,54595
|
|
621
622
|
spire/xls/interfaces/IXLSRanges.py,sha256=NPS7C6638OV0Dh9pPT6cx7xQSRXDs65_cTIonqZ3_JQ,1054
|
|
622
623
|
spire/xls/interfaces/IconSet.py,sha256=RrGF4OvhEFFSUiwADoTzkh0leFw7VzmWJ7QN1_6Vn_0,4838
|
|
623
624
|
spire/xls/interfaces/ImageLocationTypes.py,sha256=WDe1o0vD35eGJFzPcGB0n4_PYu1Uk4Wy3xxIlkEJanY,532
|
|
624
|
-
spire/xls/interfaces/ImportObjectOptions.py,sha256=
|
|
625
|
+
spire/xls/interfaces/ImportObjectOptions.py,sha256=1iRTWRnTw88sFfNRb9HjJOOMZbBrU4DM-gBxS-NGL0U,5493
|
|
625
626
|
spire/xls/interfaces/InsertMoveOption.py,sha256=it4DvdJ431RMyWzusP1J26j7PCF6zsnUzxBwjx81n44,577
|
|
626
627
|
spire/xls/interfaces/InteriorArrayWrapper.py,sha256=gYOlRoWifEBZi18Cy-iXXWDkvIqzwYwsou9-fIeSqgY,6647
|
|
627
628
|
spire/xls/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -677,7 +678,7 @@ spire/xls/interfaces/pivot_table/IPivotTables.py,sha256=09ewuNL9t7WYeLvu5dc4Fs5y
|
|
|
677
678
|
spire/xls/interfaces/pivot_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
678
679
|
spire/xls/interfaces/sorting/IDataSort.py,sha256=_1XFzBKob2YKPeIivumrhjQw1WBfsvDyzBb_sPSIKWk,1459
|
|
679
680
|
spire/xls/interfaces/sorting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
680
|
-
spire/xls/lib/Spire.Xls.Base.dll,sha256=
|
|
681
|
+
spire/xls/lib/Spire.Xls.Base.dll,sha256=7Ad1u9ENtJFLHzA8bNrQp0m2cnqTgHseR5yKr_eeBk4,51876352
|
|
681
682
|
spire/xls/lib/_init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
682
683
|
spire/xls/lib/libSkiaSharp.dll,sha256=BD0b-JGZXN5fxQ4aB1J_cy8nWQjGBDvS9nZl7ZYtHY4,9605176
|
|
683
684
|
spire/xls/license/LicenseProvider.py,sha256=YPV_fkeNFKRxmrTSY1MuHf9ZCsXIBIHDPN7qIqghZ7M,3914
|
|
@@ -690,9 +691,9 @@ spire/xls/pivot_tables/PivotField.py,sha256=DTjXiIzGzOJSvVhhj7otI3OFWrBSJn4zVRQu
|
|
|
690
691
|
spire/xls/pivot_tables/PivotItem.py,sha256=NkEAOmsyc_GiEXv8QfYinm6KbKzxI7cRDFRGpmXSJVM,8697
|
|
691
692
|
spire/xls/pivot_tables/PivotReportFilter.py,sha256=Vsp578S9iP6KzvQGLhGSH1_5L1L4Ix7rgIUGzS09yCM,8224
|
|
692
693
|
spire/xls/pivot_tables/PivotReportFilters.py,sha256=5ueigpc9rFMYgW4ouG8sE3EuAgdPjaUk3xfi54lbmHA,3554
|
|
693
|
-
spire/xls/pivot_tables/PivotStyle.py,sha256=
|
|
694
|
+
spire/xls/pivot_tables/PivotStyle.py,sha256=e8mT-gOExeqQLRoQkGpYql5m8kysau3LWWhprU1Dvb4,3819
|
|
694
695
|
spire/xls/pivot_tables/PivotTable.py,sha256=U6r8aZNboOAQGSKtdtyN79546NgDtyH-230c1JDxrQg,254
|
|
695
|
-
spire/xls/pivot_tables/PivotTableStyle.py,sha256=
|
|
696
|
+
spire/xls/pivot_tables/PivotTableStyle.py,sha256=1lH2niikV4zsYuDnBDd88bURwMl2o8Ai6kWp3o5bc6M,3010
|
|
696
697
|
spire/xls/pivot_tables/XlsPivotCache.py,sha256=8ZLdkm-78jn2ze9FaXfL9dauDWqHjhUAnmUMugPLJqI,20815
|
|
697
698
|
spire/xls/pivot_tables/XlsPivotCacheField.py,sha256=p6TH_zW_KfobW0xj8aWTiGCE69Ktb619k_L2sHdX68k,10486
|
|
698
699
|
spire/xls/pivot_tables/XlsPivotField.py,sha256=gHuy_IAmS0dzsLV7WBmtoMMPaNTMlskZARDCHH_2-l0,39130
|
|
@@ -714,7 +715,7 @@ spire/xls/sparkline/SparklineGroupCollection.py,sha256=ZFVjXktFMv5bMVIO9g2Y3216F
|
|
|
714
715
|
spire/xls/sparkline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
715
716
|
spire/xls/template_markers/MarkerDesigner.py,sha256=WFGw0x6wm-8ViSJyAJUfzTRxhbrsWCbaWdhW64hUVQQ,5796
|
|
716
717
|
spire/xls/template_markers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
717
|
-
spire_xls-15.
|
|
718
|
-
spire_xls-15.
|
|
719
|
-
spire_xls-15.
|
|
720
|
-
spire_xls-15.
|
|
718
|
+
spire_xls-15.11.1.dist-info/METADATA,sha256=mpYWrdV-mbRnmJoW2LpQV5BZjJlnBs-UE8KUFb1Yrgo,12822
|
|
719
|
+
spire_xls-15.11.1.dist-info/WHEEL,sha256=AiyVnrmrEuW_cPqhPlarzpb5qtD8ITcBeZKvhXXgyN4,98
|
|
720
|
+
spire_xls-15.11.1.dist-info/top_level.txt,sha256=WxTypv85IOx5WpDWDS_HpIgu5l722KWSil7EHZwF08M,6
|
|
721
|
+
spire_xls-15.11.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|