This weekend i finally came around to connect Pyjamas to my bobo backend application through JSON-RPC. The following example shows all the code you need to enable JSON-RPC in the bobo backend.
Create a file ‘jsonrpc_application.py‘, the bobo backend application:
import bobo
I use lovely.jsonrpc for the JSON-RPC server implementation.
from lovely.jsonrpc.dispatcher import JSONRPCDispatcher
The PyjamasAPI class follows […]

