Published August 16th, 2009
in Code.
Tags: bobo, jsonrpc, pyjamas.
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 […]
Published June 22nd, 2009
in Code.
Tags: bobo, gae, google app engine, wsgi.
A blueprint on how to setup a new GAE project and run a basic bobo application on top of it.
First download and install the Google App Engine SDK, here is a Tutorial to get you started.
Next create an new package bobo_project. Inside bobo_project add an __init__.py file with empty contents.
# a […]
Published June 12th, 2009
in Code.
Tags: bobo, grok, plone, status, zope.
I haven’t been blogging much lately, mostly due to severe time limitations and workload. Anyway, here is what i am up to atm …
Working on extensions to bobo, a WSGI framework released by Jim Fulton two weeks ago. bobo is really exciting, as it is super small (40KB including comments), fast (1500 req/sec), fully […]