django-ios-notifications is a Django app that makes it easy to send push notifications to iOS devices.
Installation
You can install with pip: `pip install django-ios-notifications`.
You then need to add `ios_notifications` to `INSTALLED_APPS` in your settings file.
If you want to use the API for registering devices you will also need to make the appropriate changes to your urls file:
```python
urlpatterns = patterns('',
...
url(r'^ios-notifications/', include('ios_notifications.urls')),
...
)
```
After that you will need to run `./manage.py syncdb` to create the database tables required for django-ios-notifications.
Package Documentation
Product's homepage
Requirements:
· Python
· Django