Sample code for 30+ languages & platforms
CkPython

Example: Crypt2.CrcFile method

Demonstrates how to call the CrcFile method.

Chilkat CkPython Downloads

CkPython
import chilkat

crypt = chilkat.CkCrypt2()

filePath = "c:/temp/someFile.dat"

crc32 = crypt.CrcFile("crc-32",filePath)
print(str(crc32))

crc8 = crypt.CrcFile("crc8",filePath)
print(str(crc8))