-1

Possible Duplicate:
Server side implementation using Python/(GAE) for push notifications for Android app

From where(useful links) I should start(i need the basics for startup ) to Write Server side implement using PYTHON(GAE) for push notifications for **"android" app.

Community
  • 1
  • 1
yasir
  • 137
  • 2
  • 14

1 Answers1

2

There is an open-source project that already implements this in python: python-gcm

il_guru
  • 8,383
  • 2
  • 42
  • 51
Peter Knego
  • 79,991
  • 11
  • 123
  • 154
  • Have you actually used this and got it working? I'm not even able to do `from gcm import *;GCM` -- `NameError: name 'GCM' is not defined`, and the documentation for that package does not say what to import – jontsai Oct 12 '12 at 00:05
  • 1
    For the version that I installed via `pip install python-gcm`, I had to import via `from gcm.gcm import GCM` – jontsai Oct 12 '12 at 17:09