Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Json RPC Python Client

Tags:

python

json

What is the easy way to making json rpc call from python?

like image 750
chrithccmc Avatar asked Mar 29 '11 04:03

chrithccmc


People also ask

What is JSON-RPC client?

JSON-RPC is a remote procedure call protocol encoded in JSON. It is similar to the XML-RPC protocol, defining only a few data types and commands.

What is JSON-RPC Python?

JSON-RPC is used to communicate with an application that you running on your computer. It uses the HTTP protocol for remote procedure calls and JSON for data representation.

Does RPC support JSON?

Based upon the JSON-RPC version used, the remote system will send various data outputs back to the source of request. All the JSON-RPC powered web transfers are unified and serialized with the help of JSON only.

How do I use RPC in Python?

Remote Procedure Call (RPC) system enables you to call a function available on a remote server using the same syntax which is used when calling a function in a local library. This is useful in two situations.


1 Answers

See json-rpc for python.

like image 128
ars Avatar answered Sep 23 '22 17:09

ars