Metadata-Version: 1.1
Name: django-gcm
Version: 1.0.3
Summary: Google Cloud Messaging Server
Home-page: https://github.com/bogdal/django-gcm
Author: Adam Bogdal
Author-email: adam@bogdal.pl
License: UNKNOWN
Download-URL: https://github.com/bogdal/django-gcm/zipball/master
Description: django-gcm
        ==========
        
        .. image:: https://travis-ci.org/bogdal/django-gcm.png?branch=master
            :target: https://travis-ci.org/bogdal/django-gcm
            
        .. image:: https://version-image.appspot.com/pypi/?name=django-gcm
            :target: https://pypi.python.org/pypi/django-gcm/
            
        
        Google Cloud Messaging Server in Django
        
        Quickstart
        ----------
        
        Install the package via ``pip``::
        
            pip install django-gcm
            
        Add ``gcm`` to ``INSTALLED_APPS`` in ``settings.py``
        
        Add ``GCM_APIKEY`` to ``settings.py`` file:
        
        .. code-block:: python
        
            GCM_APIKEY = "<api_key>"
        
        
        Add ``gcm urls`` to ``urls.py`` file:
        
        .. code-block:: python
        
            urlpatterns = patterns('',
              ...
              url(r'', include('gcm.urls')),
              ...
            )
        
        
        Documentation: `https://django-gcm.readthedocs.org <https://django-gcm.readthedocs.org>`_
        
        
        Client
        ------
        
        Simple client application you can find `here <https://github.com/bogdal/pager>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
