View on GitHub

mooda

Module for Ocean Observatory Data Analysis - Python package

mooda.md5(file_path, save_dm5=True, md5_path=None)

Reference

It generates the MD5 code of the input file. It saves the code into a file if it save_md5 is True. It saves the code into the text file of ‘md5_path’. If md5_path is None, the name of the file is the same as the input file with the md5 extension.

Parameters

Returns

Example

To reproduce the example, download the NetCDF file MO_TS_MO_OBSEA_201402.nc.

import mooda as md


md5_string = md.md5("MO_TS_MO_OBSEA_201402.nc")
print(md5_string)

Output:

aff8d84c53f38e5525fd312f38d1e4cf

Note: The script also makes a file called MO_TS_MO_OBSEA_201402.md5 with the MD5 code.

Return to mooda.WaterFrame.