Skip to main content

KVGroup libraries

KVGroup helper libraries for Python and Perl are available.

Python and Perl libraries are installed in the \<instance>\lib\ directory. The files within \<instance>\lib\ work with the 32-bit version of the interpreters. The files within \<instance>\lib\\x64 work with the 64-bit version of the interpreters.

The hid_kvgroup Python module can be imported to provide a KVG class that can be used to read/write KVGroups.

For example:

KVGroups. For example:
import hid_kvgroup
testkvg = hid_kvgroup.kvg()
testkvg.setKey("thekey")
testkvg.getKey()

The hid_kvgroup_perl package can be imported to read/write KVGroups. For example:

require hid_kvgroup_perl;
my $testkvg = hid_kvgroup_perl::kvg->new;
$testkvg->setKey(’thekey’);
print $testkvg->getKey();