8.6.1.1.1. pymodaq_data.h5modules.exporters.base module

Created the 02/03/2023

@author: Sebastien Weber

class pymodaq_data.h5modules.exporters.base.H5h5Exporter[source]

Bases: H5Exporter

Exporter object for saving nodes as single h5 files

Methods

export_data(node, filename)

Export an h5 node

export_data(node, filename)[source]

Export an h5 node

Return type:

None

FORMAT_DESCRIPTION: str = 'Single node h5 file'
FORMAT_EXTENSION: str = 'h5'
class pymodaq_data.h5modules.exporters.base.H5npyExporter[source]

Bases: H5Exporter

Exporter object for saving nodes as npy files

Methods

export_data(node, filename)

Export the node as a numpy binary file format

export_data(node, filename)[source]

Export the node as a numpy binary file format

Return type:

None

FORMAT_DESCRIPTION: str = 'Binary NumPy format'
FORMAT_EXTENSION: str = 'npy'
class pymodaq_data.h5modules.exporters.base.H5txtExporter[source]

Bases: H5Exporter

Exporter object for saving nodes as txt files

Methods

export_data(node, filename)

Export the node as a .txt file format

export_data(node, filename)[source]

Export the node as a .txt file format

Return type:

None

FORMAT_DESCRIPTION: str = 'Text files'
FORMAT_EXTENSION: str = 'txt'