TSMasterAPI 2024.8.22.1170__tar.gz → 2024.8.22.1171__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/PKG-INFO +1 -1
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/TSDirver.py +8 -1
- TSMasterAPI-2024.8.22.1171/TSMasterAPI/__init__.py +2 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI.egg-info/PKG-INFO +1 -1
- TSMasterAPI-2024.8.22.1170/TSMasterAPI/__init__.py +0 -2
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/README.rst +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/TSAPI.py +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/TSCallback.py +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/TSEnum.py +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/TSFibex_parse.py +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/TSMasterAPI.py +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/TSStruct.py +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/windows/bin/TSMaster.dll +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/windows/bin64/TSMaster.dll +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI.egg-info/SOURCES.txt +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI.egg-info/dependency_links.txt +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI.egg-info/top_level.txt +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/license.txt +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/setup.cfg +0 -0
- {TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/setup.py +0 -0
@@ -54,4 +54,11 @@ if dll_path != '':
|
|
54
54
|
except Exception as r:
|
55
55
|
print(r"Could not load the TOSUN DLL from '%s'. Error: %s" % (dll_path, r))
|
56
56
|
else:
|
57
|
-
|
57
|
+
try:
|
58
|
+
if _arch == '32bit':
|
59
|
+
dll_path = _curr_path + "\\windows\\bin\\TSMaster.dll"
|
60
|
+
else:
|
61
|
+
dll_path = _curr_path + "\\windows\\bin64\\TSMaster.dll"
|
62
|
+
dll = WinDLL(dll_path)
|
63
|
+
except Exception as r:
|
64
|
+
print(r"Could not load the TOSUN DLL from '%s'. Error: %s" % (dll_path, r))
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/windows/bin/TSMaster.dll
RENAMED
File without changes
|
{TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI/windows/bin64/TSMaster.dll
RENAMED
File without changes
|
File without changes
|
{TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI.egg-info/dependency_links.txt
RENAMED
File without changes
|
{TSMasterAPI-2024.8.22.1170 → TSMasterAPI-2024.8.22.1171}/TSMasterAPI.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|