Skip to main content

Convenient bit fields for int subclasses

Project description

The missing bitfield type for Python 2 and 3.

Example

The following example illustrates possible use of bfield:

from bfield import BitField

class AX(int):
    AL = BitField(0, 8, "The lower octet")
    AH = BitField(8, 16, "The higher octet")


assert AX(0x1234).AH == 0x12
assert AX(0x1234).AL == 0x34

Caveat

Note that due to specifics of immutable ints, read-only is the best thing available. This is sufficient for decoding binary protocols and file formats.

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

bfield-0.9.1.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

bfield-0.9.1-py2.py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 2 Python 3

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