Plain is headed towards 1.0! Subscribe for development updates →

 1from pprint import pformat
 2
 3from markupsafe import Markup, escape
 4
 5from plain.http import Response
 6from plain.views.exceptions import ResponseException
 7
 8
 9def dd(*objs):
10    """
11    Dump and die.
12
13    Dump the object and raise a ResponseException with the dump as the response content.
14    """
15
16    print_objs = "\n".join([pformat(obj) for obj in objs])
17    print(f"Dumping objects:\n{print_objs}")
18
19    html_objs = [
20        Markup("<pre><code>") + escape(pformat(obj)) + Markup("</code></pre>")
21        for obj in objs
22    ]
23    combined_dump_str = Markup("\n\n").join(html_objs)
24
25    response = Response()
26    response.status_code = 500
27    response.content = combined_dump_str
28    response.content_type = "text/html"
29    raise ResponseException(response)