/examples/web/jsonserializer.py
https://bitbucket.org/prologic/circuits/ · Python · 28 lines · 17 code · 10 blank · 1 comment · 0 complexity · 56dbcd1eee59481eeeb8cff1de0b2691 MD5 · raw file
- #!/usr/bin/env python
- from json import dumps
- from circuits import handler, Component
- from circuits.web import Server, Controller, Logger
- class JSONSerializer(Component):
- channel = "web"
- @handler("response", priority=1.0) # 1 higher than the default response handler
- def serialize_response_body(self, response):
- response.headers["Content-Type"] = "application/json"
- response.body = dumps(response.body)
- class Root(Controller):
- def index(self):
- return {"message": "Hello World!"}
- app = Server(("0.0.0.0", 9000))
- JSONSerializer().register(app)
- Logger().register(app)
- Root().register(app)
- app.run()