Python bindings for Active Collab 3.x/4.x
List system information
import pyActiveCollab as pyac
import json
ac = pyac.activeCollab("~/.activeCollab")
print json.dumps(json.loads(ac.get_info()), indent=4, sort_keys=True)
To change the log level just initialialize your object with info, error, debug
import pyActiveCollab as pyac
import json
ac = pyac.activeCollab("~/.activeCollab", log_level="debug")
print json.dumps(json.loads(ac.get_info()), indent=4, sort_keys=True)
PHP API documentation: