pyobjc-framework-CoreAudioKit 12.0__cp314-cp314t-macosx_10_15_universal2.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,38 @@
1
+ """
2
+ Python mapping for the CoreAudioKit framework.
3
+
4
+ This module does not contain docstrings for the wrapped code, check Apple's
5
+ documentation for details on how to use these functions and classes.
6
+ """
7
+
8
+
9
+ def _setup():
10
+ import sys
11
+
12
+ import CoreAudio
13
+ import Foundation
14
+ import objc
15
+ from . import _metadata
16
+
17
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
18
+ name="CoreAudioKit",
19
+ frameworkIdentifier="com.apple.audio.CoreAudioKit",
20
+ frameworkPath=objc.pathForFramework(
21
+ "/System/Library/Frameworks/CoreAudioKit.framework"
22
+ ),
23
+ globals_dict=globals(),
24
+ inline_list=None,
25
+ parents=(
26
+ CoreAudio,
27
+ Foundation,
28
+ ),
29
+ metadict=_metadata.__dict__,
30
+ )
31
+
32
+ globals()["__dir__"] = dir_func
33
+ globals()["__getattr__"] = getattr_func
34
+
35
+ del sys.modules["CoreAudioKit._metadata"]
36
+
37
+
38
+ globals().pop("_setup")()
@@ -0,0 +1,94 @@
1
+ # This file is generated by objective.metadata
2
+ #
3
+ # Last update: Fri Jul 25 11:44:36 2025
4
+ #
5
+ # flake8: noqa
6
+
7
+ import objc, sys
8
+ from typing import NewType
9
+
10
+ if sys.maxsize > 2**32:
11
+
12
+ def sel32or64(a, b):
13
+ return b
14
+
15
+ else:
16
+
17
+ def sel32or64(a, b):
18
+ return a
19
+
20
+
21
+ if objc.arch == "arm64":
22
+
23
+ def selAorI(a, b):
24
+ return a
25
+
26
+ else:
27
+
28
+ def selAorI(a, b):
29
+ return b
30
+
31
+
32
+ misc = {}
33
+ constants = """$$"""
34
+ enums = """$AUViewParametersDisplayFlag@4$AUViewPropertiesDisplayFlag@2$AUViewTitleDisplayFlag@1$"""
35
+ misc.update({"AUGenericViewDisplayFlags": NewType("AUGenericViewDisplayFlags", int)})
36
+ misc.update({})
37
+ misc.update({})
38
+ r = objc.registerMetaDataForSelector
39
+ objc._updatingMetadata(True)
40
+ try:
41
+ r(
42
+ b"AUAudioUnit",
43
+ b"requestViewControllerWithCompletionHandler:",
44
+ {
45
+ "arguments": {
46
+ 2: {
47
+ "callable": {
48
+ "retval": {"type": b"v"},
49
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
50
+ }
51
+ }
52
+ }
53
+ },
54
+ )
55
+ r(b"AUAudioUnitViewConfiguration", b"hostHasController", {"retval": {"type": b"Z"}})
56
+ r(
57
+ b"AUAudioUnitViewConfiguration",
58
+ b"initWithWidth:height:hostHasController:",
59
+ {"arguments": {4: {"type": b"Z"}}},
60
+ )
61
+ r(
62
+ b"AUGenericView",
63
+ b"setShowsExpertParameters:",
64
+ {"arguments": {2: {"type": b"Z"}}},
65
+ )
66
+ r(b"AUGenericView", b"showsExpertParameters", {"retval": {"type": b"Z"}})
67
+ r(
68
+ b"CANetworkBrowserWindowController",
69
+ b"isAVBSupported",
70
+ {"retval": {"type": b"Z"}},
71
+ )
72
+ r(
73
+ b"NSObject",
74
+ b"customViewPersistentData",
75
+ {"required": True, "retval": {"type": b"@"}},
76
+ )
77
+ r(
78
+ b"NSObject",
79
+ b"setCustomViewPersistentData:",
80
+ {"required": True, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
81
+ )
82
+ finally:
83
+ objc._updatingMetadata(False)
84
+
85
+ objc.registerNewKeywordsFromSelector(
86
+ "AUAudioUnitViewConfiguration", b"initWithWidth:height:hostHasController:"
87
+ )
88
+ objc.registerNewKeywordsFromSelector("AUGenericView", b"initWithAudioUnit:")
89
+ objc.registerNewKeywordsFromSelector(
90
+ "AUGenericView", b"initWithAudioUnit:displayFlags:"
91
+ )
92
+ expressions = {}
93
+
94
+ # END OF FILE
@@ -0,0 +1,70 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyobjc-framework-CoreAudioKit
3
+ Version: 12.0
4
+ Summary: Wrappers for the framework CoreAudioKit on macOS
5
+ Home-page: https://github.com/ronaldoussoren/pyobjc
6
+ Author: Ronald Oussoren
7
+ Author-email: pyobjc-dev@lists.sourceforge.net
8
+ License: MIT
9
+ Keywords: PyObjC,CoreAudioKit
10
+ Platform: MacOS X
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Environment :: Console
13
+ Classifier: Environment :: MacOS X :: Cocoa
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Natural Language :: English
16
+ Classifier: Operating System :: MacOS :: MacOS X
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Programming Language :: Python :: 3.14
26
+ Classifier: Programming Language :: Python :: 3.15
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Programming Language :: Python :: Free Threading :: 2 - Beta
29
+ Classifier: Programming Language :: Objective C
30
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
+ Classifier: Topic :: Software Development :: User Interfaces
32
+ Requires-Python: >=3.9
33
+ Description-Content-Type: text/x-rst; charset=UTF-8
34
+ Requires-Dist: pyobjc-core>=12.0
35
+ Requires-Dist: pyobjc-framework-Cocoa>=12.0
36
+ Requires-Dist: pyobjc-framework-CoreAudio>=12.0
37
+ Dynamic: author
38
+ Dynamic: author-email
39
+ Dynamic: classifier
40
+ Dynamic: description
41
+ Dynamic: description-content-type
42
+ Dynamic: home-page
43
+ Dynamic: keywords
44
+ Dynamic: license
45
+ Dynamic: platform
46
+ Dynamic: requires-dist
47
+ Dynamic: requires-python
48
+ Dynamic: summary
49
+ Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
50
+ Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
51
+ Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
52
+
53
+
54
+ Wrappers for the "CoreAudioKit" framework on macOS.
55
+
56
+ These wrappers don't include documentation, please check Apple's documentation
57
+ for information on how to use this framework and PyObjC's documentation
58
+ for general tips and tricks regarding the translation between Python
59
+ and (Objective-)C frameworks
60
+
61
+
62
+ Project links
63
+ -------------
64
+
65
+ * `Documentation <https://pyobjc.readthedocs.io/en/latest/>`_
66
+
67
+ * `Issue Tracker <https://github.com/ronaldoussoren/pyobjc/issues>`_
68
+
69
+ * `Repository <https://github.com/ronaldoussoren/pyobjc/>`_
70
+
@@ -0,0 +1,8 @@
1
+ CoreAudioKit/_CoreAudioKit.cpython-314t-darwin.so,sha256=hUUBfYFYOlrVoP6w9Cu6iVWhdJRCu13R2KUYz0jmJBQ,84088
2
+ CoreAudioKit/__init__.py,sha256=MFNbEMmHp5gmoffaXO8Dcn5mwQYF-WNCAwsSBIEXRj4,927
3
+ CoreAudioKit/_metadata.py,sha256=mFLwhNRh9guInMah76Ad2lqzrsjmiZWOuZ2-x3_H_Oo,2301
4
+ pyobjc_framework_coreaudiokit-12.0.dist-info/METADATA,sha256=wPC-wHviu0bPxrp8Xnr-fNQ2GMYGD25F-kSeIkUldt8,2602
5
+ pyobjc_framework_coreaudiokit-12.0.dist-info/WHEEL,sha256=5M1-WMilFB1LFPZPPbuiAHK7-ArkXvN730kYio0xsc8,116
6
+ pyobjc_framework_coreaudiokit-12.0.dist-info/pyobjc-build-info.txt,sha256=DrbcGDJq0sVhQwFajghJ82j-HCBI07U1mQQig6N9ubs,85
7
+ pyobjc_framework_coreaudiokit-12.0.dist-info/top_level.txt,sha256=YzPCROFcH7dWfQOaRPhgKuLu43wvFPHsLexDde99EpU,13
8
+ pyobjc_framework_coreaudiokit-12.0.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: cp314-cp314t-macosx_10_15_universal2
5
+
@@ -0,0 +1,3 @@
1
+ macOS 26.0.1 (25A362)
2
+ Apple clang version 17.0.0 (clang-1700.3.19.1)
3
+ SDK: macOS 26.0
@@ -0,0 +1 @@
1
+ CoreAudioKit