wasdk-Microsoft.Windows.AI.MachineLearning 1.8.250702007.dev4__cp313-cp313-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.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: wasdk-Microsoft.Windows.AI.MachineLearning
3
+ Version: 1.8.250702007.dev4
4
+ Summary: Python projection of Windows Runtime (WinRT) APIs
5
+ License: MIT
6
+ Project-URL: Documentation, https://pywinrt.readthedocs.io
7
+ Project-URL: Repository, https://github.com/pywinrt/pywinrt
8
+ Project-URL: Changelog, https://github.com/pywinrt/pywinrt/blob/main/CHANGELOG.md
9
+ Classifier: Operating System :: Microsoft :: Windows
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: Implementation :: CPython
12
+ Classifier: Intended Audience :: Developers
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ Requires-Dist: winrt-runtime~=3.2.1.0
16
+ Provides-Extra: all
17
+ Requires-Dist: winrt-Windows.Foundation[all]~=3.2.1.0; extra == "all"
18
+ Requires-Dist: winrt-Windows.Foundation.Collections[all]~=3.2.1.0; extra == "all"
19
+
20
+ <!-- warning: Please don't edit this file. It was automatically generated. -->
21
+
22
+ # winui3-Microsoft.Windows.AI.MachineLearning
23
+
24
+ **IMPORTANT**: Packages in the `winui3-*` namespace cannot be used without the
25
+ Windows App Runtime. This has to be installed manually by the end user. Read the
26
+ [PyWinRT winui3 documentation](https://pywinrt.readthedocs.io/en/latest/api/winui3/index.html)
27
+ for more information.
28
+
29
+ Windows Runtime (WinRT) APIs for for the `winui3-Microsoft.Windows.AI.MachineLearning` namespace.
30
+
31
+ This package provides the `winui3.microsoft.windows.ai.machinelearning` module.
@@ -0,0 +1,8 @@
1
+ winui3/_winui3_microsoft_windows_ai_machinelearning.cp313-win_amd64.pyd,sha256=M__tut4_w1Opprl8Ur1wyGb3dS0OpA-U7hhE1ELcud8,114176
2
+ winui3/_winui3_microsoft_windows_ai_machinelearning.pyi,sha256=6rlJi0jHwnzvCqU0iZ7YPVJeELhoAfuTVtFEzYDEaMs,3686
3
+ winui3/microsoft/windows/ai/machinelearning/__init__.py,sha256=dRzbyJV1fktkhnU2U4cwHu8Af3MKT1GANwDc8hcpj2c,664
4
+ winui3/microsoft/windows/ai/machinelearning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ wasdk_microsoft_windows_ai_machinelearning-1.8.250702007.dev4.dist-info/METADATA,sha256=adFWsQI7pbFZnb6R6Jw1CeWR_QRMEj9mrT0-BGr52gI,1478
6
+ wasdk_microsoft_windows_ai_machinelearning-1.8.250702007.dev4.dist-info/WHEEL,sha256=qV0EIPljj1XC_vuSatRWjn02nZIz3N1t8jsZz7HBr2U,101
7
+ wasdk_microsoft_windows_ai_machinelearning-1.8.250702007.dev4.dist-info/top_level.txt,sha256=YY_y62osaHdBPTelBwwbROiPLyZu5V2gl62jTbJANfA,7
8
+ wasdk_microsoft_windows_ai_machinelearning-1.8.250702007.dev4.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
5
+
@@ -0,0 +1,60 @@
1
+ # WARNING: Please don't edit this file. It was generated by Python/WinRT v0.0.0
2
+
3
+ import datetime
4
+ import sys
5
+ import types
6
+ import typing
7
+ import uuid as _uuid
8
+ from builtins import property as _property
9
+
10
+ import winrt._winrt
11
+ import winrt.system
12
+ import winrt.windows.foundation as windows_foundation
13
+ import winrt.windows.foundation.collections as windows_foundation_collections
14
+
15
+ from winui3.microsoft.windows.ai.machinelearning import ExecutionProviderReadyResultState, ExecutionProviderReadyState
16
+
17
+ Self = typing.TypeVar('Self')
18
+
19
+ @typing.final
20
+ class ExecutionProvider(winrt.system.Object):
21
+ # Windows.Foundation.IAsyncOperationWithProgress`2<Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult,System.Double> Microsoft.Windows.AI.MachineLearning.ExecutionProvider::EnsureReadyAsync()
22
+ def ensure_ready_async(self) -> windows_foundation.IAsyncOperationWithProgress[ExecutionProviderReadyResult, winrt.system.Double]: ...
23
+ # System.Boolean Microsoft.Windows.AI.MachineLearning.ExecutionProvider::TryRegister()
24
+ def try_register(self) -> bool: ...
25
+ # System.String Microsoft.Windows.AI.MachineLearning.ExecutionProvider::get_LibraryPath()
26
+ @_property
27
+ def library_path(self) -> str: ...
28
+ # System.String Microsoft.Windows.AI.MachineLearning.ExecutionProvider::get_Name()
29
+ @_property
30
+ def name(self) -> str: ...
31
+ # Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyState Microsoft.Windows.AI.MachineLearning.ExecutionProvider::get_ReadyState()
32
+ @_property
33
+ def ready_state(self) -> ExecutionProviderReadyState: ...
34
+
35
+ @typing.final
36
+ class ExecutionProviderCatalog_Static(winrt._winrt.IInspectable_Static):
37
+ # Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog::GetDefault()
38
+ def get_default(cls) -> ExecutionProviderCatalog: ...
39
+
40
+ @typing.final
41
+ class ExecutionProviderCatalog(winrt.system.Object, metaclass=ExecutionProviderCatalog_Static):
42
+ # Windows.Foundation.IAsyncOperationWithProgress`2<Windows.Foundation.Collections.IVector`1<Microsoft.Windows.AI.MachineLearning.ExecutionProvider>,System.Double> Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog::EnsureAndRegisterAllAsync()
43
+ def ensure_and_register_all_async(self) -> windows_foundation.IAsyncOperationWithProgress[typing.MutableSequence[ExecutionProvider], winrt.system.Double]: ...
44
+ # Microsoft.Windows.AI.MachineLearning.ExecutionProvider[] Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog::FindAllProviders()
45
+ def find_all_providers(self) -> winrt.system.Array[ExecutionProvider]: ...
46
+ # Windows.Foundation.IAsyncOperationWithProgress`2<Windows.Foundation.Collections.IVector`1<Microsoft.Windows.AI.MachineLearning.ExecutionProvider>,System.Double> Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog::RegisterAllAsync()
47
+ def register_all_async(self) -> windows_foundation.IAsyncOperationWithProgress[typing.MutableSequence[ExecutionProvider], winrt.system.Double]: ...
48
+
49
+ @typing.final
50
+ class ExecutionProviderReadyResult(winrt.system.Object):
51
+ # System.String Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult::get_DiagnosticText()
52
+ @_property
53
+ def diagnostic_text(self) -> str: ...
54
+ # Windows.Foundation.HResult Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult::get_ExtendedError()
55
+ @_property
56
+ def extended_error(self) -> windows_foundation.HResult: ...
57
+ # Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResultState Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult::get_Status()
58
+ @_property
59
+ def status(self) -> ExecutionProviderReadyResultState: ...
60
+
@@ -0,0 +1,29 @@
1
+ # WARNING: Please don't edit this file. It was generated by Python/WinRT v0.0.0
2
+
3
+ import enum
4
+
5
+ import winrt.system
6
+ from winui3._winui3_microsoft_windows_ai_machinelearning import (
7
+ ExecutionProvider,
8
+ ExecutionProviderCatalog,
9
+ ExecutionProviderReadyResult,
10
+ )
11
+
12
+ __all__ = [
13
+ "ExecutionProviderReadyResultState",
14
+ "ExecutionProviderReadyState",
15
+ "ExecutionProvider",
16
+ "ExecutionProviderCatalog",
17
+ "ExecutionProviderReadyResult",
18
+ ]
19
+
20
+ class ExecutionProviderReadyResultState(enum.IntEnum):
21
+ IN_PROGRESS = 0
22
+ SUCCESS = 1
23
+ FAILURE = 2
24
+
25
+ class ExecutionProviderReadyState(enum.IntEnum):
26
+ READY = 0
27
+ NOT_READY = 1
28
+ NOT_PRESENT = 2
29
+
File without changes