#!/usr/bin/python3
# -*- coding: utf-8 -*-

from xmlrpc.client import *
s = ServerProxy('http://localhost:8090')
print("Active calls: %d" % s.calls())
print(s.di('sbc','getActiveProfile'))
