I published on Google code a JSON-RPC like protocol I developed for Python3. This is a brief description of the project that you can find here: https://github.com/kronwiz/krpc . INTRODUCTION The krpc protocol has been written for the Python3 language. The idea was to have a protocol that was easy to be used also from a web frontend, so it was natural to choose something based on a POST request and on JSON. For Python3 there isn't, as far as I know, a similar thing, so I wrote one from scratch. The krpc protocol is based on the JSON-RPC specification but it differs in some respects: it supports file uploads; to support file uploads it uses a standard POST request to call a method: the method invocation uses the JSON syntax and is contained in a JSON parameter; the files to be uploaded are contained in the following parts of a multipart message; multiple method invocations in the same request are not supported. INSTALLATION and LICENSE The whole implementation is con
Scattered thoughts, mainly about about computer science and computing education.