DataClient types¶
BaseDataClient¶
ExcelRange¶
-
class
ExcelRange
(path, range_, sheet=None, keyids=None)[source]¶ Mapping class for accessing Excel ranges
An ExcelRange is a dict-like object that represents a range in an Excel file. The user can read values from the range or write values to it by the subscription operator
[]
. ExcelRange is a mapping class, thus it implements all the mapping methods and operations.ExcelRange objects can only be created by the
Model.new_excel_range
orUserSpace.new_excel_range
method.ExcelRange
is a subclass of theBaseDataClient
abstract class. Thedataclients
property list all theBaseDataClient
instances held in the Model includingExcelRange
objects.New in version 0.9.0.