Skip to main content

An updated version of the bitmap library from https://github.com/wanji/bitmap

Project description

BitMap for python

An updated version of the bitmap library from https://github.com/wanji/bitmap since the original project is no longer maintained.

This package provides a BitMap class which is an array of bits stored in compact format.

Installation

bitmap can be installed from pip:

pip3 install bitmap2

Functions

  • BitMap(maxnum): construct a BitMap object with maxnum bits
  • set(pos): set the bit at position pos to 1
  • reset(pos): reset the bit at position pos to 0
  • flip(pos): flip the bit at position pos
  • count(): return the number of 1s
  • size(): return the size of the BitMap
  • test(pos): check if bit at position pos has been set to 1
  • any(): check if any bit in the BitMap has been set to 1
  • none(): check if none of the bits in the BitMap has been set to 1
  • all(): check if all bits in the BitMap has been set to 1
  • nonzero(): return indexes of all non-zero bits
  • tostring(): convert a BitMap object to 0 and 1 string
  • tofile(path): save a BitMap object to a file on path
  • fromstring(bitstring): create a BitMap object from 0 and 1 string
  • fromhexstring(hexstring): construct a BitMap object from hex string
  • fromfile(path, maxnum): construct a Bitmap object from a file at path of size maxnum bits

Examples

from bitmap import BitMap
bm = BitMap(32)
print bm.tostring()
bm.set(1)
print bm.tostring()

bm = BitMap.fromstring("00011101")
print bm.tostring()
bm.flip(1)
print bm.tostring()

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

bitmap2-0.0.8.tar.gz (4.5 kB view details)

Uploaded Source

File details

Details for the file bitmap2-0.0.8.tar.gz.

File metadata

  • Download URL: bitmap2-0.0.8.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for bitmap2-0.0.8.tar.gz
Algorithm Hash digest
SHA256 88bc7b91f61d84f36c892044e6562e94c9f495d45ac393f0a150944b14259c4d
MD5 22e282f369169862a4bcec22edbfd559
BLAKE2b-256 b468378794182caf5108623a9ca1f66a7c3349675a42f6537b4d2e03632fcf82

See more details on using hashes here.

Supported by

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