Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bogdal/django-gcm
Google Cloud Messaging Server in Django
https://github.com/bogdal/django-gcm
Last synced: 8 days ago
JSON representation
Google Cloud Messaging Server in Django
- Host: GitHub
- URL: https://github.com/bogdal/django-gcm
- Owner: bogdal
- License: bsd-2-clause
- Created: 2012-07-10T16:33:53.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-09-13T08:04:10.000Z (about 8 years ago)
- Last Synced: 2024-10-14T01:44:17.156Z (21 days ago)
- Language: Python
- Homepage: https://django-gcm.readthedocs.org
- Size: 104 KB
- Stars: 98
- Watchers: 15
- Forks: 42
- Open Issues: 19
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - django-gcm - Google Cloud Messaging Server in Django (Python)
README
django-gcm
==========.. image:: https://img.shields.io/travis/bogdal/django-gcm/master.svg
:target: https://travis-ci.org/bogdal/django-gcm.. image:: https://img.shields.io/codecov/c/github/bogdal/django-gcm/master.svg
:target: https://codecov.io/github/bogdal/django-gcm?branch=master
.. image:: https://requires.io/github/bogdal/django-gcm/requirements.svg?branch=master
:target: https://requires.io/github/bogdal/django-gcm/requirements/?branch=master.. image:: https://img.shields.io/pypi/v/django-gcm.svg
:target: https://pypi.python.org/pypi/django-gcm/
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:
.. code-block:: python
GCM_APIKEY = ""
Add ``gcm urls`` to ``urls.py`` file:
.. code-block:: python
urlpatterns = [
...
url(r'', include('gcm.urls')),
...
]Documentation: `https://django-gcm.readthedocs.org `_
Client
------Simple client application you can find `here `_.