pyobjc-framework-SecurityUI 11.1__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.
SecurityUI/__init__.py ADDED
@@ -0,0 +1,44 @@
1
+ """
2
+ Python mapping for the SecurityUI 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 Security
13
+ import AppKit
14
+ import objc
15
+ from . import _metadata
16
+
17
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
18
+ name="SecurityUI",
19
+ frameworkIdentifier="com.apple.SecurityUI",
20
+ frameworkPath=objc.pathForFramework(
21
+ "/System/Library/Frameworks/SecurityUI.framework"
22
+ ),
23
+ globals_dict=globals(),
24
+ inline_list=None,
25
+ parents=(
26
+ Security,
27
+ AppKit,
28
+ ),
29
+ metadict=_metadata.__dict__,
30
+ )
31
+
32
+ globals()["__dir__"] = dir_func
33
+ globals()["__getattr__"] = getattr_func
34
+
35
+ for cls, sel in (
36
+ ("SFCertificatePresentation", b"init"),
37
+ ("SFCertificatePresentation", b"new"),
38
+ ):
39
+ objc.registerUnavailableMethod(cls, sel)
40
+
41
+ del sys.modules["SecurityUI._metadata"]
42
+
43
+
44
+ globals().pop("_setup")()
@@ -0,0 +1,61 @@
1
+ # This file is generated by objective.metadata
2
+ #
3
+ # Last update: Sun Mar 2 11:55:28 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 = """$$"""
35
+ misc.update({})
36
+ misc.update({})
37
+ misc.update({})
38
+ r = objc.registerMetaDataForSelector
39
+ objc._updatingMetadata(True)
40
+ try:
41
+ r(
42
+ b"SFCertificatePresentation",
43
+ b"presentSheetInWindow:dismissHandler:",
44
+ {
45
+ "arguments": {
46
+ 3: {
47
+ "callable": {
48
+ "retval": {"type": b"v"},
49
+ "arguments": {0: {"type": b"^v"}},
50
+ }
51
+ }
52
+ }
53
+ },
54
+ )
55
+ finally:
56
+ objc._updatingMetadata(False)
57
+
58
+ objc.registerNewKeywordsFromSelector("SFCertificatePresentation", b"initWithTrust:")
59
+ expressions = {}
60
+
61
+ # END OF FILE
@@ -0,0 +1,68 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyobjc-framework-SecurityUI
3
+ Version: 11.1
4
+ Summary: Wrappers for the framework SecurityUI 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,SecurityUI
10
+ Platform: MacOS X (>=15.4)
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 :: Implementation :: CPython
27
+ Classifier: Programming Language :: Objective C
28
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
+ Classifier: Topic :: Software Development :: User Interfaces
30
+ Requires-Python: >=3.9
31
+ Description-Content-Type: text/x-rst; charset=UTF-8
32
+ Requires-Dist: pyobjc-core>=11.1
33
+ Requires-Dist: pyobjc-framework-Cocoa>=11.1
34
+ Requires-Dist: pyobjc-framework-Security>=11.1
35
+ Dynamic: author
36
+ Dynamic: author-email
37
+ Dynamic: classifier
38
+ Dynamic: description
39
+ Dynamic: description-content-type
40
+ Dynamic: home-page
41
+ Dynamic: keywords
42
+ Dynamic: license
43
+ Dynamic: platform
44
+ Dynamic: requires-dist
45
+ Dynamic: requires-python
46
+ Dynamic: summary
47
+ Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
48
+ Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
49
+ Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
50
+
51
+
52
+ Wrappers for the "SecurityUI" framework on macOS.
53
+
54
+ These wrappers don't include documentation, please check Apple's documentation
55
+ for information on how to use this framework and PyObjC's documentation
56
+ for general tips and tricks regarding the translation between Python
57
+ and (Objective-)C frameworks
58
+
59
+
60
+ Project links
61
+ -------------
62
+
63
+ * `Documentation <https://pyobjc.readthedocs.io/en/latest/>`_
64
+
65
+ * `Issue Tracker <https://github.com/ronaldoussoren/pyobjc/issues>`_
66
+
67
+ * `Repository <https://github.com/ronaldoussoren/pyobjc/>`_
68
+
@@ -0,0 +1,7 @@
1
+ SecurityUI/__init__.py,sha256=BOM_pnxye9lwQ-pZ6ndi8c5R7cErp1my4AOajTGjhVg,1075
2
+ SecurityUI/_metadata.py,sha256=cRrYZwBIm1_oOJyeNQWZxtfUxX8MpY_nuce4I1XBBOo,1081
3
+ pyobjc_framework_securityui-11.1.dist-info/METADATA,sha256=5OUJsl0S9xakxpB9wWnODYEaFkeLsHYnfTHqmV0CW1E,2478
4
+ pyobjc_framework_securityui-11.1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
5
+ pyobjc_framework_securityui-11.1.dist-info/pyobjc-build-info.txt,sha256=OfQNPl9BwB9fSU4KMztzne_AW50mIPMwZ9jSbPyMI-g,82
6
+ pyobjc_framework_securityui-11.1.dist-info/top_level.txt,sha256=JWUe_zdL80bbf07HpYDGCYrTvoNzhSO1u1inmEiA3x0,11
7
+ pyobjc_framework_securityui-11.1.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+
@@ -0,0 +1,3 @@
1
+ macOS 15.5 (24F74)
2
+ Apple clang version 17.0.0 (clang-1700.0.13.5)
3
+ SDK: macOS 15.5
@@ -0,0 +1 @@
1
+ SecurityUI