django.contrib.databrowse.datastructures: These classes are light wrappers around Django's database API that
provide convenience functionality and permalink functions for the
databrowse app.
django.contrib.formtools.wizard: FormWizard class -- implements a multi-page form, validating
between each step and storing the form's state as HTML hidden
fields so that no state is stored on the server side.
django.contrib.gis.db.backend.base: This module holds the base `SpatialBackend` object, which is
instantiated by each spatial backend with the features it has.
django.contrib.gis.gdal.datasource: DataSource is a wrapper for the OGR Data Source object, which provides
an interface for reading vector geometry data from many different file
formats (including ESRI shapefiles).
django.contrib.gis.gdal.envelope: The GDAL/OGR library uses an Envelope structure to hold the bounding
box information for a geometry.
django.contrib.gis.gdal.error: This module houses the OGR & SRS Exception objects, and the
check_err() routine which checks the status code returned by OGR
methods.
django.contrib.gis.geos: The goal of this module is to be a ctypes wrapper around the GEOS library
that will work on both *NIX and Windows systems.
django.contrib.gis.geos.base: This module contains the 'base' GEOSGeometry object -- all GEOS
Geometries inherit from this object.
django.contrib.gis.geos.collections: This module houses the Geometry Collection objects:
GeometryCollection, MultiPoint, MultiLineString, and MultiPolygon
django.contrib.gis.geos.coordseq: This module houses the GEOSCoordSeq object, which is used
internally by GEOSGeometry to house the actual coordinates of the
Point, LineString, and LinearRing geometries.
django.contrib.gis.geos.error: This module houses the GEOS exceptions, specifically, GEOSException
and GEOSGeometryIndexError.
django.contrib.gis.geos.libgeos: This module houses the ctypes initialization procedures, as well as
the notice and error handler function callbacks (get called when an
error occurs in GEOS).
django.contrib.gis.geos.prototypes.misc: This module is for the miscellaneous GEOS routines, particularly
the ones that return the area, distance, and length.
django.contrib.gis.utils.ogrinfo: This module includes some utility functions for inspecting the
layout of a GDAL data source -- the functionality is analogous to
the output produced by the `ogrinfo` utility.
django.contrib.gis.utils.ogrinspect: This module is for inspecting OGR data sources and generating
either models for GeoDjango and/or mapping dictionaries for use
with the `LayerMapping` utility.
django.contrib.localflavor.ca.ca_provinces: An alphabetical list of provinces and territories for use as
`choices` in a formfield., and a mapping of province
misspellings/abbreviations to normalized abbreviations
django.contrib.localflavor.in_.in_states: A mapping of state misspellings/abbreviations to normalized
abbreviations, and an alphabetical list of states for use as
`choices` in a formfield.
django.contrib.localflavor.us.us_states: A mapping of state misspellings/abbreviations to normalized
abbreviations, and an alphabetical list of states for use as
`choices` in a formfield.
django.contrib.sessions.tests: >>> from django.conf import settings
>>> from django.contrib.sessions.backends.db import SessionStore as DatabaseSession
>>> from django.contrib.sessions.backends.cache import SessionStore as CacheSession
>>> from django.contrib.sessions.backends.file import SessionStore as FileSession
>>> from django.contrib.sessions.backends.base import SessionBase
>>> from django.contrib.sessions.models import Session
django.core.xheaders: Pages in Django can are served up with custom HTTP headers
containing useful information about those pages -- namely, the
content type and object ID.
django.views.decorators.cache: Decorator for views that tries getting the page from the cache and
populates the cache if the page isn't in the cache yet.