Demo repo to the builder post (https://torokmark.github.io/2019/01/08/builders-in-python.html)
print(ResponseBuilder()
.header()
.add('Access-Control-Allow-Origin', '*')
.add('Accept', '*')
.body()
.add('body', json.dumps('hello', default=str))
.status(204))