Metadata-Version: 1.1
Name: django-fcm
Version: 0.1.0
Summary: A Django package that enables sending messages using FCM (Firebase Cloud Messaging).
Home-page: https://django-fcm.readthedocs.io/en/latest/
Author: Chitrank Dixit
Author-email: chitrankdixit@gmail.com
License: MIT License
Description: django-fcm
        ==========
        .. image:: https://badge.fury.io/py/django-fcm.svg
            :target: https://badge.fury.io/py/django-fcm
        
        Firebase Cloud Messaging Server in Django
        
        Quickstart
        ----------
        
        Install the package via ``pip``::
        
            pip install django-fcm  --process-dependency-links
            
        
        
        Add ``fcm`` to ``INSTALLED_APPS`` in ``settings.py``
        
        .. code-block:: python
        
           INSTALLED_APPS = [
               ....,
               fcm
           ]
        
        Add ``FCM_APIKEY`` to ``settings.py`` file:
        
        .. code-block:: python
        
            FCM_APIKEY = "<api_key>"
        
        
        Add ``fcm urls`` to ``urls.py`` file:
        
        .. code-block:: python
        
            urlpatterns = [
              ...
              url(r'', include('fcm.urls')),
              ...
            ]
        
        
        Python 3 support
        ----------------
        ``django-fcm`` is fully compatible with Python 3.4 & 3.5
        
        Django Support
        ----------------
        ``django-fcm`` is fully compatible with Django 1.8, 1.9 and 1.10
        
        Django Rest Framework
        ----------------
        ``django-fcm`` is fully compatible with django-rest-framework 3.3.2.
        
        
        Documentation: `https://django-fcm.readthedocs.org <https://django-fcm.readthedocs.org>`_
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
