Skip to content

hyansuper/wsmprpc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wsmpRPC

Python msgpack RPC over websocket

Features

  • Asynchronous
  • Compared to json, msgpack supports binary data.
  • Client is able to cancel long running calculation on server.
  • Supports bidirectional streaming RPC, where the client sends/receives a sequence of messages to/from server within one RPC, similar to gRPC.
  • No need to define .proto files, thanks to python's dynamic features, RPC methods defined on server side can be readily used by client as if it's client's own method.
  • Easy integration into any async web frameworks that support websocket.
  • lib for javascript client on web browsers.

Install

pip install wsmprpc

Dependency:

python and javascript versions of msgpack

Examples