ChecksumError#

class pymovements.ChecksumError(expected: str, actual: str, path: Path, algorithm: str = 'MD5')[source]#

Exception raised when a checksum integrity check fails.

expected#

Expected checksum.

Type:

str

actual#

Actual checksum.

Type:

str

path#

Path of checked file.

Type:

Path

algorithm#

Name of the checksum algorithm. (default: ‘MD5’)

Type:

str