pyobjc-framework-LaunchServices 10.3.2__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.
- LaunchServices/__init__.py +40 -0
- pyobjc_framework_LaunchServices-10.3.2.dist-info/LICENSE.txt +10 -0
- pyobjc_framework_LaunchServices-10.3.2.dist-info/METADATA +54 -0
- pyobjc_framework_LaunchServices-10.3.2.dist-info/RECORD +6 -0
- pyobjc_framework_LaunchServices-10.3.2.dist-info/WHEEL +6 -0
- pyobjc_framework_LaunchServices-10.3.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Python mapping for the LaunchServices 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 warnings
|
|
11
|
+
|
|
12
|
+
import CoreServices
|
|
13
|
+
import objc
|
|
14
|
+
|
|
15
|
+
warnings.warn(
|
|
16
|
+
"pyobjc-framework-LaunchServices is deprecated, use 'import CoreServices' instead",
|
|
17
|
+
DeprecationWarning,
|
|
18
|
+
stacklevel=2,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
|
|
22
|
+
name="LaunchServices",
|
|
23
|
+
frameworkIdentifier="com.apple.CoreServices",
|
|
24
|
+
frameworkPath=objc.pathForFramework(
|
|
25
|
+
"/System/Library/Frameworks/CoreServices.framework"
|
|
26
|
+
),
|
|
27
|
+
globals_dict=globals(),
|
|
28
|
+
inline_list=None,
|
|
29
|
+
parents=(CoreServices,),
|
|
30
|
+
metadict={},
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
globals()["__dir__"] = dir_func
|
|
34
|
+
globals()["__getattr__"] = getattr_func
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
globals().pop("_setup")()
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
from CoreServices import _LSCopyAllApplicationURLs # isort:skip # noqa: F401,E402
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
(This is the MIT license, note that libffi-src is a separate product with its own license)
|
|
2
|
+
|
|
3
|
+
Copyright 2002, 2003 - Bill Bumgarner, Ronald Oussoren, Steve Majewski, Lele Gaifax, et.al.
|
|
4
|
+
Copyright 2003-2024 - Ronald Oussoren
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
7
|
+
|
|
8
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
9
|
+
|
|
10
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pyobjc-framework-LaunchServices
|
|
3
|
+
Version: 10.3.2
|
|
4
|
+
Summary: Wrappers for the framework LaunchServices 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 License
|
|
9
|
+
Keywords: PyObjC,LaunchServices
|
|
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: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Natural Language :: English
|
|
17
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
18
|
+
Classifier: Programming Language :: Python
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
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.8
|
|
32
|
+
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
33
|
+
License-File: LICENSE.txt
|
|
34
|
+
Requires-Dist: pyobjc-core>=10.3.2
|
|
35
|
+
Requires-Dist: pyobjc-framework-CoreServices>=10.3.2
|
|
36
|
+
Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
|
|
37
|
+
Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
|
|
38
|
+
Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
Deprecated wrappers for the "LaunchServices" framework on macOS.
|
|
42
|
+
|
|
43
|
+
Use the "CoreServices" bindings instead.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
Project links
|
|
47
|
+
-------------
|
|
48
|
+
|
|
49
|
+
* `Documentation <https://pyobjc.readthedocs.io/en/latest/>`_
|
|
50
|
+
|
|
51
|
+
* `Issue Tracker <https://github.com/ronaldoussoren/pyobjc/issues>`_
|
|
52
|
+
|
|
53
|
+
* `Repository <https://github.com/ronaldoussoren/pyobjc/>`_
|
|
54
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
LaunchServices/__init__.py,sha256=xp9-QNEgvhnfhzdEixEXhQb4SjHUHaosXGHwtu1bQFg,1032
|
|
2
|
+
pyobjc_framework_LaunchServices-10.3.2.dist-info/LICENSE.txt,sha256=VBYOCJp5HziM90a14Txl68gt3y2rIJpcoZAoVkfX4Ho,1249
|
|
3
|
+
pyobjc_framework_LaunchServices-10.3.2.dist-info/METADATA,sha256=yfLtjDhxVmxujVXs45OaT6zfAy2vL4MYUv0IgprQCOo,2088
|
|
4
|
+
pyobjc_framework_LaunchServices-10.3.2.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
|
|
5
|
+
pyobjc_framework_LaunchServices-10.3.2.dist-info/top_level.txt,sha256=SacVhswCjuTJqnWUxgCImC7Gm94ztLgvlqfVrdFIKJc,15
|
|
6
|
+
pyobjc_framework_LaunchServices-10.3.2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
LaunchServices
|