Models
API Reference
Using pip:
$ pip install django-crawfish
Add crawfish to INSTALLED_APPS in your settings. Crawfish does not require installation in any particular order.
INSTALLED_APPS = [ # Other apps "crawfish" ]
Crawfish includes base models and fields for better Django models.
from crawfish.models import BaseModel
from crawfish.models import EmailField
Test