aspen_pysys.constants

 1# Copyright 2026 Hariidaran Tamilmaran
 2
 3NAME_STR = "name"
 4NAMES_STR = "Names"
 5VISIBLE_TYPE_NAME_STR = "VisibleTypeName"
 6TYPE_NAME_STR = "TypeName"
 7VALUE_STR = "Value"
 8GET_VALUE_STR = "GetValue"
 9GET_VALUES_STR = "GetValues"
10VALUES_STR = "Values"
11NONE_STR = "None"
12
13NONE = -32767
14
15EPSILON = 1e-4
16
17primitive_types = (bool, str, int, float)
18collection_types = (list, tuple)
19
20type PrimitiveType = bool | str | int | float
21type CollectionType = list | tuple
NAME_STR = 'name'
NAMES_STR = 'Names'
VISIBLE_TYPE_NAME_STR = 'VisibleTypeName'
TYPE_NAME_STR = 'TypeName'
VALUE_STR = 'Value'
GET_VALUE_STR = 'GetValue'
GET_VALUES_STR = 'GetValues'
VALUES_STR = 'Values'
NONE_STR = 'None'
NONE = -32767
EPSILON = 0.0001
primitive_types = (<class 'bool'>, <class 'str'>, <class 'int'>, <class 'float'>)
collection_types = (<class 'list'>, <class 'tuple'>)
type PrimitiveType = bool | str | int | float
type CollectionType = list | tuple