CRC16 in Python

How to calculate CRC16 in Python?

In Perl, I would write something like:

use Digest::CRC "crc16";
$result = crc16($str);

How can I do the same in Python?

+3
source share
1 answer

There is a library for calculating CRC16 here http://pypi.python.org/pypi/crc16/0.1.0

+3
source

All Articles