import sys from os.path import dirname, abspath sys.path.append(dirname(dirname(dirname(abspath(__file__))))) from account import * if __name__ == "__main__": if len(sys.argv) > 1 and sys.argv[1] == 'config': print('graph_title Splinux') print('graph_vlabel Amount') print('accounts.label Accounts') else: service = AccountService(LDAP_HOST, LDAP_BASE_DN,SERVICES) accounts = service.find(LDAP_ADMIN_USER, LDAP_ADMIN_PASS) print('accounts.value %s' % len(accounts))