/usr/share/pyshared/gcm_client-0.1.4.egg-info/PKG-INFO is in python-gcm-client 0.1.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | Metadata-Version: 1.1
Name: gcm-client
Version: 0.1.4
Summary: Python client for Google Cloud Messaging (GCM)
Home-page: https://bitbucket.org/sardarnl/gcm-client
Author: Sardar Yumatov
Author-email: ja.doma@gmail.com
License: Apache 2.0
Description: gcm-client
==========
Python client for `Google Cloud Messaging (GCM) <http://developer.android.com/google/gcm/index.html>`_.
Check `documentation <http://gcm-client.readthedocs.org>`_ to learn how to use it.
Check the client with similar interface for `Apple Push Notification service <https://pypi.python.org/pypi/apns-client/>`_.
Requirements
------------
- `requests <http://docs.python-requests.org>`_ - HTTP request, handles proxies etc.
- `omnijson <https://pypi.python.org/pypi/omnijson/>`_ if you use Python 2.5 or older.
Alternatives
------------
Th only alternative library known at the time of writing was `python-gcm
<https://pypi.python.org/pypi/python-gcm>`_. This library differs in the
following design decisions:
- *Predictable execution time*. Do not automatically retry request on failure.
According to Google's recommendations, each retry has to wait exponential
back-off delay. We use Celery back-end, where the best way to retry after
some delay will be scheduling the task with ``countdown=delay``. Sleeping
while in Celery worker hurts your concurrency.
- *Do not forget results if you need to retry*. This sounds obvious, but
``python-gcm`` drops important results, such as canonical ID mapping if
request needs to be (partially) retried.
- *Clean pythonic API*. No need to borrow all Java like exceptions etc.
- *Do not hard-code validation, let GCM fail*. This decision makes library
a little bit more future proof.
Support
-------
GCM client was created by `Sardar Yumatov <mailto:ja.doma@gmail.com>`_,
contact me if you find any bugs or need help. Contact `Getlogic
<http://getlogic.nl>`_ if you need a full-featured push notification service
for all popular platforms. You can view outstanding issues on the `GCM
Bitbucket page <https://bitbucket.org/sardarnl/gcm-client/>`_.
Keywords: gcm push notification google cloud messaging android
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|