Chilkat2-Python
Chilkat2-Python
Example: Crypt2.CrcFile method
Demonstrates how to call the CrcFile method.Chilkat Chilkat2-Python Downloads
import chilkat2
crypt = chilkat2.Crypt2()
filePath = "c:/temp/someFile.dat"
crc32 = crypt.CrcFile("crc-32",filePath)
print(str(crc32))
crc8 = crypt.CrcFile("crc8",filePath)
print(str(crc8))