
Information:
This module contains some helper functions for RRs python libraries.
If you load the libs via this module, the libs and their dependencies are copied to your local temp folder.
This is required if you have scripts that keep the modules loaded for a long time.
(Otherwise your script might abort if there is a short network interruption or if you want to update RR)


Note:
If you want to use this helper module in your script,
then you can use this function to add this SDK folder to the search directories of python:


def add_rrSDK_Folder():
    # findRR_Root adds the RR path as search path for the module
    # This function will only work if RR was installed on the machine
    # If you are using it from an external machine, you have to add the path to
    # the rrPy module yourself
    # sys.path.append(MyModulePath)

    if "RR_ROOT" not in os.environ:
        return

    modPath = os.environ["RR_ROOT"] + "\SDK\External\Python"
    if modPath not in sys.path:
        sys.path.insert(0, modP