blob: a7f0dc87efd2d3bf8798919649873cb81fc25ade [file] [log] [blame]
def main(request, response):
bytes = bytearray(request.raw_input.read())
bytes_string = " ".join("%02x" % b for b in bytes)
return (
[("Content-Type", "text/plain")],
bytes_string
)