django-bitmask-field 0.1.3

Creator: danarutscher

Last updated:

Add to Cart

Description:

djangobitmaskfield 0.1.3

BitmaskField implementation for Django ORM



Requirements

Python 2.7 or Python 3.4+
Django 1.8+



Example
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
)


Install
pip install django-bitmask-field

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.