NSUserNotificationCenter.defaultUserNotificationCenter() возвращает None в Python
Я пытаюсь подключиться к центру уведомлений Mountain Lion через python. Я установил pyobjc и следую инструкциям здесь и здесь. Также см.: Работа с Центром уведомлений Mountain Lion с использованием PyObjC
Вот мой код:
import Foundation, objc
import AppKit
import sys
NSUserNotification = objc.lookUpClass('NSUserNotification')
NSUserNotificationCenter = objc.lookUpClass('NSUserNotificationCenter')
def notify(title, subtitle, info_text, delay=0, sound=False, userInfo={}):
""" Python method to show a desktop notification on Mountain Lion. Where:
title: Title of notification
subtitle: Subtitle of notification
info_text: Informative text of notification
delay: Delay (in seconds) before showing the notification
sound: Play the default notification sound
userInfo: a dictionary that can be used to handle clicks in your
app's applicationDidFinishLaunching:aNotification method
"""
notification = NSUserNotification.alloc().init()
notification.setTitle_(title)
notification.setSubtitle_(subtitle)
notification.setInformativeText_(info_text)
notification.setUserInfo_(userInfo)
if sound:
notification.setSoundName_("NSUserNotificationDefaultSoundName")
notification.setDeliveryDate_(Foundation.NSDate.dateWithTimeInterval_sinceDate_(delay, Foundation.NSDate.date()))
NSUserNotificationCenter.defaultUserNotificationCenter().scheduleNotification_(notification)
Когда я вызываю функцию notify с аргументами, я получаю ошибку атрибута:
AttributeError: 'NoneType' object has no attribute 'scheduleNotification_'
Я не понимаю почему NSUserNotificationCenter.defaultUserNotificationCenter()
возвращает объект NoneType. Я не смог ничего сделать по этому вопросу в Интернете или ТАК.
1 ответ
Таким образом, это прекрасно работает, если вы советуете Неда использовать Python по умолчанию. Это также сработало, когда я установил pyobjc в 32-битном дистрибутиве enthought. Мне кажется, что pyobjc работает только на 32-битных дистрибутивах Python (я не могу подтвердить это, но пока, похоже, это так).
(Примечание: когда я опубликовал вопрос, я установил pyobjc в 64-битном дистрибутиве Enthought).