pypsa.Network.meta

Contents

pypsa.Network.meta#

property Network.meta: dict#

Dictionary of the network meta data.

Any additional meta data can be added to the network by setting the meta attribute. Meta data will be saved on export.

Examples

>>> n = pypsa.Network()
>>> n.meta['description'] = 'This is a test network'
>>> n.meta['any_key'] = 'Any Key can be added'
>>> n.meta
{'description': 'This is a test network', 'any_key': 'Any Key can be added'}