pyobjc-framework-MediaLibrary 9.2__py2.py3-none-any.whl → 10.0__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.
MediaLibrary/__init__.py CHANGED
@@ -5,27 +5,34 @@ This module does not contain docstrings for the wrapped code, check Apple's
5
5
  documentation for details on how to use these functions and classes.
6
6
  """
7
7
 
8
- import sys
9
-
10
- import Cocoa
11
- import objc
12
- import Quartz
13
- from MediaLibrary import _metadata
14
-
15
- sys.modules["MediaLibrary"] = mod = objc.ObjCLazyModule(
16
- "MediaLibrary",
17
- "com.apple.MediaLibrary",
18
- objc.pathForFramework("/System/Library/Frameworks/MediaLibrary.framework"),
19
- _metadata.__dict__,
20
- None,
21
- {
22
- "__doc__": __doc__,
23
- "objc": objc,
24
- "__path__": __path__,
25
- "__loader__": globals().get("__loader__", None),
26
- },
27
- (Cocoa, Quartz),
28
- )
29
-
30
-
31
- del sys.modules["MediaLibrary._metadata"]
8
+
9
+ def _setup():
10
+ import sys
11
+
12
+ import AppKit
13
+ import Quartz
14
+ import objc
15
+ from . import _metadata
16
+
17
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
18
+ name="MediaLibrary",
19
+ frameworkIdentifier="com.apple.MediaLibrary",
20
+ frameworkPath=objc.pathForFramework(
21
+ "/System/Library/Frameworks/MediaLibrary.framework"
22
+ ),
23
+ globals_dict=globals(),
24
+ inline_list=None,
25
+ parents=(
26
+ AppKit,
27
+ Quartz,
28
+ ),
29
+ metadict=_metadata.__dict__,
30
+ )
31
+
32
+ globals()["__dir__"] = dir_func
33
+ globals()["__getattr__"] = getattr_func
34
+
35
+ del sys.modules["MediaLibrary._metadata"]
36
+
37
+
38
+ globals().pop("_setup")()
MediaLibrary/_metadata.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # This file is generated by objective.metadata
2
2
  #
3
- # Last update: Sun Feb 20 19:04:30 2022
3
+ # Last update: Sat Jul 1 14:03:23 2023
4
4
  #
5
5
  # flake8: noqa
6
6
 
@@ -39,6 +39,7 @@ misc.update(
39
39
  }
40
40
  )
41
41
  misc.update({})
42
+ misc.update({})
42
43
  expressions = {}
43
44
 
44
45
  # END OF FILE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyobjc-framework-MediaLibrary
3
- Version: 9.2
3
+ Version: 10.0
4
4
  Summary: Wrappers for the framework MediaLibrary on macOS
5
5
  Home-page: https://github.com/ronaldoussoren/pyobjc
6
6
  Author: Ronald Oussoren
@@ -18,23 +18,23 @@ Classifier: Operating System :: MacOS :: MacOS X
18
18
  Classifier: Programming Language :: Python
19
19
  Classifier: Programming Language :: Python :: 3
20
20
  Classifier: Programming Language :: Python :: 3 :: Only
21
- Classifier: Programming Language :: Python :: 3.7
22
21
  Classifier: Programming Language :: Python :: 3.8
23
22
  Classifier: Programming Language :: Python :: 3.9
24
23
  Classifier: Programming Language :: Python :: 3.10
25
24
  Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
27
  Classifier: Programming Language :: Objective C
28
28
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
29
  Classifier: Topic :: Software Development :: User Interfaces
30
- Requires-Python: >=3.7
30
+ Requires-Python: >=3.8
31
31
  Description-Content-Type: text/x-rst; charset=UTF-8
32
32
  Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
33
33
  Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
34
34
  Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
35
- Requires-Dist: pyobjc-core (>=9.2)
36
- Requires-Dist: pyobjc-framework-Cocoa (>=9.2)
37
- Requires-Dist: pyobjc-framework-Quartz (>=9.2)
35
+ Requires-Dist: pyobjc-core >=10.0
36
+ Requires-Dist: pyobjc-framework-Cocoa >=10.0
37
+ Requires-Dist: pyobjc-framework-Quartz >=10.0
38
38
 
39
39
 
40
40
  Wrappers for the "MediaLibrary" framework on macOS introduced in macOS 10.9.
@@ -0,0 +1,6 @@
1
+ MediaLibrary/__init__.py,sha256=eSV5afzOBFucEc0KN-thwG8--nsxSAgBpEhHJlgJy40,907
2
+ MediaLibrary/_metadata.py,sha256=1suMfeS-OG84tDS2a9sF9_nR3e6Foq7umYy1MLYMT-s,5920
3
+ pyobjc_framework_MediaLibrary-10.0.dist-info/METADATA,sha256=Q3i9j003ZaWBFFMAX_RzkYbSmbzsKHxZcO1XKqYKV8w,2269
4
+ pyobjc_framework_MediaLibrary-10.0.dist-info/WHEEL,sha256=iYlv5fX357PQyRT2o6tw1bN-YcKFFHKqB_LwHO5wP-g,110
5
+ pyobjc_framework_MediaLibrary-10.0.dist-info/top_level.txt,sha256=8l460_uhfCC5qFaULCPHLkYUub_SR8O05tmsEdRSRp8,13
6
+ pyobjc_framework_MediaLibrary-10.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.41.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any
@@ -1,6 +0,0 @@
1
- MediaLibrary/__init__.py,sha256=Ro9mxVm1-XHQ9g8rMG5LvLXhcDc8TryuMtJi9nDmo2g,727
2
- MediaLibrary/_metadata.py,sha256=GAjtEMcUIHwEh4GPpsy6mknP_hWPvAeJqZDsp1L27-k,5904
3
- pyobjc_framework_MediaLibrary-9.2.dist-info/METADATA,sha256=dR8IxBY9zIIf4XaY2DG2yCSW0vMCAnvFmf_dy9IRGec,2270
4
- pyobjc_framework_MediaLibrary-9.2.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
5
- pyobjc_framework_MediaLibrary-9.2.dist-info/top_level.txt,sha256=8l460_uhfCC5qFaULCPHLkYUub_SR8O05tmsEdRSRp8,13
6
- pyobjc_framework_MediaLibrary-9.2.dist-info/RECORD,,