From 4b01654212d0b686fd4f91005472de66bd897333 Mon Sep 17 00:00:00 2001 From: Stephane Poss Date: Mon, 14 Jul 2014 10:12:16 +0200 Subject: [PATCH] Add a few RPC server implementations --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 37e3eb94..ecf08559 100644 --- a/README.md +++ b/README.md @@ -595,6 +595,14 @@ long, literate-programming-style documentation generator. * [AutobahnPython](https://github.com/tavendo/AutobahnPython) - WebSocket & WAMP for Python on Twisted and [asyncio](https://docs.python.org/3/library/asyncio.html). * [WebSocket-for-Python](https://github.com/Lawouach/WebSocket-for-Python) - WebSocket client and server library for Python 2 and 3 as well as PyPy. +## RPC Servers + +*RPC-compatible servers* + +* [SimpleXMLRPCServer](https://docs.python.org/2/library/simplexmlrpcserver.html) - (Python standard library) Simple XML-RPC server implementation, single-threaded. +* [SimpleJSONRPCServer](https://github.com/joshmarshall/jsonrpclib/) - This library is an implementation of the JSON-RPC specification. +* [zeroRPC](https://github.com/dotcloud/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/). + ## WSGI Servers *WSGI-compatible web servers.*