Source code for openpyxl.workbook.pivot

from __future__ import absolute_import
# Copyright (c) 2010-2015 openpyxl

from openpyxl.descriptors.serialisable import Serialisable
from openpyxl.descriptors import (
    Integer,
    Sequence,
)

[docs]class PivotCache(Serialisable): tagname = "pivotCache" cacheId = Integer() def __init__(self, cacheId=None, ): self.cacheId = cacheId
[docs]class PivotCacheList(Serialisable): tagname = "pivotCaches" pivotCache = Sequence(expected_type=PivotCache, ) __elements__ = ('pivotCache',) def __init__(self, pivotCache=(), ): self.pivotCache = pivotCache