Skip to main content

Library for calculating CRC16

Project description

CRC is a way of detecting accidental changes in data storage or transmission. There are many variants of CRC and CRC16, in particular. This library calculates only CRC16 (16-bit codes) and the only supported variant at the moment is CRC-CCITT (XModem).

If you want to know more about CRC, http://wikipedia.org/wiki/Cyclic_redundancy_check is a good place to start.

If you want other variants of CRC16 supported, please make a request at http://code.google.com/p/pycrc16/issues

Source codes are hosted at https://github.com/gennady/pycrc16 If you want to contribute to this library, create a fork, make you changes and then create a pull request. Any help is appreciated.

Installation

On Windows you can use precompiled binaries which can be found at http://code.google.com/p/pycrc16/downloads

On Linux and other operation systems you should compile the library from the source codes. To do this on Linux use following steps:

  • download source tarball, e.g. crc16-0.1.1.tar.gz, from http://code.google.com/p/pycrc16/downloads

  • extract it with command:

    tar -xzf crc16-0.1.1.tar.gz
  • compile and install the library:

    cd crc16-0.1.1
    python setup.py build
    sudo python setup.py install

    you will need the administrative privileges to execute the last command.

After installation you can run unit tests to make sure that the library works fine. Execute:

python -m crc16.test

Usage

In Python 3:

import crc16
print(crc16.crc16xmodem(b'123456789'))

In Python 2 you should use strings instead of binary data:

import crc16
print(crc16.crc16xmodem('123456789'))

You can also calculate CRC gradually:

import crc16
crc = crc16.crc16xmodem(b'1234')
crc = crc16.crc16xmodem(b'56789', crc)
print(crc)

Other projects

There are a number of projects and libraries for CRC calculation. See for example:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycrc16-0.1.2.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

pycrc16-0.1.2-cp310-cp310-macosx_12_0_arm64.whl (11.4 kB view details)

Uploaded CPython 3.10 macOS 12.0+ ARM64

File details

Details for the file pycrc16-0.1.2.tar.gz.

File metadata

  • Download URL: pycrc16-0.1.2.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.0

File hashes

Hashes for pycrc16-0.1.2.tar.gz
Algorithm Hash digest
SHA256 fe1a03d92b352669baa4f7376392674e96f1e47a9c520dae3d0cd522c8c3b744
MD5 9f687608a378032c59c1860da9e35183
BLAKE2b-256 b475816874cdc473c1d3a6a491e12f93fe40839fc0f349c712fa927d314fa12e

See more details on using hashes here.

File details

Details for the file pycrc16-0.1.2-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pycrc16-0.1.2-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4d9268382ded070b3c454dfcb2d70aca45ffff84b4089e284c0fc1f5d01f6b25
MD5 f29f5580035cbb9179928a0f517d815f
BLAKE2b-256 0011a3a3ddd6c55886d900e6f184c617472e6dfed70bf39575015789f73e848c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page