module documentation

Undocumented

Class MethodView Dispatches request methods to the corresponding instance methods. For example, if you implement a ``get`` method, it will be used to handle ``GET`` requests.
Class View Subclass this class and override :meth:`dispatch_request` to create a generic class-based view. Call :meth:`as_view` to create a view function that creates an instance of the class with the given arguments and calls its ``dispatch_request`` method with any URL variables.
Variable http_method_funcs Undocumented
http_method_funcs = (source)

Undocumented