maci.dumpraw
dumps raw data to a file
dumping raw data to file
Dumps any data raw to a file. This is helpful to easily dump data without writing extra boilerplate code just to dump data raw to a file. Nothing is returned. Creates a new or overwrites an existing file by default (See append parameter to change mode).
Basic Example of dumping to a file using default positional parameters
maci.dumpraw('my.data', data)
In this example, we simply dump any raw data to a file using the dumpraw function and pass a string of the filepath to the file as the first argument to the function, then pass any data as the second argument to the function to be written to the file.
parameters & arguments
Describes all parameter functionality and accepted data types
Last updated