[ create a new paste ] login | about

Link: http://codepad.org/98GzUhNJ    [ raw code | fork ]

Python, pasted on Mar 31:
#!/usr/bin/env python


from multiprocessing import cpu_count


from circuits.web import Server, Controller


class Root(Controller):

    def index(self):
        """Index Request Handler

        Controller(s) expose implicitly methods as request handlers.
        Request Handlers can still be customized by using the ``@expose``
        decorator. For example exposing as a different path.
        """

        return "Hello World!"

app = Server(("0.0.0.0", 9000))
Root().register(app)
for i in range(cpu_count() - 1):
    app.start()
app.run()


Create a new paste based on this one


Comments: