0

An old question What is the current choice for doing RPC in Python? gave me a good choice of Python JSON-RPC implementation to choose from:

But the service I want to communicate with works over HTTP. How can I bend of these to work over HTTP?

Community
  • 1
  • 1
Mat
  • 82,161
  • 34
  • 89
  • 109

1 Answers1

0

Okay, looks like jsonrpclib will json-rpc over http without any trouble.

Mat
  • 82,161
  • 34
  • 89
  • 109