svgui/pyjs/jsonrpc/web2py/jsonrpc.py
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Tue, 03 Oct 2017 16:07:02 +0300
changeset 1842 05c1f7aa8991
parent 1748 ba5f64fe0e00
child 1869 49cdd843c006
permissions -rw-r--r--
move README content to Makefile

It's not necessary to copy commands from README anymore. Just use
'make source_list', 'make template' or 'make locales'.
from pyjs.jsonrpc import JSONRPCServiceBase


class JSONRPCService(JSONRPCServiceBase):

    def serve(self):
        return self.process(request.body.read())

    def __call__(self, func):
        self.methods[func.__name__] = func
        return func