pyobjc-framework-UserNotifications 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.
- UserNotifications/_UserNotifications.cpython-315t-darwin.so +0 -0
- UserNotifications/__init__.py +51 -0
- UserNotifications/_metadata.py +362 -0
- pyobjc_framework_usernotifications-12.2.dist-info/METADATA +68 -0
- pyobjc_framework_usernotifications-12.2.dist-info/RECORD +8 -0
- pyobjc_framework_usernotifications-12.2.dist-info/WHEEL +5 -0
- pyobjc_framework_usernotifications-12.2.dist-info/pyobjc-build-info.txt +3 -0
- pyobjc_framework_usernotifications-12.2.dist-info/top_level.txt +1 -0
|
Binary file
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Python mapping for the UserNotifications 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 Foundation
|
|
13
|
+
import objc
|
|
14
|
+
from . import _metadata, _UserNotifications
|
|
15
|
+
|
|
16
|
+
dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
|
|
17
|
+
name="UserNotifications",
|
|
18
|
+
frameworkIdentifier="com.apple.UserNotifications",
|
|
19
|
+
frameworkPath=objc.pathForFramework(
|
|
20
|
+
"/System/Library/Frameworks/UserNotifications.framework"
|
|
21
|
+
),
|
|
22
|
+
globals_dict=globals(),
|
|
23
|
+
inline_list=None,
|
|
24
|
+
parents=(
|
|
25
|
+
_UserNotifications,
|
|
26
|
+
Foundation,
|
|
27
|
+
),
|
|
28
|
+
metadict=_metadata.__dict__,
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
globals()["__dir__"] = dir_func
|
|
32
|
+
globals()["__getattr__"] = getattr_func
|
|
33
|
+
|
|
34
|
+
for cls, sel in (
|
|
35
|
+
("UNNotificationActionIcon", b"init"),
|
|
36
|
+
("UNUserNotificationCenter", b"init"),
|
|
37
|
+
("UNNotificationCategory", b"init"),
|
|
38
|
+
("UNNotificationRequest", b"init"),
|
|
39
|
+
("UNNotificationTrigger", b"init"),
|
|
40
|
+
("UNNotificationAttachment", b"init"),
|
|
41
|
+
("UNNotificationAction", b"init"),
|
|
42
|
+
("UNNotificationSound", b"init"),
|
|
43
|
+
("UNNotificationResponse", b"init"),
|
|
44
|
+
("UNNotificationSettings", b"init"),
|
|
45
|
+
):
|
|
46
|
+
objc.registerUnavailableMethod(cls, sel)
|
|
47
|
+
|
|
48
|
+
del sys.modules["UserNotifications._metadata"]
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
globals().pop("_setup")()
|
|
@@ -0,0 +1,362 @@
|
|
|
1
|
+
# This file is generated by objective.metadata
|
|
2
|
+
#
|
|
3
|
+
# Last update: Fri May 29 08:45:08 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 = """$UNErrorDomain$UNNotificationAttachmentOptionsThumbnailClippingRectKey$UNNotificationAttachmentOptionsThumbnailHiddenKey$UNNotificationAttachmentOptionsThumbnailTimeKey$UNNotificationAttachmentOptionsTypeHintKey$UNNotificationDefaultActionIdentifier$UNNotificationDismissActionIdentifier$"""
|
|
34
|
+
enums = """$UNAlertStyleAlert@2$UNAlertStyleBanner@1$UNAlertStyleNone@0$UNAuthorizationOptionAlert@4$UNAuthorizationOptionAnnouncement@128$UNAuthorizationOptionBadge@1$UNAuthorizationOptionCarPlay@8$UNAuthorizationOptionCriticalAlert@16$UNAuthorizationOptionNone@0$UNAuthorizationOptionProvidesAppNotificationSettings@32$UNAuthorizationOptionProvisional@64$UNAuthorizationOptionSound@2$UNAuthorizationOptionTimeSensitive@256$UNAuthorizationStatusAuthorized@2$UNAuthorizationStatusDenied@1$UNAuthorizationStatusEphemeral@4$UNAuthorizationStatusNotDetermined@0$UNAuthorizationStatusProvisional@3$UNErrorCodeAttachmentCorrupt@105$UNErrorCodeAttachmentInvalidFileSize@102$UNErrorCodeAttachmentInvalidURL@100$UNErrorCodeAttachmentMoveIntoDataStoreFailed@104$UNErrorCodeAttachmentNotInDataStore@103$UNErrorCodeAttachmentUnrecognizedType@101$UNErrorCodeBadgeInputInvalid@1600$UNErrorCodeContentProvidingInvalid@1501$UNErrorCodeContentProvidingObjectNotAllowed@1500$UNErrorCodeNotificationInvalidNoContent@1401$UNErrorCodeNotificationInvalidNoDate@1400$UNErrorCodeNotificationsNotAllowed@1$UNNotificationActionOptionAuthenticationRequired@1$UNNotificationActionOptionDestructive@2$UNNotificationActionOptionForeground@4$UNNotificationActionOptionNone@0$UNNotificationCategoryOptionAllowAnnouncement@16$UNNotificationCategoryOptionAllowInCarPlay@2$UNNotificationCategoryOptionCustomDismissAction@1$UNNotificationCategoryOptionHiddenPreviewsShowSubtitle@8$UNNotificationCategoryOptionHiddenPreviewsShowTitle@4$UNNotificationCategoryOptionNone@0$UNNotificationGroupingSettingDefault@0$UNNotificationGroupingSettingOff@2$UNNotificationGroupingSettingSource@1$UNNotificationInterruptionLevelActive@1$UNNotificationInterruptionLevelCritical@3$UNNotificationInterruptionLevelPassive@0$UNNotificationInterruptionLevelTimeSensitive@2$UNNotificationPresentationOptionAlert@4$UNNotificationPresentationOptionBadge@1$UNNotificationPresentationOptionBanner@16$UNNotificationPresentationOptionList@8$UNNotificationPresentationOptionNone@0$UNNotificationPresentationOptionSound@2$UNNotificationSettingDisabled@1$UNNotificationSettingEnabled@2$UNNotificationSettingNotSupported@0$UNShowPreviewsSettingAlways@0$UNShowPreviewsSettingNever@2$UNShowPreviewsSettingWhenAuthenticated@1$"""
|
|
35
|
+
misc.update(
|
|
36
|
+
{
|
|
37
|
+
"UNNotificationCategoryOptions": NewType("UNNotificationCategoryOptions", int),
|
|
38
|
+
"UNAlertStyle": NewType("UNAlertStyle", int),
|
|
39
|
+
"UNNotificationInterruptionLevel": NewType(
|
|
40
|
+
"UNNotificationInterruptionLevel", int
|
|
41
|
+
),
|
|
42
|
+
"UNAuthorizationOptions": NewType("UNAuthorizationOptions", int),
|
|
43
|
+
"UNNotificationActionOptions": NewType("UNNotificationActionOptions", int),
|
|
44
|
+
"UNShowPreviewsSetting": NewType("UNShowPreviewsSetting", int),
|
|
45
|
+
"UNAuthorizationStatus": NewType("UNAuthorizationStatus", int),
|
|
46
|
+
"UNNotificationSetting": NewType("UNNotificationSetting", int),
|
|
47
|
+
"UNErrorCode": NewType("UNErrorCode", int),
|
|
48
|
+
"UNNotificationPresentationOptions": NewType(
|
|
49
|
+
"UNNotificationPresentationOptions", int
|
|
50
|
+
),
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
misc.update({})
|
|
54
|
+
misc.update({})
|
|
55
|
+
r = objc.registerMetaDataForSelector
|
|
56
|
+
objc._updatingMetadata(True)
|
|
57
|
+
try:
|
|
58
|
+
r(
|
|
59
|
+
b"NSObject",
|
|
60
|
+
b"userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:",
|
|
61
|
+
{
|
|
62
|
+
"required": False,
|
|
63
|
+
"retval": {"type": b"v"},
|
|
64
|
+
"arguments": {
|
|
65
|
+
2: {"type": b"@"},
|
|
66
|
+
3: {"type": b"@"},
|
|
67
|
+
4: {
|
|
68
|
+
"callable": {
|
|
69
|
+
"retval": {"type": b"v"},
|
|
70
|
+
"arguments": {0: {"type": b"^v"}},
|
|
71
|
+
},
|
|
72
|
+
"type": "@?",
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
)
|
|
77
|
+
r(
|
|
78
|
+
b"NSObject",
|
|
79
|
+
b"userNotificationCenter:openSettingsForNotification:",
|
|
80
|
+
{
|
|
81
|
+
"required": False,
|
|
82
|
+
"retval": {"type": b"v"},
|
|
83
|
+
"arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
|
|
84
|
+
},
|
|
85
|
+
)
|
|
86
|
+
r(
|
|
87
|
+
b"NSObject",
|
|
88
|
+
b"userNotificationCenter:willPresentNotification:withCompletionHandler:",
|
|
89
|
+
{
|
|
90
|
+
"required": False,
|
|
91
|
+
"retval": {"type": b"v"},
|
|
92
|
+
"arguments": {
|
|
93
|
+
2: {"type": b"@"},
|
|
94
|
+
3: {"type": b"@"},
|
|
95
|
+
4: {
|
|
96
|
+
"callable": {
|
|
97
|
+
"retval": {"type": b"v"},
|
|
98
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"Q"}},
|
|
99
|
+
},
|
|
100
|
+
"type": "@?",
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
)
|
|
105
|
+
r(
|
|
106
|
+
b"UNCalendarNotificationTrigger",
|
|
107
|
+
b"triggerWithDateMatchingComponents:repeats:",
|
|
108
|
+
{"arguments": {3: {"type": b"Z"}}},
|
|
109
|
+
)
|
|
110
|
+
r(
|
|
111
|
+
b"UNLocationNotificationTrigger",
|
|
112
|
+
b"triggerWithRegion:repeats:",
|
|
113
|
+
{"arguments": {3: {"type": "Z"}}},
|
|
114
|
+
)
|
|
115
|
+
r(
|
|
116
|
+
b"UNNotificationAttachment",
|
|
117
|
+
b"attachmentWithIdentifier:URL:options:error:",
|
|
118
|
+
{"arguments": {5: {"type_modifier": b"o"}}},
|
|
119
|
+
)
|
|
120
|
+
r(
|
|
121
|
+
b"UNNotificationServiceExtension",
|
|
122
|
+
b"didReceiveNotificationRequest:withContentHandler:",
|
|
123
|
+
{
|
|
124
|
+
"arguments": {
|
|
125
|
+
3: {
|
|
126
|
+
"callable": {
|
|
127
|
+
"retval": {"type": b"v"},
|
|
128
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
)
|
|
134
|
+
r(
|
|
135
|
+
b"UNNotificationSettings",
|
|
136
|
+
b"providesAppNotificationSettings",
|
|
137
|
+
{"retval": {"type": "Z"}},
|
|
138
|
+
)
|
|
139
|
+
r(b"UNNotificationTrigger", b"repeats", {"retval": {"type": "Z"}})
|
|
140
|
+
r(
|
|
141
|
+
b"UNTimeIntervalNotificationTrigger",
|
|
142
|
+
b"triggerWithTimeInterval:repeats:",
|
|
143
|
+
{"arguments": {3: {"type": b"Z"}}},
|
|
144
|
+
)
|
|
145
|
+
r(
|
|
146
|
+
b"UNUserNotificationCenter",
|
|
147
|
+
b"addNotificationRequest:withCompletionHandler:",
|
|
148
|
+
{
|
|
149
|
+
"arguments": {
|
|
150
|
+
3: {
|
|
151
|
+
"callable": {
|
|
152
|
+
"retval": {"type": b"v"},
|
|
153
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
)
|
|
159
|
+
r(
|
|
160
|
+
b"UNUserNotificationCenter",
|
|
161
|
+
b"getDeliveredNotificationsWithCompletionHandler:",
|
|
162
|
+
{
|
|
163
|
+
"arguments": {
|
|
164
|
+
2: {
|
|
165
|
+
"callable": {
|
|
166
|
+
"retval": {"type": b"v"},
|
|
167
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
)
|
|
173
|
+
r(
|
|
174
|
+
b"UNUserNotificationCenter",
|
|
175
|
+
b"getNotificationCategoriesWithCompletionHandler:",
|
|
176
|
+
{
|
|
177
|
+
"arguments": {
|
|
178
|
+
2: {
|
|
179
|
+
"callable": {
|
|
180
|
+
"retval": {"type": b"v"},
|
|
181
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
)
|
|
187
|
+
r(
|
|
188
|
+
b"UNUserNotificationCenter",
|
|
189
|
+
b"getNotificationSettingsWithCompletionHandler:",
|
|
190
|
+
{
|
|
191
|
+
"arguments": {
|
|
192
|
+
2: {
|
|
193
|
+
"callable": {
|
|
194
|
+
"retval": {"type": b"v"},
|
|
195
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
)
|
|
201
|
+
r(
|
|
202
|
+
b"UNUserNotificationCenter",
|
|
203
|
+
b"getPendingNotificationRequestsWithCompletionHandler:",
|
|
204
|
+
{
|
|
205
|
+
"arguments": {
|
|
206
|
+
2: {
|
|
207
|
+
"callable": {
|
|
208
|
+
"retval": {"type": b"v"},
|
|
209
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
)
|
|
215
|
+
r(
|
|
216
|
+
b"UNUserNotificationCenter",
|
|
217
|
+
b"requestAuthorizationWithOptions:completionHandler:",
|
|
218
|
+
{
|
|
219
|
+
"arguments": {
|
|
220
|
+
3: {
|
|
221
|
+
"callable": {
|
|
222
|
+
"retval": {"type": b"v"},
|
|
223
|
+
"arguments": {
|
|
224
|
+
0: {"type": b"^v"},
|
|
225
|
+
1: {"type": b"Z"},
|
|
226
|
+
2: {"type": b"@"},
|
|
227
|
+
},
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
)
|
|
233
|
+
r(
|
|
234
|
+
b"UNUserNotificationCenter",
|
|
235
|
+
b"setBadgeCount:withCompletionHandler:",
|
|
236
|
+
{
|
|
237
|
+
"arguments": {
|
|
238
|
+
3: {
|
|
239
|
+
"callable": {
|
|
240
|
+
"retval": {"type": b"v"},
|
|
241
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
)
|
|
247
|
+
r(
|
|
248
|
+
b"UNUserNotificationCenter",
|
|
249
|
+
b"supportsContentExtensions",
|
|
250
|
+
{"retval": {"type": "Z"}},
|
|
251
|
+
)
|
|
252
|
+
finally:
|
|
253
|
+
objc._updatingMetadata(False)
|
|
254
|
+
|
|
255
|
+
objc.registerNewKeywordsFromSelector("UNNotification", b"init")
|
|
256
|
+
objc.registerNewKeywordsFromSelector("UNNotificationAction", b"init")
|
|
257
|
+
objc.registerNewKeywordsFromSelector("UNNotificationActionIcon", b"init")
|
|
258
|
+
objc.registerNewKeywordsFromSelector("UNNotificationAttachment", b"init")
|
|
259
|
+
objc.registerNewKeywordsFromSelector("UNNotificationAttributedMessageContext", b"init")
|
|
260
|
+
objc.registerNewKeywordsFromSelector("UNNotificationCategory", b"init")
|
|
261
|
+
objc.registerNewKeywordsFromSelector("UNNotificationRequest", b"init")
|
|
262
|
+
objc.registerNewKeywordsFromSelector("UNNotificationResponse", b"init")
|
|
263
|
+
objc.registerNewKeywordsFromSelector("UNNotificationSettings", b"init")
|
|
264
|
+
objc.registerNewKeywordsFromSelector("UNNotificationSound", b"init")
|
|
265
|
+
objc.registerNewKeywordsFromSelector("UNNotificationTrigger", b"init")
|
|
266
|
+
objc.registerNewKeywordsFromSelector("UNUserNotificationCenter", b"init")
|
|
267
|
+
|
|
268
|
+
objc.registerNewKeywords(
|
|
269
|
+
"UNCalendarNotificationTrigger",
|
|
270
|
+
("dateMatchingComponents", "repeats"),
|
|
271
|
+
"triggerWithDateMatchingComponents_repeats_",
|
|
272
|
+
)
|
|
273
|
+
objc.registerNewKeywords(
|
|
274
|
+
"UNLocationNotificationTrigger", ("region", "repeats"), "triggerWithRegion_repeats_"
|
|
275
|
+
)
|
|
276
|
+
objc.registerNewKeywords(
|
|
277
|
+
"UNNotificationAction",
|
|
278
|
+
("identifier", "title", "options"),
|
|
279
|
+
"actionWithIdentifier_title_options_",
|
|
280
|
+
)
|
|
281
|
+
objc.registerNewKeywords(
|
|
282
|
+
"UNNotificationAction",
|
|
283
|
+
("identifier", "title", "options", "icon"),
|
|
284
|
+
"actionWithIdentifier_title_options_icon_",
|
|
285
|
+
)
|
|
286
|
+
objc.registerNewKeywords(
|
|
287
|
+
"UNNotificationActionIcon", ("systemImageName",), "iconWithSystemImageName_"
|
|
288
|
+
)
|
|
289
|
+
objc.registerNewKeywords(
|
|
290
|
+
"UNNotificationActionIcon", ("templateImageName",), "iconWithTemplateImageName_"
|
|
291
|
+
)
|
|
292
|
+
objc.registerNewKeywords(
|
|
293
|
+
"UNNotificationAttachment",
|
|
294
|
+
("identifier", "URL", "options", "error"),
|
|
295
|
+
"attachmentWithIdentifier_URL_options_error_",
|
|
296
|
+
)
|
|
297
|
+
objc.registerNewKeywords(
|
|
298
|
+
"UNNotificationAttributedMessageContext",
|
|
299
|
+
("sendMessageIntent", "attributedContent"),
|
|
300
|
+
"contextWithSendMessageIntent_attributedContent_",
|
|
301
|
+
)
|
|
302
|
+
objc.registerNewKeywords(
|
|
303
|
+
"UNNotificationCategory",
|
|
304
|
+
(
|
|
305
|
+
"identifier",
|
|
306
|
+
"actions",
|
|
307
|
+
"intentIdentifiers",
|
|
308
|
+
"hiddenPreviewsBodyPlaceholder",
|
|
309
|
+
"categorySummaryFormat",
|
|
310
|
+
"options",
|
|
311
|
+
),
|
|
312
|
+
"categoryWithIdentifier_actions_intentIdentifiers_hiddenPreviewsBodyPlaceholder_categorySummaryFormat_options_",
|
|
313
|
+
)
|
|
314
|
+
objc.registerNewKeywords(
|
|
315
|
+
"UNNotificationCategory",
|
|
316
|
+
(
|
|
317
|
+
"identifier",
|
|
318
|
+
"actions",
|
|
319
|
+
"intentIdentifiers",
|
|
320
|
+
"hiddenPreviewsBodyPlaceholder",
|
|
321
|
+
"options",
|
|
322
|
+
),
|
|
323
|
+
"categoryWithIdentifier_actions_intentIdentifiers_hiddenPreviewsBodyPlaceholder_options_",
|
|
324
|
+
)
|
|
325
|
+
objc.registerNewKeywords(
|
|
326
|
+
"UNNotificationCategory",
|
|
327
|
+
("identifier", "actions", "intentIdentifiers", "options"),
|
|
328
|
+
"categoryWithIdentifier_actions_intentIdentifiers_options_",
|
|
329
|
+
)
|
|
330
|
+
objc.registerNewKeywords(
|
|
331
|
+
"UNNotificationRequest",
|
|
332
|
+
("identifier", "content", "trigger"),
|
|
333
|
+
"requestWithIdentifier_content_trigger_",
|
|
334
|
+
)
|
|
335
|
+
objc.registerNewKeywords(
|
|
336
|
+
"UNNotificationSound", ("audioVolume",), "defaultCriticalSoundWithAudioVolume_"
|
|
337
|
+
)
|
|
338
|
+
objc.registerNewKeywords(
|
|
339
|
+
"UNTextInputNotificationAction",
|
|
340
|
+
(
|
|
341
|
+
"identifier",
|
|
342
|
+
"title",
|
|
343
|
+
"options",
|
|
344
|
+
"icon",
|
|
345
|
+
"textInputButtonTitle",
|
|
346
|
+
"textInputPlaceholder",
|
|
347
|
+
),
|
|
348
|
+
"actionWithIdentifier_title_options_icon_textInputButtonTitle_textInputPlaceholder_",
|
|
349
|
+
)
|
|
350
|
+
objc.registerNewKeywords(
|
|
351
|
+
"UNTextInputNotificationAction",
|
|
352
|
+
("identifier", "title", "options", "textInputButtonTitle", "textInputPlaceholder"),
|
|
353
|
+
"actionWithIdentifier_title_options_textInputButtonTitle_textInputPlaceholder_",
|
|
354
|
+
)
|
|
355
|
+
objc.registerNewKeywords(
|
|
356
|
+
"UNTimeIntervalNotificationTrigger",
|
|
357
|
+
("timeInterval", "repeats"),
|
|
358
|
+
"triggerWithTimeInterval_repeats_",
|
|
359
|
+
)
|
|
360
|
+
expressions = {}
|
|
361
|
+
|
|
362
|
+
# END OF FILE
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyobjc-framework-UserNotifications
|
|
3
|
+
Version: 12.2
|
|
4
|
+
Summary: Wrappers for the framework UserNotifications 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,UserNotifications
|
|
10
|
+
Platform: MacOS X (>=10.14)
|
|
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
|
+
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 "UserNotifications" 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,8 @@
|
|
|
1
|
+
UserNotifications/_UserNotifications.cpython-315t-darwin.so,sha256=-hWdcYg9VWH4SJUV4uby2ojSh3anlPsbSvaiOT9zgw4,84856
|
|
2
|
+
UserNotifications/__init__.py,sha256=oI53cikg0PmHzelDiLlovVW7HYX8QLfEA2S5uB4xmWQ,1482
|
|
3
|
+
UserNotifications/_metadata.py,sha256=MDQJDAikwjlH8nsRT9w3mxfWL5i4_k81CO6JftOLUw4,13346
|
|
4
|
+
pyobjc_framework_usernotifications-12.2.dist-info/METADATA,sha256=2OTrVcIp33VFuz3LcbHJNVp9hTocmj-19VM38CRZ5Sg,2537
|
|
5
|
+
pyobjc_framework_usernotifications-12.2.dist-info/WHEEL,sha256=_nP7yfUfwxmGX9RTJbiMJrobK8htS_8OhvZ4aYaIBs4,116
|
|
6
|
+
pyobjc_framework_usernotifications-12.2.dist-info/pyobjc-build-info.txt,sha256=Ri0Wl_rPog8K797Y9SwUgX2P5KgewvMu0uQOBhtk0lo,83
|
|
7
|
+
pyobjc_framework_usernotifications-12.2.dist-info/top_level.txt,sha256=8vAOKdaCEmwlKtsz1kWXjWgWE5Vitsn-8hEqiyBjI3Q,18
|
|
8
|
+
pyobjc_framework_usernotifications-12.2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
UserNotifications
|