win32more-Microsoft.WindowsAppSDK 0.6.1.8.250907003__py2.py3-none-any.whl → 0.6.1.8.251003001__py2.py3-none-any.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.

Potentially problematic release.


This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.

@@ -0,0 +1,122 @@
1
+ from __future__ import annotations
2
+ from win32more.winrt.prelude import *
3
+ import win32more.Microsoft.Windows.AI.MachineLearning
4
+ import win32more.Windows.ApplicationModel
5
+ import win32more.Windows.Foundation
6
+ import win32more.Windows.Foundation.Collections
7
+ class ExecutionProvider(ComPtr):
8
+ extends: IInspectable
9
+ default_interface: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider
10
+ _classid_ = 'Microsoft.Windows.AI.MachineLearning.ExecutionProvider'
11
+ @winrt_mixinmethod
12
+ def get_Name(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> WinRT_String: ...
13
+ @winrt_mixinmethod
14
+ def get_LibraryPath(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> WinRT_String: ...
15
+ @winrt_mixinmethod
16
+ def get_PackageId(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> win32more.Windows.ApplicationModel.PackageId: ...
17
+ @winrt_mixinmethod
18
+ def get_ReadyState(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyState: ...
19
+ @winrt_mixinmethod
20
+ def get_Certification(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderCertification: ...
21
+ @winrt_mixinmethod
22
+ def EnsureReadyAsync(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult, Double]: ...
23
+ @winrt_mixinmethod
24
+ def TryRegister(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> Boolean: ...
25
+ Certification = property(get_Certification, None)
26
+ LibraryPath = property(get_LibraryPath, None)
27
+ Name = property(get_Name, None)
28
+ PackageId = property(get_PackageId, None)
29
+ ReadyState = property(get_ReadyState, None)
30
+ class ExecutionProviderCatalog(ComPtr):
31
+ extends: IInspectable
32
+ default_interface: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog
33
+ _classid_ = 'Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog'
34
+ @winrt_mixinmethod
35
+ def FindAllProviders(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog) -> ReceiveArray[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider]: ...
36
+ @winrt_mixinmethod
37
+ def EnsureAndRegisterCertifiedAsync(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider], Double]: ...
38
+ @winrt_mixinmethod
39
+ def RegisterCertifiedAsync(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider], Double]: ...
40
+ @winrt_classmethod
41
+ def GetDefault(cls: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalogStatics) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog: ...
42
+ class ExecutionProviderCertification(Enum, Int32):
43
+ Unknown = 0
44
+ Certified = 1
45
+ Uncertified = 2
46
+ class ExecutionProviderReadyResult(ComPtr):
47
+ extends: IInspectable
48
+ default_interface: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult
49
+ _classid_ = 'Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult'
50
+ @winrt_mixinmethod
51
+ def get_Status(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResultState: ...
52
+ @winrt_mixinmethod
53
+ def get_ExtendedError(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult) -> win32more.Windows.Foundation.HResult: ...
54
+ @winrt_mixinmethod
55
+ def get_DiagnosticText(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult) -> WinRT_String: ...
56
+ DiagnosticText = property(get_DiagnosticText, None)
57
+ ExtendedError = property(get_ExtendedError, None)
58
+ Status = property(get_Status, None)
59
+ class ExecutionProviderReadyResultState(Enum, Int32):
60
+ InProgress = 0
61
+ Success = 1
62
+ Failure = 2
63
+ class ExecutionProviderReadyState(Enum, Int32):
64
+ Ready = 0
65
+ NotReady = 1
66
+ NotPresent = 2
67
+ class IExecutionProvider(ComPtr):
68
+ extends: IInspectable
69
+ _classid_ = 'Microsoft.Windows.AI.MachineLearning.IExecutionProvider'
70
+ _iid_ = Guid('{98356468-cf23-504f-b29c-9347781925ff}')
71
+ @winrt_commethod(6)
72
+ def get_Name(self) -> WinRT_String: ...
73
+ @winrt_commethod(7)
74
+ def get_LibraryPath(self) -> WinRT_String: ...
75
+ @winrt_commethod(8)
76
+ def get_PackageId(self) -> win32more.Windows.ApplicationModel.PackageId: ...
77
+ @winrt_commethod(9)
78
+ def get_ReadyState(self) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyState: ...
79
+ @winrt_commethod(10)
80
+ def get_Certification(self) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderCertification: ...
81
+ @winrt_commethod(11)
82
+ def EnsureReadyAsync(self) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult, Double]: ...
83
+ @winrt_commethod(12)
84
+ def TryRegister(self) -> Boolean: ...
85
+ Certification = property(get_Certification, None)
86
+ LibraryPath = property(get_LibraryPath, None)
87
+ Name = property(get_Name, None)
88
+ PackageId = property(get_PackageId, None)
89
+ ReadyState = property(get_ReadyState, None)
90
+ class IExecutionProviderCatalog(ComPtr):
91
+ extends: IInspectable
92
+ _classid_ = 'Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog'
93
+ _iid_ = Guid('{aa9bfe14-2222-5921-8002-4d2a205ea03c}')
94
+ @winrt_commethod(6)
95
+ def FindAllProviders(self) -> ReceiveArray[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider]: ...
96
+ @winrt_commethod(7)
97
+ def EnsureAndRegisterCertifiedAsync(self) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider], Double]: ...
98
+ @winrt_commethod(8)
99
+ def RegisterCertifiedAsync(self) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider], Double]: ...
100
+ class IExecutionProviderCatalogStatics(ComPtr):
101
+ extends: IInspectable
102
+ _classid_ = 'Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalogStatics'
103
+ _iid_ = Guid('{550def98-2611-5433-afb8-43673b610848}')
104
+ @winrt_commethod(6)
105
+ def GetDefault(self) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog: ...
106
+ class IExecutionProviderReadyResult(ComPtr):
107
+ extends: IInspectable
108
+ _classid_ = 'Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult'
109
+ _iid_ = Guid('{91c1724d-93c7-5284-adbe-ba2bd7be7c79}')
110
+ @winrt_commethod(6)
111
+ def get_Status(self) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResultState: ...
112
+ @winrt_commethod(7)
113
+ def get_ExtendedError(self) -> win32more.Windows.Foundation.HResult: ...
114
+ @winrt_commethod(8)
115
+ def get_DiagnosticText(self) -> WinRT_String: ...
116
+ DiagnosticText = property(get_DiagnosticText, None)
117
+ ExtendedError = property(get_ExtendedError, None)
118
+ Status = property(get_Status, None)
119
+ MachineLearningContract: UInt32 = 131072
120
+
121
+
122
+ make_ready(__name__)
@@ -114,6 +114,38 @@ class ILanguageModel(ComPtr):
114
114
  extends: IInspectable
115
115
  _classid_ = 'Microsoft.Windows.AI.Text.ILanguageModel'
116
116
  _iid_ = Guid('{6331c629-8c86-5bfe-8c4e-9ca5573cc14b}')
117
+ class ILanguageModel2(ComPtr):
118
+ extends: IInspectable
119
+ _classid_ = 'Microsoft.Windows.AI.Text.ILanguageModel2'
120
+ _iid_ = Guid('{653b714e-f9b3-51cb-954f-5ea58f63ab89}')
121
+ @winrt_commethod(6)
122
+ def GenerateResponseAsync(self, prompt: WinRT_String) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
123
+ @winrt_commethod(7)
124
+ def GenerateResponseAsync2(self, prompt: WinRT_String, options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
125
+ @winrt_commethod(8)
126
+ def GenerateResponseAsync3(self, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, prompt: WinRT_String, options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
127
+ @winrt_commethod(9)
128
+ def GenerateResponseFromEmbeddingsAsync(self, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector]) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
129
+ @winrt_commethod(10)
130
+ def GenerateResponseFromEmbeddingsAsync2(self, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector], options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
131
+ @winrt_commethod(11)
132
+ def GenerateResponseFromEmbeddingsAsync3(self, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector], options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
133
+ @winrt_commethod(12)
134
+ def GenerateEmbeddingVectors(self, prompt: WinRT_String) -> win32more.Microsoft.Windows.AI.Text.LanguageModelEmbeddingVectorResult: ...
135
+ @winrt_commethod(13)
136
+ def GenerateEmbeddingVectors2(self, prompt: WinRT_String, contentFilterOptions: win32more.Microsoft.Windows.AI.ContentSafety.ContentFilterOptions) -> win32more.Microsoft.Windows.AI.Text.LanguageModelEmbeddingVectorResult: ...
137
+ @winrt_commethod(14)
138
+ def GetUsablePromptLength(self, prompt: WinRT_String) -> UInt64: ...
139
+ @winrt_commethod(15)
140
+ def GetUsablePromptLength2(self, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, prompt: WinRT_String) -> UInt64: ...
141
+ @winrt_commethod(16)
142
+ def GetVectorSpaceId(self) -> Guid: ...
143
+ @winrt_commethod(17)
144
+ def CreateContext(self) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
145
+ @winrt_commethod(18)
146
+ def CreateContext2(self, systemPrompt: WinRT_String) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
147
+ @winrt_commethod(19)
148
+ def CreateContext3(self, systemPrompt: WinRT_String, contentFilterOptions: win32more.Microsoft.Windows.AI.ContentSafety.ContentFilterOptions) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
117
149
  class ILanguageModelContext(ComPtr):
118
150
  extends: IInspectable
119
151
  _classid_ = 'Microsoft.Windows.AI.Text.ILanguageModelContext'
@@ -267,6 +299,34 @@ class LanguageModel(ComPtr):
267
299
  default_interface: win32more.Microsoft.Windows.AI.Text.ILanguageModel
268
300
  _classid_ = 'Microsoft.Windows.AI.Text.LanguageModel'
269
301
  @winrt_mixinmethod
302
+ def GenerateResponseAsync(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: WinRT_String) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
303
+ @winrt_mixinmethod
304
+ def GenerateResponseAsync2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: WinRT_String, options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
305
+ @winrt_mixinmethod
306
+ def GenerateResponseAsync3(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, prompt: WinRT_String, options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
307
+ @winrt_mixinmethod
308
+ def GenerateResponseFromEmbeddingsAsync(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector]) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
309
+ @winrt_mixinmethod
310
+ def GenerateResponseFromEmbeddingsAsync2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector], options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
311
+ @winrt_mixinmethod
312
+ def GenerateResponseFromEmbeddingsAsync3(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector], options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, WinRT_String]: ...
313
+ @winrt_mixinmethod
314
+ def GenerateEmbeddingVectors(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: WinRT_String) -> win32more.Microsoft.Windows.AI.Text.LanguageModelEmbeddingVectorResult: ...
315
+ @winrt_mixinmethod
316
+ def GenerateEmbeddingVectors2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: WinRT_String, contentFilterOptions: win32more.Microsoft.Windows.AI.ContentSafety.ContentFilterOptions) -> win32more.Microsoft.Windows.AI.Text.LanguageModelEmbeddingVectorResult: ...
317
+ @winrt_mixinmethod
318
+ def GetUsablePromptLength(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: WinRT_String) -> UInt64: ...
319
+ @winrt_mixinmethod
320
+ def GetUsablePromptLength2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, prompt: WinRT_String) -> UInt64: ...
321
+ @winrt_mixinmethod
322
+ def GetVectorSpaceId(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2) -> Guid: ...
323
+ @winrt_mixinmethod
324
+ def CreateContext(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
325
+ @winrt_mixinmethod
326
+ def CreateContext2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, systemPrompt: WinRT_String) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
327
+ @winrt_mixinmethod
328
+ def CreateContext3(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, systemPrompt: WinRT_String, contentFilterOptions: win32more.Microsoft.Windows.AI.ContentSafety.ContentFilterOptions) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
329
+ @winrt_mixinmethod
270
330
  def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
271
331
  @winrt_classmethod
272
332
  def GetReadyState(cls: win32more.Microsoft.Windows.AI.Text.ILanguageModelStatics) -> win32more.Microsoft.Windows.AI.AIFeatureReadyState: ...
@@ -1,3 +1,3 @@
1
1
  WINDOWSAPPSDK_RELEASE_MAJORMINOR = 0x00010008
2
2
  WINDOWSAPPSDK_RELEASE_VERSION_SHORTTAG_W = ''
3
- WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x1F40026801300000
3
+ WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x1F40028200770000
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: win32more-Microsoft.WindowsAppSDK
3
- Version: 0.6.1.8.250907003
3
+ Version: 0.6.1.8.251003001
4
4
  License-File: LICENSE (Microsoft.WindowsAppSDK).txt
5
5
  Requires-Dist: win32more-microsoft-web-webview2<0.7,>=0.6.1.0.3179.45
6
6
  Requires-Dist: win32more==0.6.*
@@ -46,7 +46,8 @@ win32more/Microsoft/Windows/AI/__init__.py,sha256=RRJ4SF5yl0h3aVsMmD1snfZp7kJYla
46
46
  win32more/Microsoft/Windows/AI/ContentSafety/__init__.py,sha256=c1eVwgUOB2TFaUxUOpvokESEFEL2JKTwJkpF8ww591c,14331
47
47
  win32more/Microsoft/Windows/AI/Foundation/__init__.py,sha256=U31CdOMucSoanrPjffb54W5yjfrgW1mEtdfO1er_QO8,2319
48
48
  win32more/Microsoft/Windows/AI/Imaging/__init__.py,sha256=2uz8BmFv6dsPZd1057eCsG_tvjCbvgQuB_mQuTuC4h8,25809
49
- win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=QSgtiqc9JMidCgD1M2dP9HNgu29h6kHfT6Uxug_QUDY,27039
49
+ win32more/Microsoft/Windows/AI/MachineLearning/__init__.py,sha256=wSrI1QSmdPVU3Z7vBKnqJjdstjyk9NrkVIeFhYqdTOA,7850
50
+ win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=GDIL5NJFEitHPi_ckhkMsPlHFet_WmQGcUQw3GaNQnk,34749
50
51
  win32more/Microsoft/Windows/AppLifecycle/__init__.py,sha256=HMKTbKGoWfTfA0cyqA6_mcosViTmpklmpwiKWgok46w,10183
51
52
  win32more/Microsoft/Windows/AppNotifications/__init__.py,sha256=tZCBxF_LI0Am2HeKABub75eIeORYZ94Zi_hnCVAh174,21474
52
53
  win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py,sha256=XutDaU0tB0KsbeGVIiU48gRlui1cNHzer3vmMHy-KWM,44205
@@ -71,14 +72,14 @@ win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=2dI_Red5_
71
72
  win32more/Microsoft/Windows/Widgets/Notifications/__init__.py,sha256=NWMyMMYXv845dIRW2MnlnXBfOlz6nc2JaxuC-S9Ab_g,12572
72
73
  win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=wwvQbBn8lovXWtpiLVauK_WJThmmGcicmmW7eIB1ROw,32409
73
74
  win32more/Microsoft/Windows/Workloads/__init__.py,sha256=6jbfkZ9ZAvZmVRIJWVGlC3bNFW1QVu46l7njIH1F5fA,280
74
- win32more/appsdk/versioninfo.py,sha256=q4YIexEqyEoDVW9SNyaFl54WrJCp0EwjoVlV2zBPxCc,149
75
+ win32more/appsdk/versioninfo.py,sha256=WlBNBS6fta_qUF3ctTxdQmXuJLuBD-CtVLI6Kq8Ekzo,149
75
76
  win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=7yJrrfq_O6St__WbgvAXLS9cvoRXdQ61zp0yJYMqFHE,81952
76
77
  win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=flQneEX8KbD7wlND_w-DxhJVGoGhIgMnhze4In1WPIY,392736
77
78
  win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=pzKgoH87ZG8qYfehDCFSnn5H7yqgSqNiDc0xC0jdomE,87608
78
79
  win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=DxeBwGgirYV4J-H38GBJqWhscZCMmfD_Lnh7apky5mU,399928
79
80
  win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=nV79iCGYjBe3NuPZNUeGsHxfOE73-VUA3t4tkVIHpHY,65576
80
81
  win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=onG0CPBUkJXSlPGngLZB1Y7SBdxxgPjNP6mT_th7X_k,351272
81
- win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info/METADATA,sha256=UwQviMXrVTQ8qer_sxiwWwebunvEmPMC8E7-c-ic3CA,243
82
- win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
83
- win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=WxHmNHdW5A_gJ0vAjJf4kgG5Tw1QGBoJoA8fR0CEBQE,12637
84
- win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info/RECORD,,
82
+ win32more_microsoft_windowsappsdk-0.6.1.8.251003001.dist-info/METADATA,sha256=QSTFRVvKIO8l2zWLQ3TofDO5nSe2bLODLM7t3anyPP8,243
83
+ win32more_microsoft_windowsappsdk-0.6.1.8.251003001.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
84
+ win32more_microsoft_windowsappsdk-0.6.1.8.251003001.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=WxHmNHdW5A_gJ0vAjJf4kgG5Tw1QGBoJoA8fR0CEBQE,12637
85
+ win32more_microsoft_windowsappsdk-0.6.1.8.251003001.dist-info/RECORD,,