7.5. AdminΒΆ

The Python interface to the Trovares xGT graph analytics engine for system administration functions.

The module represents features intended for use by xGT system admins only.

To use this admin functionality, simply import:

>>> import xgt.admin as xa

Examples

>>> import xgt
>>> import xgt.admin as xa
>>> server = xgt.Connection(userid="user01")
>>> labelset = xa.compute_label_set(server, ['group1', 'group14'])
>>> print("Labelset: {}".format(labelset))