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 aBitMapobject withmaxnumbitsset(pos): set the bit at positionposto 1reset(pos): reset the bit at positionposto 0flip(pos): flip the bit at positionposcount(): return the number of 1ssize(): return the size of theBitMaptest(pos): check if bit at positionposhas been set to 1any(): check if any bit in theBitMaphas been set to 1none(): check if none of the bits in theBitMaphas been set to 1all(): check if all bits in theBitMaphas been set to 1nonzero(): return list of indexes of all non-zero bitsnonzeros(): return generator of indexes of all non-zero bitszero(): return list of indexes of all zero bitszeros(): return generator of indexes of all zero bitstostring(): convert aBitMapobject to0and1stringtofile(path): save aBitMapobject to a file onpathfromstring(bitstring): create aBitMapobject from0and1stringfromhexstring(hexstring): construct aBitMapobject from hex stringfromfile(path, maxnum): construct aBitmapobject from a file atpathof sizemaxnumbits
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
Release history Release notifications | RSS feed
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.1.0.tar.gz
(4.7 kB
view details)
File details
Details for the file bitmap2-0.1.0.tar.gz.
File metadata
- Download URL: bitmap2-0.1.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea1b7a97ae4d6f2879ee87c741b7bd9c6e432bfa84c3670db832a811ca8697aa
|
|
| MD5 |
0d175b2f0c2969fa703160fd64d7b543
|
|
| BLAKE2b-256 |
bee429a3e1482e599a3c9acd3d23a10d70f21f9b0b8a8f4c2e164141ced67d5f
|