pyobjc-framework-ContactsUI 12.2__cp315-cp315t-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.
ContactsUI/__init__.py ADDED
@@ -0,0 +1,35 @@
1
+ """
2
+ Python mapping for the ContactsUI 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 AppKit
13
+ import Contacts
14
+ import objc
15
+ from . import _metadata, _ContactsUI
16
+
17
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
18
+ name="ContactsUI",
19
+ frameworkIdentifier="com.apple.ContactsUI",
20
+ frameworkPath=objc.pathForFramework(
21
+ "/System/Library/Frameworks/ContactsUI.framework"
22
+ ),
23
+ globals_dict=globals(),
24
+ inline_list=None,
25
+ parents=(_ContactsUI, Contacts, AppKit),
26
+ metadict=_metadata.__dict__,
27
+ )
28
+
29
+ globals()["__dir__"] = dir_func
30
+ globals()["__getattr__"] = getattr_func
31
+
32
+ del sys.modules["ContactsUI._metadata"]
33
+
34
+
35
+ globals().pop("_setup")()
@@ -0,0 +1,73 @@
1
+ # This file is generated by objective.metadata
2
+ #
3
+ # Last update: Sun May 24 11:45:28 2026
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 = """$$"""
35
+ misc.update({})
36
+ misc.update({})
37
+ misc.update({})
38
+ r = objc.registerMetaDataForSelector
39
+ objc._updatingMetadata(True)
40
+ try:
41
+ r(
42
+ b"NSObject",
43
+ b"contactPicker:didSelectContact:",
44
+ {
45
+ "required": False,
46
+ "retval": {"type": b"v"},
47
+ "arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
48
+ },
49
+ )
50
+ r(
51
+ b"NSObject",
52
+ b"contactPicker:didSelectContactProperty:",
53
+ {
54
+ "required": False,
55
+ "retval": {"type": b"v"},
56
+ "arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
57
+ },
58
+ )
59
+ r(
60
+ b"NSObject",
61
+ b"contactPickerDidClose:",
62
+ {"required": False, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
63
+ )
64
+ r(
65
+ b"NSObject",
66
+ b"contactPickerWillClose:",
67
+ {"required": False, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
68
+ )
69
+ finally:
70
+ objc._updatingMetadata(False)
71
+ expressions = {}
72
+
73
+ # END OF FILE
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyobjc-framework-ContactsUI
3
+ Version: 12.2
4
+ Summary: Wrappers for the framework ContactsUI 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,ContactsUI
10
+ Platform: MacOS X (>=10.11)
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.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Programming Language :: Python :: 3.14
25
+ Classifier: Programming Language :: Python :: 3.15
26
+ Classifier: Programming Language :: Python :: Implementation :: CPython
27
+ Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable
28
+ Classifier: Programming Language :: Objective C
29
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
+ Classifier: Topic :: Software Development :: User Interfaces
31
+ Requires-Python: >=3.10
32
+ Description-Content-Type: text/x-rst; charset=UTF-8
33
+ Requires-Dist: pyobjc-core>=12.2
34
+ Requires-Dist: pyobjc-framework-Cocoa>=12.2
35
+ Requires-Dist: pyobjc-framework-Contacts>=12.2
36
+ Dynamic: author
37
+ Dynamic: author-email
38
+ Dynamic: classifier
39
+ Dynamic: description
40
+ Dynamic: description-content-type
41
+ Dynamic: home-page
42
+ Dynamic: keywords
43
+ Dynamic: license
44
+ Dynamic: platform
45
+ Dynamic: requires-dist
46
+ Dynamic: requires-python
47
+ Dynamic: summary
48
+ Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
49
+ Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
50
+ Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
51
+
52
+
53
+ Wrappers for the "ContactsUI" framework on macOS 10.11.
54
+
55
+ These wrappers don't include documentation, please check Apple's documentation
56
+ for information on how to use this framework and PyObjC's documentation
57
+ for general tips and tricks regarding the translation between Python
58
+ and (Objective-)C frameworks
59
+
60
+
61
+ Project links
62
+ -------------
63
+
64
+ * `Documentation <https://pyobjc.readthedocs.io/en/latest/>`_
65
+
66
+ * `Issue Tracker <https://github.com/ronaldoussoren/pyobjc/issues>`_
67
+
68
+ * `Repository <https://github.com/ronaldoussoren/pyobjc/>`_
69
+
@@ -0,0 +1,8 @@
1
+ ContactsUI/_ContactsUI.cpython-315t-darwin.so,sha256=ImnALpseU4z94APTyVeyTbZ_7dNNyz_mnTaSmFZVGxQ,84432
2
+ ContactsUI/__init__.py,sha256=VM-Nd6oE5lCyDPwURupF-vB28Dd3xhg1GqYGxiN3r1w,892
3
+ ContactsUI/_metadata.py,sha256=VHx-nppZ9o54qgNq3G4UTJvg_YTOGnPIrXk2q-IlsyY,1420
4
+ pyobjc_framework_contactsui-12.2.dist-info/METADATA,sha256=j1eENMUqQtXaPIxUNuSHbD67M2Wyk1BDyj4FJ5LoZGo,2562
5
+ pyobjc_framework_contactsui-12.2.dist-info/WHEEL,sha256=_nP7yfUfwxmGX9RTJbiMJrobK8htS_8OhvZ4aYaIBs4,116
6
+ pyobjc_framework_contactsui-12.2.dist-info/pyobjc-build-info.txt,sha256=Ri0Wl_rPog8K797Y9SwUgX2P5KgewvMu0uQOBhtk0lo,83
7
+ pyobjc_framework_contactsui-12.2.dist-info/top_level.txt,sha256=flGw8P6mT3VkC_U6W3Kp-pzdx7g0Y5u28YRccgR_Kz8,11
8
+ pyobjc_framework_contactsui-12.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp315-cp315t-macosx_10_15_universal2
5
+
@@ -0,0 +1,3 @@
1
+ macOS 26.5 (25F71)
2
+ Apple clang version 21.0.0 (clang-2100.1.1.101)
3
+ SDK: macOS 26.5
@@ -0,0 +1 @@
1
+ ContactsUI