db.models.Aggregate.template

template A class attribute, as a format string, that describes the SQL that is generated for this aggregate. Defaults to '%(function)s( %(expressions)s )'.

contenttypes.models.ContentType.name

name The human-readable name of the content type. This is taken from the verbose_name attribute of the model.

test.Response

class Response client The test client that was used to make the request that resulted in the response. content The body of the response, as a bytestring. This is the final page content as rendered by the view, or any error message. context The template Context instance that was used to render the template that produced the response content. If the rendered page used multiple templates, then context will be a list of Context objects, in the order in which they were rendered. Re

auth.models.User.date_joined

date_joined A datetime designating when the account was created. Is set to the current date/time by default when the account is created.

postgres.validators.RangeMinValueValidator

class RangeMinValueValidator(limit_value, message=None) [source] Validates that the lower bound of the range is not less than the limit_value.

gis.geos.GEOSGeometry.dims

GEOSGeometry.dims Returns the dimension of the geometry: 0 for Points and MultiPoints 1 for LineStrings and MultiLineStrings 2 for Polygons and MultiPolygons -1 for empty GeometryCollections the maximum dimension of its elements for non-empty GeometryCollections

gis.gdal.OGRGeometry.within()

within(other) Returns True if this geometry is contained within the other, otherwise returns False.

apps.AppConfig.label

AppConfig.label Short name for the application, e.g. 'admin' This attribute allows relabeling an application when two applications have conflicting labels. It defaults to the last component of name. It should be a valid Python identifier. It must be unique across a Django project.

gis.gdal.Envelope.wkt

wkt A string representing this envelope as a polygon in WKT format.

gis.gdal.LineString.x

x Returns a list of X coordinates in this line: >>> OGRGeometry('LINESTRING (1 2,3 4)').x [1.0, 3.0]