BitmaskField implementation for Django ORM
- Python 2.7 or Python 3.4+
- Django 1.8+
from django.db import models
from django_bitmask_field import BitmaskField
class MyModel(models.Model):
bitmask = BitmaskField(
choices=[(1, 'bit0'), (2, 'bit1'), (4, 'bit2')], # available choices
default=1 | 4, # bit0 and bit2 are enabled by default
)
pip install django-bitmask-field