Django Crawfish

Overview

Installation

Using pip:

$ pip install django-crawfish

Basic Usage

Add crawfish to INSTALLED_APPS in your settings. Crawfish does not require installation in any particular order.

INSTALLED_APPS = [
    # Other apps
    "crawfish"
]

Models

Crawfish includes base models and fields for better Django models.

Models

from crawfish.models import BaseModel

Fields

from crawfish.models import EmailField

Crawfish API

Test

Indices and tables