pyexcel.sheets.FormattableSheet

class pyexcel.sheets.FormattableSheet(array)[source]

A represetation of Matrix that accept custom formatters

__init__(array)[source]

Constructor

Example:

>>> import pyexcel as pe
>>> # Given a dictinoary as the following
>>> data = {
...     "1": [1, 2, 3, 4, 5, 6, 7, 8],
...     "3": [1.25, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8],
...     "5": [2, 3, 4, 5, 6, 7, 8, 9],
...     "7": [1, '',]
...     }
>>> sheet = pe.Sheet(pe.dict_to_array(data))

Methods

Attributes

column
row