Support for Safari Push Notifications from within Django
Project description
Support for Safari Push Notifications from within Django. Note that this package helps registering notifications, not sending them. Safari Push works with APNs, so for sending, please use APNs Clerk.
Documentation
The full documentation will soon be at https://django-safari-notifications.readthedocs.io.
For the Safari Push documentations, refer to Apple Safari Push.
Quickstart
Install django_safari_notifications:
pip install django-safari-notifications
If you already have a valid pushPackage.zip
, please serve it directly via your web server (Nginx/Apache) at the corresponding url: {webServiceUrl}/{version}/pushPackages/{websitePushID}
(refer to Apple Safari Push)
Else, you must subclass django_safari_notifications.apps.DjangoSafariNotificationsConfig
and set the cert
and passphrase
values.
from django_safari_notifications.apps import DjangoSafariNotificationsConfig
class MySafariNotificationsConfig(DjangoSafariNotificationsConfig):
cert = '/path/to/cert.pem'
passphrase = 'passphrase for key'
then add your config to your INSTALLED_APPS
:
INSTALLED_APPS = (
...
'my_safari_app.apps.MySafariNotificationsConfig', # if you need the pushPackage to be dynamically built
## OR ##
'django_safari_notifications.apps.DjangoSafariNotificationsConfig', # If you are serving your own push package via Nginx
...
)
Add django_safari_notifications’s URL patterns:
from django_safari_notifications import urls as django_safari_notifications_urls
urlpatterns = [
...
url(r'^', include(django_safari_notifications_urls, namespace='safari_pn')),
...
]
Do not use any prefix for the urls, unless you are serving your own pushPackage.zip
statically
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Credits
Tools used in rendering this package:
History
0.1.0 (2016-12-10)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-safari-notifications-0.1.1.tar.gz
.
File metadata
- Download URL: django-safari-notifications-0.1.1.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d325a0e43bf38b3f3cea9e62a040ebbf836f000415a7065eba94db372d2c66a3 |
|
MD5 | 7eab30db43d6f4bf5af1a84b3520f718 |
|
BLAKE2b-256 | dac8819fdcb5ebc321cc631321ab83863f1dc22005b32cfeb5568e167929569a |