hyperx

HyperX Scripting Library Version 2025.1.4

The HyperX python package is a library, written in python, for python developers.

Basic usage:

>>> import hyperx
>>> database = hyperx.Open('mydatabase.hdb3')
>>> print(f'Active project = {database.ActiveProject}')

The HyperX installation folder is found automatically if the installer was run. Otherwise, the installation folder can be specified by setting the environment variable HyperXInstall

>>> import os
>>> os.environ['HyperXInstall'] = 'C:/path/to/hyperx/installation'
>>> import hyperx