svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Fri, 08 Jun 2018 09:43:48 +0200
changeset 2019 92f02bb17c7e
parent 728 e0424e96e3fd
permissions -rw-r--r--
Make Modbus extension license compatible with the rest of Beremiz IDE python code : GPLv2.
These classes are intended for use server-side.

e.g. in a django view.py :

    from pyjs.jsonrpc.django import JSONService, jsonremote

    jsonservice = JSONRPCService()

    @jsonremote(jsonservice)
    def test(request, echo_param):
         return "echoing the param back: %s" % echo_param