bittle

Simple library to help with bit manipulations.


License
MIT
Install
pip install bittle==0.2.1

Documentation

bittle

Description

Bittle is a simple module to help me to things with bits.

Installation

New versions will be updated to PyPI pretty regularly so it should be as easy as:

pip install bittle

Examples

from bittle import FlagWord

Status = FlagWord(["pending", "approved", "actioned"])

status = Status()
status.set(status.approved)
status.has(Status.approved)  # True
status.has("actioned")  # False