Sample code for 30+ languages & platforms
Chilkat2-Python

Example: Crypt2.CrcFile method

Demonstrates how to call the CrcFile method.

Chilkat Chilkat2-Python Downloads

Chilkat2-Python
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))