Skip to content

oldmaCloud/PythonCRC

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

PythonCRC

A CRC Flexible and easy to use calculator module

How to use

This module is very easy to use. Just instantiate the class, choose what CRC type you want and compute.

Sample:

import crc

crccalc = crc()
crccalc.setCRC8()  # Let's calculate the CRC8 of a value
crccalc.data = "My Data"
crccalc.compute()
print crccalc.result

You can costumize the CRC calculation by setting manually the definitions like Base Order, Polynom, Init Value, XOR Value, Reflection, and direct or non direct calculation.

Hope you like :)

About

A CRC Calculator module

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%