svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Wed, 02 Dec 2020 14:32:56 +0100
branchsvghmi
changeset 3083 45f044cf845b
parent 728 e0424e96e3fd
permissions -rw-r--r--
SVGHMI: stuff test so that it moves all the time, to have better chance to spot memory leaks...
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