tdrpa.tdworker 1.1.9.3__py311-none-win_amd64.whl → 1.1.10.3__py311-none-win_amd64.whl

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.
@@ -1,6 +1,8 @@
1
+ from ._clip import Clipboard as Clipboard
1
2
  from ._excel import Excel as Excel
2
3
  from ._img import Image as Image
3
4
  from ._os import App as App
5
+ from ._sp import PrintToScreen as PrintToScreen
4
6
  from ._w import Window as Window
5
7
  from ._web import ChromePlugin as ChromePlugin, Web as Web
6
8
  from ._winE import WinElement as WinElement
@@ -0,0 +1,50 @@
1
+ class Clipboard:
2
+ @staticmethod
3
+ def GetText():
4
+ """
5
+ 获取剪贴板文本
6
+
7
+ Clipboard.GetText()
8
+
9
+ :return:剪切板的文本内容
10
+ """
11
+ @staticmethod
12
+ def SetText(content: str = ''):
13
+ '''
14
+ 设置剪贴板文本
15
+
16
+ Clipboard.SetText(\'\')
17
+
18
+ :param content:[必选参数]新的剪贴板文本内容,默认""
19
+ :return:成功返回True,失败返回False
20
+ '''
21
+ @staticmethod
22
+ def SetImage(picPath):
23
+ """
24
+ 把图片放入剪贴板
25
+
26
+ Clipboard.SetText(picPath)
27
+
28
+ :param picPath:[必选参数]图片的路径
29
+ :return:成功返回True,失败返回False
30
+ """
31
+ @staticmethod
32
+ def SaveImage(savePath: str):
33
+ """
34
+ 将剪贴板中的图片保存到文件
35
+
36
+ Clipboard.SaveImage(savePath)
37
+
38
+ :param savePath:[必选参数]需要保存的文件路径
39
+ :return:保存成功返回True,保存失败返回False
40
+ """
41
+ @staticmethod
42
+ def SetFile(paths: str | list):
43
+ """
44
+ 把文件放入剪贴板
45
+
46
+ Clipboard.SetFile(filePath)
47
+
48
+ :param paths:[必选参数]文件的路径,单个文件用字符串,多个文件用list类型,其中每个元素用字符串
49
+ :return:成功返回True,失败返回False
50
+ """
tdrpa/tdworker/_img.pyi CHANGED
@@ -110,7 +110,7 @@ class Image:
110
110
  @staticmethod
111
111
  def Wait(imagePath: str, target: str | uia.Control, anchorsElement: uia.Control | None = None, rect: dict | None = None, accuracy: float = 0.9, waitType: str = 'show', searchDelay: int = 10000, continueOnError: bool = False, delayAfter: int = 0, delayBefore: int = 100, setForeground: bool = True, matchType: str = 'GrayMatch', backgroundPic: bool = False):
112
112
  '''
113
- 等待图片显示或消失
113
+ 等待图像显示或消失
114
114
 
115
115
  Image.Wait(\'d:\\test.jpg\', target, anchorsElement=None, rect=None, accuracy=0.9, waitType="show", searchDelay=10000, continueOnError=False, delayAfter=0, delayBefore=100, setForeground=True, matchType=\'GrayMatch\', backgroundPic=False)
116
116
 
@@ -130,13 +130,13 @@ class Image:
130
130
  :return:None
131
131
  '''
132
132
  @staticmethod
133
- def ComColor(rgbHex, target: str | uia.Control, anchorsElement: uia.Control | None = None, searchDelay: int = 10000, continueOnError: bool = False, delayAfter: int = 0, delayBefore: int = 100, setForeground: bool = True, beginPosition: str = 'center', positionOffsetX: int = 0, positionOffsetY: int = 0, backgroundPic: bool = False):
133
+ def ComColor(color: str, target: str | uia.Control, anchorsElement: uia.Control | None = None, searchDelay: int = 10000, continueOnError: bool = False, delayAfter: int = 0, delayBefore: int = 100, setForeground: bool = True, beginPosition: str = 'center', positionOffsetX: int = 0, positionOffsetY: int = 0, backgroundPic: bool = False):
134
134
  '''
135
135
  目标内指定位置比色
136
136
 
137
137
  Image.ComColor(\'FF0000\', target, anchorsElement=None, searchDelay=10000, continueOnError=False, delayAfter=0, delayBefore=100, setForeground=True, beginPosition=\'center\', positionOffsetX=0, positionOffsetY=0, backgroundPic=False)
138
138
 
139
- :param rgbHex: 十六进制颜色,RGB色值,例如:"FF0000",支持偏色,如"FF0000-101010"
139
+ :param color:[必选参数]指定位置是否为此颜色,十六进制颜色,RGB色值,例如:"FF0000",支持偏色,如"FF0000-101010"
140
140
  :param target:[必选参数]tdRPA拾取器获取的目标元素特征字符串或uia目标元素对象
141
141
  :param anchorsElement:[可选参数]从哪个元素开始找,不传则从桌面顶级元素开始找(有值可提高查找速度)。默认None
142
142
  :param searchDelay:[可选参数]超时时间(毫秒)。默认10000
@@ -144,10 +144,10 @@ class Image:
144
144
  :param delayAfter:[可选参数]执行后延时(毫秒)。默认0
145
145
  :param delayBefore:[可选参数]执行前延时(毫秒)。默认100
146
146
  :param setForeground:[可选参数]激活窗口。默认True
147
- :param beginPosition:[可选参数]起始位置。中心:"center" 左上角:"topLeft" 右上角:"topRight" 左下角:"bottomLeft" 右下角:"bottomRight"。默认"center"
147
+ :param beginPosition:[可选参数]起始位置。center:中心, topLeft:左上角, topRight:右上角, bottomLeft:左下角, bottomRight:右下角。默认"center"
148
148
  :param positionOffsetX:[可选参数]横坐标偏移。默认0
149
149
  :param positionOffsetY:[可选参数]纵坐标偏移。默认0
150
- :param backgroundPic:[可选参数]是否后台识图片(图片需与查找范围在同一窗口)。True为后台识别图片,False为前台识别图片。默认False。
150
+ :param backgroundPic:[可选参数]是否后台识图片(指定位置的颜色与查找范围在同一窗口)。True为后台识别图片,False为前台识别图片。默认False。
151
151
  :return:匹配返回True,不匹配返回False
152
152
  '''
153
153
  @staticmethod
@@ -168,6 +168,48 @@ class Image:
168
168
  :param positionOffsetX:[可选参数]横坐标偏移。默认0
169
169
  :param positionOffsetY:[可选参数]纵坐标偏移。默认0
170
170
  :param backgroundPic:[可选参数]是否后台识图片(图片需与查找范围在同一窗口)。True为后台识别图片,False为前台识别图片。默认False。
171
- :return:返回颜色值(16进制的RGB字符)
171
+ :return:返回颜色值(16进制的RGB字符),如"FF0000"
172
+ '''
173
+ @staticmethod
174
+ def FindColor(colors: str, target: str | uia.Control, anchorsElement: uia.Control | None = None, rect: dict | None = None, searchDelay: int = 10000, continueOnError: bool = False, delayAfter: int = 0, delayBefore: int = 100, setForeground: bool = True, backgroundPic: bool = False, returnNum: str = 'first', relativeType: str = 'screen'):
175
+ '''
176
+ 查找颜色
177
+
178
+ Image.FindColor(\'FF0000\', target, anchorsElement=None, rect=None, searchDelay=10000, continueOnError=False, delayAfter=0, delayBefore=100, setForeground=True, backgroundPic=False, returnNum=\'first\', relativeType=\'screen\')
179
+
180
+ :param colors: [必选参数]需要查找的颜色值字符串,十六进制颜色,支持偏色,支持同时多个颜色,例如 "FF0000" 或 "FF0000-101010" 或 "FF0000-101010|0000FF-101010"
181
+ :param target:[必选参数]tdRPA拾取器获取的目标元素特征字符串或uia目标元素对象
182
+ :param anchorsElement:[可选参数]从哪个元素开始找,不传则从桌面顶级元素开始找(有值可提高查找速度)。默认None
183
+ :param rect:[可选参数]需要查找的范围,程序会在控件这个范围内进行颜色识别,如果范围传递为 None,则进行控件矩形区域范围内的颜色识别,如果范围传递为 {"x":10,"y":5,"width":200,"height":100},则进行控件矩形区域范围内以左上角向右偏移10像素、向下偏移5像素为起点,向右侧200,向下100的范围内的颜色识别。默认None
184
+ :param searchDelay:[可选参数]超时时间(毫秒)。默认10000
185
+ :param continueOnError:[可选参数]错误继续执行。默认False
186
+ :param delayAfter:[可选参数]执行后延时(毫秒)。默认0
187
+ :param delayBefore:[可选参数]执行前延时(毫秒)。默认100
188
+ :param setForeground:[可选参数]激活窗口。默认True
189
+ :param backgroundPic:[可选参数]是否后台识图片(颜色需与查找范围在同一窗口)。True为后台识别图片,False为前台识别图片。默认False。
190
+ :param returnNum:[可选参数]坐标返回数量。first:返回找到的第一个颜色坐标, all:返回找到的所有颜色坐标。默认first,查找顺序是从上到下,从左到右。
191
+ :param relativeType:[可选参数]查找坐标相对类型。screen:返回相对屏幕的坐标,以屏幕左上角0,0为坐标原点。 image:返回相对查找范围的坐标,以查找范围的左上角0,0为坐标原点。默认screen
192
+ :return:返回颜色的坐标,当returnNum为first时,返回如[50 100], 当returnNum为all时,返回如[[50 100],[50,101],[51,100]...], 找不到时返回None
193
+ '''
194
+ @staticmethod
195
+ def FindMultColor(colorDes: str, target: str | uia.Control, anchorsElement: uia.Control | None = None, rect: dict | None = None, accuracy: int | float = 1.0, searchDelay: int = 10000, continueOnError: bool = False, delayAfter: int = 0, delayBefore: int = 100, setForeground: bool = True, backgroundPic: bool = False, relativeType: str = 'screen'):
196
+ '''
197
+ 多点找色
198
+
199
+ Image.FindMultColor(colorDes, target, anchorsElement=None, rect=None, accuracy=1.0, searchDelay=10000, continueOnError=False, delayAfter=0, delayBefore=100, setForeground=True, backgroundPic=False, relativeType=\'screen\')
200
+
201
+ :param colorDes:[必选参数]多点颜色描述,如"40b7ff-101010,-16|-14|58c0ff-101010,-17|5|4ebbff-101010,17|-3|26adff-101010,17|15|42b7ff-101010", 解释:以40b7ff-101010颜色为锚点,符合向左偏移16像素,向上偏移14像素,且颜色符合58c0ff-101010,向...向...且颜色符合...等等。推荐使用<大漠综合工具>获取颜色描述
202
+ :param target:[必选参数]tdRPA拾取器获取的目标元素特征字符串或uia目标元素对象
203
+ :param anchorsElement:[可选参数]从哪个元素开始找,不传则从桌面顶级元素开始找(有值可提高查找速度)。默认None
204
+ :param rect:[可选参数]需要查找的范围,程序会在控件这个范围内进行多点找色,如果范围传递为 None,则进行控件矩形区域范围内的多点找色,如果范围传递为 {"x":10,"y":5,"width":200,"height":100},则进行控件矩形区域范围内以左上角向右偏移10像素、向下偏移5像素为起点,向右侧200,向下100的范围内的多点找色。默认None
205
+ :param accuracy:[可选参数]多点找色时使用的相似度,相似度范围从 0.5 - 1.0,表示 50% - 100% 相似。默认1.0
206
+ :param searchDelay:[可选参数]超时时间(毫秒)。默认10000
207
+ :param continueOnError:[可选参数]错误继续执行。默认False
208
+ :param delayAfter:[可选参数]执行后延时(毫秒)。默认0
209
+ :param delayBefore:[可选参数]执行前延时(毫秒)。默认100
210
+ :param setForeground:[可选参数]激活窗口。默认True
211
+ :param backgroundPic:[可选参数]是否后台识图片(颜色描述需与查找范围在同一窗口)。True为后台识别图片,False为前台识别图片。默认False。
212
+ :param relativeType:[可选参数]查找坐标相对类型。screen:返回相对屏幕的坐标,以屏幕左上角0,0为坐标原点。 image:返回相对查找范围的坐标,以查找范围的左上角0,0为坐标原点。默认screen
213
+ :return:返回找到的坐标,如{"x":int, "y":int}。找不到返回None
172
214
  '''
173
215
 
tdrpa/tdworker/_os.pyi CHANGED
@@ -21,7 +21,7 @@ class App:
21
21
  :return:进程存在返回True,不存在返回False
22
22
  """
23
23
  @staticmethod
24
- def Run(exePath, waitType: int = 0, showType: int = 1):
24
+ def Run(exePath, waitType: int = 0, showType: int = 1, mode: int = 0):
25
25
  """
26
26
  启动应用程序
27
27
 
@@ -30,6 +30,7 @@ class App:
30
30
  :param exePath:[必选参数]应用程序文件路径
31
31
  :param waitType:[可选参数]0:等待 1:等待应用程序准备好 2:等待应用程序执行到退出。默认0
32
32
  :param showType:[可选参数]程序启动后的显示样式(不一定生效) 0:隐藏 1:默认 3:最大化 6:最小化
33
+ :param mode:[可选参数]启动模式,0:常规模式启动, 1:增强模式启动。当常规模式启动后无法拾取元素时,可尝试增强模式启动。默认0
33
34
  :return:返回应用程序的PID
34
35
  """
35
36
  @staticmethod
tdrpa/tdworker/_sp.pyi ADDED
@@ -0,0 +1,21 @@
1
+ class PrintToScreen:
2
+ @staticmethod
3
+ def DrawText(msg: str = '', showSec: int = 0) -> None:
4
+ '''
5
+ 绘制屏幕中央正上方显示的红字
6
+
7
+ PrintToScreen.DrawText(\'开始工作\', showSec=0)
8
+
9
+ :param msg:[可选参数]文字内容,默认为""
10
+ :param showSec:[可选参数]显示秒数。0:一直显示到程序结束,大于0:显示的时间,单位是秒
11
+ :return:无
12
+ '''
13
+ @staticmethod
14
+ def CleanText() -> None:
15
+ """
16
+ 清除屏幕中央正上方显示的红字
17
+
18
+ PrintToScreen.CleanText()
19
+
20
+ :return:无
21
+ """
tdrpa/tdworker/_web.pyi CHANGED
@@ -14,7 +14,6 @@ class Web:
14
14
  :param isVisible:[可选参数]检查是否可见。默认True
15
15
  :return: bool
16
16
  """
17
-
18
17
  @staticmethod
19
18
  def Wait(tdstr: str, anchorsElement, waitType: str = 'show', searchDelay: int = 10000, continueOnError: bool = False, isVisible: bool = True) -> None:
20
19
  '''
@@ -30,7 +29,6 @@ class Web:
30
29
  :param isVisible:[可选参数]检查是否可见。默认True
31
30
  :return: None
32
31
  '''
33
-
34
32
  @staticmethod
35
33
  def GetParentElement(eh: ElementHandle) -> ElementHandle:
36
34
  """
@@ -41,7 +39,6 @@ class Web:
41
39
  :param eh: ElementHandle
42
40
  :return: ElementHandle
43
41
  """
44
-
45
42
  @staticmethod
46
43
  def GetNextSiblingElement(eh: ElementHandle) -> ElementHandle:
47
44
  """
@@ -52,7 +49,6 @@ class Web:
52
49
  :param eh: ElementHandle
53
50
  :return: ElementHandle
54
51
  """
55
-
56
52
  @staticmethod
57
53
  def GetPreviousSiblingElement(eh: ElementHandle) -> ElementHandle:
58
54
  """
@@ -63,7 +59,6 @@ class Web:
63
59
  :param eh: ElementHandle
64
60
  :return: ElementHandle
65
61
  """
66
-
67
62
  @staticmethod
68
63
  def GetChildrenElements(eh) -> list:
69
64
  """
@@ -74,7 +69,6 @@ class Web:
74
69
  :param eh: ElementHandle
75
70
  :return: list[ElementHandle, ElementHandle, ...]
76
71
  """
77
-
78
72
  @staticmethod
79
73
  def Click(target: str | ElementHandle, anchorsElement: Incomplete | None = None, position: Incomplete | None = None, delayTime: int = 10000) -> ElementHandle:
80
74
  """
@@ -88,7 +82,6 @@ class Web:
88
82
  :param delayTime: 超时(豪秒)。默认10000
89
83
  :return: ElementHandle
90
84
  """
91
-
92
85
  @staticmethod
93
86
  def Hover(target: str | ElementHandle, anchorsElement: Incomplete | None = None, position: Incomplete | None = None, delayTime: int = 10000) -> ElementHandle:
94
87
  """
@@ -102,7 +95,6 @@ class Web:
102
95
  :param delayTime: 超时(豪秒)。默认10000
103
96
  :return: ElementHandle
104
97
  """
105
-
106
98
  @staticmethod
107
99
  def Input(text, target, anchorsElement: Incomplete | None = None, delayTime: int = 10000) -> ElementHandle:
108
100
  """
@@ -116,7 +108,6 @@ class Web:
116
108
  :param delayTime: 超时(豪秒)。默认10000
117
109
  :return: ElementHandle
118
110
  """
119
-
120
111
  @staticmethod
121
112
  def ClickLinkOpenNewPage(eh, position: Incomplete | None = None, waitLoad: bool = False) -> Page:
122
113
  """
@@ -129,7 +120,6 @@ class Web:
129
120
  :param waitLoad: 是否等待新页面加载完毕。默认False
130
121
  :return: newPage
131
122
  """
132
-
133
123
  @staticmethod
134
124
  def FindWebElement(tdstr: str, anchorsElement, searchDelay: int = 10000, continueOnError: bool = False, isVisible: bool = True) -> ElementHandle:
135
125
  """
@@ -144,7 +134,6 @@ class Web:
144
134
  :param isVisible:检查是否可见。默认True
145
135
  :return: ElementHandle
146
136
  """
147
-
148
137
  @staticmethod
149
138
  def PwStart(port: int = 9222, magic: bool = True) -> Page:
150
139
  """
@@ -154,24 +143,23 @@ class Web:
154
143
 
155
144
  :return: firstPage
156
145
  """
157
-
158
146
  @staticmethod
159
- def OpenChrome(url: str = None, chromeExePath: str = None, isMaximize: bool = True, supportUia: bool = True, otherStartupParam: Incomplete | None = None, env_variables: Incomplete | None = None, delayTime: int = 30000) -> None:
147
+ def OpenChrome(url: str = None, chromeExePath: str = None, isMaximize: bool = True, supportUia: bool = True, userData: Incomplete | None = None, otherStartupParam: Incomplete | None = None, env_variables: Incomplete | None = None, delayTime: int = 30000) -> None:
160
148
  '''
161
149
  启动谷歌浏览器
162
150
 
163
- Web.OpenChrome(url="www.baidu.com", chromeExePath=None, isMaximize=True, supportUia=True, otherStartupParam=None, env_variables=None, delayTime=30000)
151
+ Web.OpenChrome(url="www.baidu.com", chromeExePath=None, isMaximize=True, supportUia=True, userData=None, otherStartupParam=None, env_variables=None, delayTime=30000)
164
152
 
165
153
  :param url:[可选参数]启动浏览器后打开的链接,字符串类型。默认None
166
154
  :param chromeExePath:[可选参数]谷歌浏览器可执行程序的绝对路径,字符串类型,填写None时会自动寻找本地安装的路径。默认None
167
155
  :param isMaximize:[可选参数]浏览器启动后是否最大化显示,选择True时最大化启动,选择False默认状态。默认True
168
156
  :param supportUia:[可选参数]是否支持uiautomatin,True支持,False不支持。默认True
157
+ :param userData:[可选参数]浏览器用户数据存放位置
169
158
  :param otherStartupParam:[可选参数]其他启动谷歌浏览器的参数,如:[\'--xxx\', \'--xxx\']。默认None
170
159
  :param env_variables:[可选参数]启动浏览器进程时附带的环境变量,如{"a": "abc"}
171
160
  :param delayTime: 浏览器进程加载超时(毫秒)。默认30000
172
161
  :return:None
173
162
  '''
174
-
175
163
  @staticmethod
176
164
  def ChromeProcessStatus() -> bool:
177
165
  """
@@ -181,7 +169,6 @@ class Web:
181
169
 
182
170
  :return:返回True时,表示浏览器仍在运行,返回False时,表示浏览器非运行状态
183
171
  """
184
-
185
172
  @staticmethod
186
173
  def TopMost() -> None:
187
174
  """
@@ -191,35 +178,31 @@ class Web:
191
178
 
192
179
  """
193
180
 
194
-
195
181
  class ChromePlugin:
196
182
  @staticmethod
197
- def Open(url: Incomplete | None = None, clearChrome: bool = True, userData: Incomplete | None = None) -> None:
183
+ def Open(url: str = None, clearChrome: bool = True, userData: str = None, otherStartupParam: list = None):
198
184
  """
199
185
  启动新的浏览器
200
186
 
201
- ChromePlugin.Open(url='www.baidu.com', clearChrome=True, userData=None)
187
+ ChromePlugin.Open(url='www.baidu.com', clearChrome=True, userData=None, otherStartupParam=None)
202
188
 
203
189
  """
204
-
205
190
  @staticmethod
206
- def JS(js_str, returnList: bool = False):
191
+ def JS(js_str: str, returnList: bool = False):
207
192
  """
208
193
  执行JS注入
209
194
 
210
195
  ChromePlugin.JS(js_str, returnList=False)
211
196
 
212
197
  """
213
-
214
198
  @staticmethod
215
- def Close(tryClose: int = 3, userData: Incomplete | None = None) -> None:
199
+ def Close(tryClose: int = 3, userData: str = None):
216
200
  """
217
201
  关闭chrome
218
202
 
219
203
  ChromePlugin.Close(tryClose=3, userData=None)
220
204
 
221
205
  """
222
-
223
206
  @staticmethod
224
207
  def WaitLoading(delayTime: int = 60000) -> None:
225
208
  """
@@ -228,7 +211,6 @@ class ChromePlugin:
228
211
  ChromePlugin.WaitLoading(delayTime=60000)
229
212
 
230
213
  """
231
-
232
214
  @staticmethod
233
215
  def Reload() -> None:
234
216
  """
@@ -237,12 +219,11 @@ class ChromePlugin:
237
219
  ChromePlugin.Reload()
238
220
 
239
221
  """
240
-
241
222
  @staticmethod
242
223
  def GoUrl(url, isWaitLoading: bool = True, delayTime: int = 60000) -> None:
243
224
  """
244
225
  跳转页面
245
226
 
246
- ChromePlugin.GoUrl('https://www.baidu.com', isWaitLoading=True, delayTime=60000)
227
+ ChromePlugin.GoUrl('www.baidu.com', isWaitLoading=True, delayTime=60000)
247
228
 
248
229
  """
Binary file
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tdrpa.tdworker
3
- Version: 1.1.9.3
3
+ Version: 1.1.10.3
4
4
  Summary: tdworker for tdrpa developers. supports python3.8+, windows x64
5
- Home-page: https://www.showdoc.com.cn/tdworker
5
+ Home-page: https://gitee.com/tdworker/command/wikis/pages
6
6
  Author: vx:RPA_CREATOR
7
- Author-email: oldplayerliu@gmail.com
7
+ Author-email: virtualpartner@qq.com
8
8
  License: Apache 2.0
9
- Keywords: rpa,RPA,tdRPA,tdworker,rpaworker,worker,uiautomation,uia,creator,windows,python,bot,robot,aigc,ai
9
+ Keywords: rpa,RPA,tdRPA,tdworker,rpaworker,worker,uiautomation,uia,creator,windows,python,bot,robot,aigc,ai,按键精灵
10
10
  Platform: Windows Only
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Operating System :: Microsoft :: Windows
@@ -20,6 +20,9 @@ Requires-Dist: mss
20
20
  Requires-Dist: opencv-python
21
21
  Requires-Dist: numpy
22
22
  Requires-Dist: pyzmq
23
+ Requires-Dist: pillow
24
+ Requires-Dist: netifaces
25
+ Requires-Dist: requests
23
26
 
24
- tdworker for tdrpa developers. supports python3.8+, windows x64
27
+ tdworker for rpa developers. supports python3.8+, windows x64
25
28
 
@@ -1,4 +1,4 @@
1
- tdrpa/tdworker.cp311-win_amd64.pyd,sha256=uGVm5fLgVu5BWxcrYQjzmJpR82qOcJwVFQCSIcs5rWQ,3102208
1
+ tdrpa/tdworker.cp311-win_amd64.pyd,sha256=U1wrkFrrGR1pPYDis-GF5b6f7Rfkq8D4mcW6QRvCEQc,3418624
2
2
  tdrpa/_tdxlwings/__init__.py,sha256=mxmqGWQ7xFb6e1GqkKEBfMQtZ8YyO4kAcPOvcJnD_2k,4424
3
3
  tdrpa/_tdxlwings/_win32patch.py,sha256=_IxTfvj663osTXh8b1S-A_N4PthS9gEWFLjpY4V0iUA,3443
4
4
  tdrpa/_tdxlwings/_xlmac.py,sha256=23OusKchbqglFi1s909tbB9fIwoFj6Yny4GiYrsnx5s,68521
@@ -82,16 +82,18 @@ tdrpa/_tdxlwings/quickstart_fastapi/requirements.txt,sha256=y3pL1maFFVyROPGnd2YD
82
82
  tdrpa/_tdxlwings/rest/__init__.py,sha256=Dk7m0qKA9yIswBm_66Vw1MHmiiYRmqZ3egAUIMjUjts,41
83
83
  tdrpa/_tdxlwings/rest/api.py,sha256=yfv1VkTpjQOzxLh4aMnZQsh8wTRHg34KkyipKDa_w4g,12885
84
84
  tdrpa/_tdxlwings/rest/serializers.py,sha256=ztMzL_EgbhAb3rSbfWFE2A9uyOykoZbkSoDHPeKXzGg,2885
85
- tdrpa/tdworker/__init__.pyi,sha256=sAcLwBiVkIKdc5pfnTOiITcKAJDaSnlVh0Jr4ibFiwI,324
85
+ tdrpa/tdworker/__init__.pyi,sha256=UjQLwfulzOjeFwgR9y5GQFf6I08XPWFy0a220XCFA_E,416
86
+ tdrpa/tdworker/_clip.pyi,sha256=Y0FB0DHj8lLPC6uhfc8BOjpyfvhBZagrcm4hha7f_ss,1381
86
87
  tdrpa/tdworker/_excel.pyi,sha256=Kc684QBhV4p2lvj9y1K5Kmo2r0t492BzGN7Q5DRGVR4,61904
87
- tdrpa/tdworker/_img.pyi,sha256=TJ6VkHoqSUUkS6Sqk9YBcLam1ioJ7NUudYZ4AQHsZJ4,19944
88
- tdrpa/tdworker/_os.pyi,sha256=i1_UFNSWorh_r--TENchT_94bsMchMj8WyF3BgVAeEk,2078
88
+ tdrpa/tdworker/_img.pyi,sha256=PydH_-GkBskGWE4ZA39dzL9qBaELNIhz7z95DPXTjck,25542
89
+ tdrpa/tdworker/_os.pyi,sha256=cK2UJk6pM8piWA2Mkx3j1v0i5vYlttaiGvm62yaPhzc,2274
90
+ tdrpa/tdworker/_sp.pyi,sha256=OwKyMzbxhTvjXcHBx-w_6et1hdlJTPyHMpC8DHjWW4Q,635
89
91
  tdrpa/tdworker/_w.pyi,sha256=ZwyIk5cLv8Rd0KpshdZSJ9EIN0XYMHYCARw31pvrzys,5229
90
- tdrpa/tdworker/_web.pyi,sha256=vPhdLS73EbH6ymgwmEZPGlJEaErxx0GXucUjd2_oRnw,8363
92
+ tdrpa/tdworker/_web.pyi,sha256=aVjdY9P4_FBGEklru9V6gZ2CVMu5dyO1ScKaW-AkX3s,8442
91
93
  tdrpa/tdworker/_winE.pyi,sha256=3EjsBX3ryah9vYSmilseM75mYzqM7jsYcPd-Tzz8cM0,18696
92
94
  tdrpa/tdworker/_winK.pyi,sha256=lH1_smTsfHQVDaREOy37cb1Ied8zlKo6Q20oc1GXBGc,5407
93
95
  tdrpa/tdworker/_winM.pyi,sha256=EeaY667JbYHNL7mTE2-pHSA-PMFB5hbu1Mz4Vjq1Q14,7936
94
- tdrpa.tdworker-1.1.9.3.dist-info/METADATA,sha256=qgKaEMJE4bOqomzfLfDd-IrGpaW5lhQLNC9Lvr4lLww,826
95
- tdrpa.tdworker-1.1.9.3.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
96
- tdrpa.tdworker-1.1.9.3.dist-info/top_level.txt,sha256=S9UoqmC_cyGqKbGsBkLQPEeQLbDrWD0SRwbxPpQpyyU,6
97
- tdrpa.tdworker-1.1.9.3.dist-info/RECORD,,
96
+ tdrpa.tdworker-1.1.10.3.dist-info/METADATA,sha256=Jwohf8nWXM2WPLwTl5ch1KZlpFXrBn5g9gpRSVrwH04,922
97
+ tdrpa.tdworker-1.1.10.3.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
98
+ tdrpa.tdworker-1.1.10.3.dist-info/top_level.txt,sha256=S9UoqmC_cyGqKbGsBkLQPEeQLbDrWD0SRwbxPpQpyyU,6
99
+ tdrpa.tdworker-1.1.10.3.dist-info/RECORD,,