pytabs.settings

pytabs configuration constants

ETABS_DIR: ETABS install for example, defaults to 'C:\Program Files\Computers and Structures\ETABS 20'.

ETABS_API_DLL: ETABS API .dll file name, defaults to 'ETABSv1.dll'.

ETABS_EXE: ETABS .exe file name, defaults to 'ETABS.exe'.

 1# pyTABS - ETABS .NET API python wrapper
 2# Default Settings
 3
 4# ETABS program path and file names
 5"""pytabs configuration constants
 6
 7`ETABS_DIR`: ETABS install for example, defaults to 'C:\Program Files\Computers and Structures\ETABS 20'.
 8
 9`ETABS_API_DLL`: ETABS API .dll file name, defaults to 'ETABSv1.dll'.
10
11`ETABS_EXE`: ETABS .exe file name, defaults to 'ETABS.exe'.
12"""
13
14ETABS_DIR = 'C:\Program Files\Computers and Structures\ETABS 20'
15ETABS_API_DLL = 'ETABSv1.dll'
16ETABS_EXE = 'ETABS.exe'