gcm

Python client for Google Cloud Messaging (Android GCM)


Keywords
android, gcm, push, notification, google, cloud, messaging
License
Other
Install
pip install gcm==0.3

Documentation

pip install gcm
from gcm import GCM

gcm = GCM('API_KEY')

data = {'key': 'value'}
registration_ids = ['1234', '5678']

gcm.json_request(registration_ids, data, **kwargs)