postgres.operations.HStoreExtension

class HStoreExtension [source] Installs the hstore extension and also sets up the connection to interpret hstore data for possible use in subsequent migrations.

db.models.Model.__hash__()

Model.__hash__() [source] The __hash__() method is based on the instance’s primary key value. It is effectively hash(obj.pk). If the instance doesn’t have a primary key value then a TypeError will be raised (otherwise the __hash__() method would return different values before and after the instance is saved, but changing the __hash__() value of an instance is forbidden in Python.

utils.feedgenerator.SyndicationFeed.__init__()

__init__(title, link, description, language=None, author_email=None, author_name=None, author_link=None, subtitle=None, categories=None, feed_url=None, feed_copyright=None, feed_guid=None, ttl=None, **kwargs) [source] Initialize the feed with the given dictionary of metadata, which applies to the entire feed. Any extra keyword arguments you pass to __init__ will be stored in self.feed. All parameters should be Unicode objects, except categories, which should be a sequence of Unicode objects.

auth.signals.user_logged_out()

user_logged_out() Sent when the logout method is called. sender As above: the class of the user that just logged out or None if the user was not authenticated. request The current HttpRequest instance. user The user instance that just logged out or None if the user was not authenticated.

gis.geoip.GeoIP.country_code_by_addr()

GeoIP.country_code_by_addr(query)

db.models.Func.arity

arity New in Django 1.10. A class attribute that denotes the number of arguments the function accepts. If this attribute is set and the function is called with a different number of expressions, TypeError will be raised. Defaults to None.

gis.gdal.GDALBand.datatype()

datatype(as_string=False) The data type contained in the band, as an integer constant between 0 (Unknown) and 11. If as_string is True, the data type is returned as a string with the following possible values: GDT_Unknown, GDT_Byte, GDT_UInt16, GDT_Int16, GDT_UInt32, GDT_Int32, GDT_Float32, GDT_Float64, GDT_CInt16, GDT_CInt32, GDT_CFloat32, and GDT_CFloat64.

template.response.SimpleTemplateResponse

class SimpleTemplateResponse [source]

admin.InlineModelAdmin.verbose_name_plural

InlineModelAdmin.verbose_name_plural An override to the verbose_name_plural found in the model’s inner Meta class.

admin.ModelAdmin.inlines

ModelAdmin.inlines See InlineModelAdmin objects below as well as ModelAdmin.get_formsets_with_inlines().