I am trying to use Listfield from djangotoolbox.fields but it is giving me an error saying :
Traceback (most recent call last):
File \"/Library/Python/2.7/site-p
use from importlib import import_module
django.utils.importlib is a compatibility library for when Python 2.6 was still supported. It has been obsolete since Django 1.7, which dropped support for Python 2.6, and is removed in 1.9 per the deprecation cycle.
Try this
from importlib import import_module
source here.