Skip to content

mathrithms/Django-Hexadecimal-Field

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django-Hexadecimal-Field

Hexadecimal field in Django for hexadecimal inputs

Installation

Usage

Import the HexadecimalField from fields.py

from djangoHexadecimal.fields import HexadecimalField
from django.db import models

class SampleModel(model.Model):
    hex_num = HexadecimalField(max_length='25')

Note that user must specify max_length

Similarly , the user can define their own validators which will be appended to hexadecimal validator

from djangoHexadecimal.fields import HexadecimalField
from django.db import models

class SampleModel(model.Model):
    hex_num = HexadecimalField(max_length='25',validators=[custom_validator])