sessions.backends.base.SessionBase.keys()

keys()

gis.gdal.Field.width

width Returns the width of this field: >>> city['Name'].width 80

sessions.backends.base.SessionBase.__contains__()

__contains__(key) Example: 'fav_color' in request.session

views.generic.edit.ProcessFormView.get()

get(request, *args, **kwargs) Renders a response using a context created with get_context_data(). Changed in Django 1.9: Construction of the form was moved from this method to get_context_data().

gis.db.models.GeometryCollectionField

class GeometryCollectionField

core.files.storage.Storage.get_created_time()

get_created_time(name) [source] New in Django 1.10. Returns a datetime of the creation time of the file. For storage systems unable to return the creation time this will raise NotImplementedError. If USE_TZ is True, returns an aware datetime, otherwise returns a naive datetime in the local timezone.

core.files.storage.get_storage_class()

get_storage_class(import_path=None) [source] Returns a class or module which implements the storage API. When called without the import_path parameter get_storage_class will return the current default storage system as defined by DEFAULT_FILE_STORAGE. If import_path is provided, get_storage_class will attempt to import the class or module from the given path and will return it if successful. An exception will be raised if the import is unsuccessful.

gis.geos.GEOSGeometry.area

GEOSGeometry.area This property returns the area of the Geometry.

gis.geos.GEOSGeometry.disjoint()

GEOSGeometry.disjoint(other) Returns True if the DE-9IM intersection matrix for the two geometries is FF*FF****.

forms.TimeInput.format

format The format in which this field’s initial value will be displayed. If no format argument is provided, the default format is the first format found in TIME_INPUT_FORMATS and respects Format localization. For the treatment of microseconds, see DateTimeInput.