Houdini 20.0 hapi

hapi.getServerEnvVarList function

Provides a list of all of the environment variables

Usage

getServerEnvVarList(session: hapi.Session, start: int, length: int) → list of int

Provides a list of all of the environment variables in the server’s process

session

The session of Houdini you are interacting with. See hapi.Session for more on sessions. Pass None to just use the default in-process session.

start

First index of range. Must be at least 0 and at most env_count - 1 where env_count is the count returned by hapi.getServerEnvVarCount

length

Given env_count returned by hapi.getServerEnvVarCount length should be at least 0 and at most env_count - start.

Returns values_array as a list of int.

hapi