1#!/usr/bin/env python
2# Simple example of using Atheme's XMLRPC server with python
3
4import xmlrpclib
5
6atheme = xmlrpclib.ServerProxy('http://127.0.0.1:8080/xmlrpc')
7
8print atheme.atheme.command('*', '*', '::1', 'ALIS', 'LIST', '*')
9