Google Cloud Messaging Server


License
Other
Install
pip install django-gcm==1.2.0

Documentation

django-gcm

https://requires.io/github/bogdal/django-gcm/requirements.svg?branch=master

Google Cloud Messaging Server in Django

Quickstart

Install the package via pip:

pip install django-gcm  --process-dependency-links

Add gcm to INSTALLED_APPS in settings.py

Add GCM_APIKEY to settings.py file:

GCM_APIKEY = "<api_key>"

Add gcm urls to urls.py file:

urlpatterns = [
  ...
  url(r'', include('gcm.urls')),
  ...
]

Documentation: https://django-gcm.readthedocs.org

Client

Simple client application you can find here.