@@ -87,11 +87,11 @@ Command example in ipython:
87
87
# you can print file content in ipython with a simple:
88
88
yop
89
89
# alternatively, for max speed and smaller memory footprint, read only few channels
90
- yop= mdfreader.Mdf(' NameOfFile' , channelList = [' channel1' , ' channel2' ], convertAfterRead = False )
90
+ yop= mdfreader.Mdf(' NameOfFile' , channel_list = [' channel1' , ' channel2' ], convert_after_read = False )
91
91
# also possible to keep data compressed for small memory footprint, using Blosc module
92
92
yop= mdfreader.Mdf(' NameOfFile' , compression = True )
93
93
# for interactive file exploration, possible to read the file but not its data to save memory
94
- yop= mdfreader.Mdf(' NameOfFile' , noDataLoading = True ) # channel data will be loaded from file if needed
94
+ yop= mdfreader.Mdf(' NameOfFile' , no_data_loading = True ) # channel data will be loaded from file if needed
95
95
# parsing xml metadata from mdf4.x for many channels can take more than just reading data.
96
96
# You can reduce to minimum metadata reading with below argument (no source information, attachment, etc.)
97
97
yop= mdfreader.Mdf(' NameOfFile' , metadata = 0 ) # 0: full, 2: minimal
@@ -142,4 +142,4 @@ Command example in ipython:
142
142
yop.write(' NewNameOfFile' ) # write in same version as original file after modifications
143
143
yop.write4(' NameOfFile' , compression = True ) # write mdf version 4.1 file, data compressed
144
144
yop.write3() # write mdf version 3 file
145
- ```
145
+ ```
0 commit comments