[Django]-How to store a MAC address field in a django model?

3👍

I would personally stick to models.CharField(), and then use a custom model method to convert it if need be, but there is a package that seems to do this more professionally called django-macaddress.

👤Hybrid

Leave a comment