Source code for pyams_zmq

#
# Copyright (c) 2008-2015 Thierry Florac <tflorac AT ulthar.net>
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#

"""PyAMS_zmq package

This package provides features to enable local or remote inter-processes communication
using the 0MQ protocol and the PyZMQ package.

Several PyAMS packages rely on this package to provide asynchronous handling of long operations
like medias conversions, Elasticsearch indexing or communication with the tasks scheduler.
"""

__docformat__ = 'restructuredtext'


from pyramid.i18n import TranslationStringFactory
_ = TranslationStringFactory('pyams_zmq')


[docs]def includeme(config): """Pyramid include""" # load registry components config.scan()