All Projects → bcb → Jsonrpcserver

bcb / Jsonrpcserver

Licence: mit
Process JSON-RPC requests in Python

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Jsonrpcserver

Jsonrpc
The jsonrpc package helps implement of JSON-RPC 2.0
Stars: ✭ 143 (+13.49%)
Mutual labels:  api, rpc, json-rpc
Jstp
Fast RPC for browser and Node.js based on TCP, WebSocket, and MDSF
Stars: ✭ 132 (+4.76%)
Mutual labels:  api, rpc, server
X
新生命X组件,数据中间件XCode、日志、网络、RPC、序列化、缓存、Windows服务
Stars: ✭ 1,322 (+949.21%)
Mutual labels:  api, rpc, server
Impress
Enterprise application server for Node.js and Metarhia private cloud ⚡
Stars: ✭ 634 (+403.17%)
Mutual labels:  api, rpc, server
Actionhero
Actionhero is a realtime multi-transport nodejs API Server with integrated cluster capabilities and delayed tasks
Stars: ✭ 2,280 (+1709.52%)
Mutual labels:  api, api-server, server
Autoserver
Create a full-featured REST/GraphQL API from a configuration file
Stars: ✭ 188 (+49.21%)
Mutual labels:  api, json-rpc, server
Appy Backend
A user system to bootstrap your app.
Stars: ✭ 96 (-23.81%)
Mutual labels:  api, api-server, server
Rpc
Simple RPC style APIs with generated clients & servers.
Stars: ✭ 192 (+52.38%)
Mutual labels:  api, rpc, json-rpc
Watsontcp
WatsonTcp is the easiest way to build TCP-based clients and servers in C#.
Stars: ✭ 209 (+65.87%)
Mutual labels:  api, rpc, server
Spyne
A transport agnostic sync/async RPC library that focuses on exposing services with a well-defined API using popular protocols.
Stars: ✭ 992 (+687.3%)
Mutual labels:  api, rpc, api-server
Run
⚡The resource runtime
Stars: ✭ 90 (-28.57%)
Mutual labels:  api, rpc
Rpc Codec
JSON-RPC 2.0 codec for Go net/rpc standard library
Stars: ✭ 87 (-30.95%)
Mutual labels:  rpc, json-rpc
Go Whatsapp Rest
Go WhatsApp Implementation in REST API
Stars: ✭ 86 (-31.75%)
Mutual labels:  api, server
Plumber
Turn your R code into a web API.
Stars: ✭ 1,160 (+820.63%)
Mutual labels:  api, api-server
Remote Function
Make function calls to remote hosts seamlessly
Stars: ✭ 95 (-24.6%)
Mutual labels:  rpc, json-rpc
Myetherapi
An API by MyEtherWallet. ETH / Ropsten / JSON RPC / Web3
Stars: ✭ 95 (-24.6%)
Mutual labels:  api, json-rpc
Rest And Go
A basic online store REST API written with Golang
Stars: ✭ 98 (-22.22%)
Mutual labels:  api, server
Cross Platform Node Guide
📗 How to write cross-platform Node.js code
Stars: ✭ 1,161 (+821.43%)
Mutual labels:  api, server
Python Binance Chain
Binance Chain Exchange API python implementation for automated trading
Stars: ✭ 96 (-23.81%)
Mutual labels:  api, rpc
Simpletcp
Simple wrapper for TCP client and server in C# with SSL support
Stars: ✭ 99 (-21.43%)
Mutual labels:  rpc, server

jsonrpcserver

Process JSON-RPC requests in Python.

PyPI Downloads Coverage Status

from jsonrpcserver import method, serve

@method
def ping():
    return "pong"

if __name__ == "__main__":
    serve()

Full documentation is at jsonrpcserver.readthedocs.io.

See also: jsonrpcclient

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].