文件名称:apush:一个简单的苹果推送通知服务提供者
文件大小:5KB
文件格式:ZIP
更新时间:2024-08-02 03:00:56
Python
推 一个用 Python 编写的简单 Apple 推送通知服务提供者。 重要提示: Service会覆盖Notification对象的identifier属性。 相反,错误包括令牌。 from apush import Service , Notification , ERROR_INVALID_TOKEN token = 'hex-encoded token' . decode ( 'hex' ) service = Service ( '/path/to/certificate.pem' ) notification = Notification ( token , alert = 'A new notification' , badge = 1 ) service . send ( notification ) 对于多个通知,请使用queue和flush 。 for n
【文件预览】:
apush-master
----setup.py(518B)
----apush()
--------service.py(5KB)
--------__init__.py(73B)
--------notification.py(2KB)
----MANIFEST.in(34B)
----LICENSE(1KB)
----README.md(943B)