db.models.Options.verbose_name_plural

Options.verbose_name_plural The plural name for the object: verbose_name_plural = "stories" If this isn’t given, Django will use verbose_name + "s".

gis.geoip2.GeoIP2.country()

GeoIP2.country(query) Returns a dictionary with the country code and country for the given query.

http.HttpResponse.charset

HttpResponse.charset A string denoting the charset in which the response will be encoded. If not given at HttpResponse instantiation time, it will be extracted from content_type and if that is unsuccessful, the DEFAULT_CHARSET setting will be used.

gis.gdal.Envelope.ll

ll The lower-left coordinate, as a tuple.

utils.translation.deactivate()

deactivate() [source] Deactivates the currently active translation object so that further _ calls will resolve against the default translation object, again.

views.generic.detail.SingleObjectMixin.slug_field

slug_field The name of the field on the model that contains the slug. By default, slug_field is 'slug'.

gis.gdal.Feature.get

get A method that returns the value of the given field (specified by name) for this feature, not a Field wrapper object: >>> city.get('Population') 102121

gis.gdal.Layer.name

name Returns the name of this layer in the data source. >>> layer.name 'cities'

core.files.File.read()

read(num_bytes=None) Read content from the file. The optional size is the number of bytes to read; if not specified, the file will be read to the end.

db.backends.base.schema.BaseDatabaseSchemaEditor.execute()

BaseDatabaseSchemaEditor.execute(sql, params=[]) [source] Executes the SQL statement passed in, with parameters if supplied. This is a simple wrapper around the normal database cursors that allows capture of the SQL to a .sql file if the user wishes.