http.HttpResponseBadRequest

class HttpResponseBadRequest [source] Acts just like HttpResponse but uses a 400 status code.

gis.gdal.GDALRaster.extent

extent Extent (boundary values) of the raster source, as a 4-tuple (xmin, ymin, xmax, ymax) in the spatial reference system of the source. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326}) >>> rst.extent (0.0, -20.0, 10.0, 0.0) >>> rst.origin.x = 100 >>> rst.extent (100.0, -20.0, 110.0, 0.0)

Using Django

Introductions to all the key parts of Django you’ll need to know: How to install Django Models and databases Handling HTTP requests Working with forms Templates Class-based views Migrations Managing files Testing in Django User authentication in Django Django’s cache framework Conditional View Processing Cryptographic signing Sending email Internationalization and localization Logging Pagination Porting to Python 3 Security in Django Performance and optimization Serializing Django objects Djang

views.generic.dates.YearArchiveView.make_object_list

make_object_list A boolean specifying whether to retrieve the full list of objects for this year and pass those to the template. If True, the list of objects will be made available to the context. If False, the None queryset will be used as the object list. By default, this is False.

utils.feedgenerator.SyndicationFeed.latest_post_date()

latest_post_date() [source] Returns the latest pubdate or updateddate for all items in the feed. If no items have either of these attributes this returns the current date/time.

db.models.AutoField

class AutoField(**options) [source] An IntegerField that automatically increments according to available IDs. You usually won’t need to use this directly; a primary key field will automatically be added to your model if you don’t specify otherwise. See Automatic primary key fields.

gis.geos.GEOSGeometry.coords

GEOSGeometry.coords Returns the coordinates of the geometry as a tuple.

gis.geos.GEOSGeometry.wkt

GEOSGeometry.wkt Returns the Well-Known Text of the geometry (an OGC standard). Changed in Django 1.10: Non-significant zeros are stripped from the output.

http.HttpRequest.path_info

HttpRequest.path_info Under some Web server configurations, the portion of the URL after the host name is split up into a script prefix portion and a path info portion. The path_info attribute always contains the path info portion of the path, no matter what Web server is being used. Using this instead of path can make your code easier to move between test and deployment servers. For example, if the WSGIScriptAlias for your application is set to "/minfo", then path might be "/minfo/music/ban

core.checks.Warning

class Warning(msg, hint=None obj=None, id=None) [source]