Attention

This is the documentation for HARP Proxy, actually published as an early preview. Both the software and documentation are a work in progress, and although we already use it on various production servers, they may contain inaccuracies, typographical errors, huge mistakes and empty pages. We work hard to eradicate all mistakes and implement stuff, but it is a long and tedious process. We appreciate your patience and understanding. Of course, any help will be greatly appreciated.

Views (harp.views)

The Views (harp.views) package contains tools for transforming non-response controller return values into responses.

Contents

class html[source]

Bases: str

content_type = 'text/html'
class json[source]

Bases: dict

This is a marked dict type that our view event listener will recognize and serialize to json in a response.

Usage:

def handler():
    return json({"foo": "bar"})

Submodules