tsmasterapi 2025.12.5.1750__tar.gz → 2025.12.15.1766__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.
Files changed (20) hide show
  1. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/PKG-INFO +1 -1
  2. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/TSEnum.py +48 -0
  3. tsmasterapi-2025.12.15.1766/TSMasterAPI/__init__.py +2 -0
  4. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/windows/bin/TSMaster.dll +0 -0
  5. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/windows/bin64/TSMaster.dll +0 -0
  6. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI.egg-info/PKG-INFO +1 -1
  7. tsmasterapi-2025.12.5.1750/TSMasterAPI/__init__.py +0 -2
  8. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/README.rst +0 -0
  9. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/TSAPI.py +0 -0
  10. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/TSCallback.py +0 -0
  11. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/TSDirver.py +0 -0
  12. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/TSFibex_parse.py +0 -0
  13. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/TSMasterAPI.py +0 -0
  14. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI/TSStruct.py +0 -0
  15. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI.egg-info/SOURCES.txt +0 -0
  16. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI.egg-info/dependency_links.txt +0 -0
  17. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/TSMasterAPI.egg-info/top_level.txt +0 -0
  18. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/license.txt +0 -0
  19. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/setup.cfg +0 -0
  20. {tsmasterapi-2025.12.5.1750 → tsmasterapi-2025.12.15.1766}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tsmasterapi
3
- Version: 2025.12.5.1750
3
+ Version: 2025.12.15.1766
4
4
  Summary: Use TSMaster hardware
5
5
  Author: seven
6
6
  Author-email: 865762826@qq.com
@@ -64,6 +64,54 @@ class _TMBD_PriorityKind(CEnum):
64
64
  TMBD_PriorityKind = c_int32
65
65
  PMBD_PriorityKind = ps32
66
66
 
67
+ class _TAiFlowObjectType(CEnum):
68
+ AIT_DIAGRAM = 0
69
+ AIT_JUNCTION = 1
70
+ AIT_GROUP = 2
71
+ AIT_STATE = 3
72
+ AIT_GRAPHIC_FUNCTION = 4
73
+ AIT_DIAGRAM_FUNCTION = 5
74
+ AIT_C_FUNCTION = 6
75
+ AIT_TRUTH_TABLE = 7
76
+ AIT_COMMENT = 8
77
+ AIT_IMAGE = 9
78
+ AIT_HISTORY_JUNCTION = 10
79
+ AIT_DATA = 11
80
+ AIT_TRANSITION = 12
81
+ AIT_EVENT = 13
82
+ TAiFlowObjectType = c_int32
83
+ PAiFlowObjectType = ps32
84
+
85
+ class _TAiFlowDecomposition(CEnum):
86
+ DECOMP_OR = 0
87
+ DECOMP_AND = 1
88
+ DECOMP_CLUSTER = 2
89
+ TAiFlowDecomposition = c_int32
90
+ PAiFlowDecomposition = ps32
91
+
92
+ class _TAiFlowDragHandlePosition(CEnum):
93
+ DRAG_NONE = 0
94
+ DRAG_TOP_LEFT = 1
95
+ DRAG_TOP_RIGHT = 2
96
+ DRAG_BOTTOM_LEFT = 3
97
+ DRAG_BOTTOM_RIGHT = 4
98
+ DRAG_TOP = 5
99
+ DRAG_BOTTOM = 6
100
+ DRAG_LEFT = 7
101
+ DRAG_RIGHT = 8
102
+ TAiFlowDragHandlePosition = c_int32
103
+ PAiFlowDragHandlePosition = ps32
104
+
105
+ class _TAiFlowAlignMode(CEnum):
106
+ ALIGN_LEFT = 0
107
+ ALIGN_RIGHT = 1
108
+ ALIGN_TOP = 2
109
+ ALIGN_BOTTOM = 3
110
+ ALIGN_CENTER_H = 4
111
+ ALIGN_CENTER_V = 5
112
+ TAiFlowAlignMode = c_int32
113
+ PAiFlowAlignMode = ps32
114
+
67
115
  class _TLIBBusToolDeviceType(CEnum):
68
116
  BUS_UNKNOWN_TYPE = 0
69
117
  TS_TCP_DEVICE = 1
@@ -0,0 +1,2 @@
1
+ from .TSAPI import *
2
+ __version__ = 'v2025.12.15.1766'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tsmasterapi
3
- Version: 2025.12.5.1750
3
+ Version: 2025.12.15.1766
4
4
  Summary: Use TSMaster hardware
5
5
  Author: seven
6
6
  Author-email: 865762826@qq.com
@@ -1,2 +0,0 @@
1
- from .TSAPI import *
2
- __version__ = 'v2025.12.5.1750'