pyramid.interfaces¶
Other Interfaces¶
- interface
IExceptionResponse[source]¶Extends:
pyramid.interfaces.IException,pyramid.interfaces.IResponseAn interface representing a WSGI response which is also an exception object. Register an exception view using this interface as a
contextto apply the registered view for all exception types raised by Pyramid internally (pyramid.exceptions.NotFoundandpyramid.exceptions.Forbidden).
- interface
IRoute[source]¶Interface representing the type of object returned from
IRoutesMapper.get_route
- interface
ISession[source]¶An interface representing a session (a web session object, usually accessed via
request.session.Keys and values of a session must be pickleable.
- interface
ISessionFactory[source]¶An interface representing a factory which accepts a request object and returns an ISession object
- interface
IRendererInfo[source]¶An object implementing this interface is passed to every renderer factory constructor as its only argument (conventionally named
info)