mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
6 lines
170 B
Python
6 lines
170 B
Python
from sj import *
|
|
URL = "http://127.0.0.1:2000/rpc"
|
|
service = ServerProxy(URL, verbose=True)
|
|
print service.call("Responder.Get", "test")
|
|
print service.ResponseGet("test")
|