Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

nnsnodnb/django-ios-notifications

Repository files navigation

django-ios-notifications

https://travis-ci.org/nnsnodnb/django-ios-notifications.svg?branch=master https://coveralls.io/repos/github/nnsnodnb/django-ios-notifications/badge.svg?branch=master Documentation Status

A Django plugin for Apple Push Notification Service.

Supported python versions

2.7, 3.4, 3.5, 3.6

Supported django versions

1.7 - 1.11, 2.0 (Only Python3.x or later)

Installation

$ pip install ios-notification

Add notification into INSTALLED_APPS in settings.py file

INSTALLED_APPS += (
    'notification',
)

Add notification routing in urls.py file

from django.conf.urls import include

urlpatterns += (
    url(r'^ios/', include('notification.urls', namespace='notification')),
)

Author

nnsnodnb

LICENSE

MIT License