Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python3-kombu-4.6.11-bp154.1.62 RPM for noarch

From OpenSuSE Leap 15.4 for noarch

Name: python3-kombu Distribution: SUSE Linux Enterprise 15 SP4
Version: 4.6.11 Vendor: openSUSE
Release: bp154.1.62 Build date: Thu May 12 03:18:09 2022
Group: Unspecified Build host: cloud103
Size: 1779263 Source RPM: python-kombu-4.6.11-bp154.1.62.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/celery/kombu
Summary: AMQP Messaging Framework for Python
An AMQP messaging framework for Python.

AMQP is the Advanced Message Queuing Protocol, an open standard protocol
for message orientation, queuing, routing, reliability and security.

One of the most popular implementations of AMQP is RabbitMQ.

The aim of Kombu is to make messaging in Python as easy as possible by
providing an idiomatic high-level interface for the AMQP protocol, and also
provide proven and tested solutions to common messaging problems.

Provides

Requires

License

BSD-3-Clause

Changelog

* Thu Jul 09 2020 Matthias Fehring <buschmann23@opensuse.org>
  - update to 4.6.11
    - Revert incompatible changes in #1193 and additional improvements (#1211)
    - Default_channel should reconnect automatically (#1209)
  - drop unnecessary fakeredis dependency to fix build on older distros
* Sun Jun 14 2020 Dirk Mueller <dmueller@suse.com>
  - update to 4.6.10:
    - set _connection in _ensure_connection (#1205)
    - Fix for the issue #1172
    - reuse connection [bug fix]
    - Prevent failure if AWS creds are not explicitly defined on predefined.
    - Raise RecoverableConnectionError in maybe_declare with retry on and.
    - possible fix for #1174 .
    - Fix: make SQLAlchemy Channel init thread-safe
    - Added integration testing infrastructure for RabbitMQ
    - Initial redis integration tests implementation
    - SQLAlchemy transport: Use Query.with_for_update() instead of deprecated
    - Fix Consumer Encoding
    - Added Integration tests for direct, topic and fanout exchange types
    - Added TTL integration tests
    - Added integration tests for priority queues
    - fix 100% cpu usage on linux while using sqs
    - Modified Mutex to use redis LuaLock implementation
    - Fix: eliminate remaining race conditions from SQLAlchemy Channel
    - Fix connection imaybe_declare (#1196)
    - Fix for issue #1198: Celery crashes in cases where there aren’t enough
    - Ensure connection when connecting to broker
    - update pyamqp to 2.6 with optional cythonization
* Mon Mar 30 2020 Marketa Calabkova <mcalabkova@suse.com>
  - Update to 4.6.8
    * Add support for health_check_interval option in broker_transport_options.
    * Adding retry_on_timeout parameter
    * Support standard values for ssl_cert_reqs query parameter.
    * enabled ssl certificate verification when amqps is used for pyamqp transport
* Thu Mar 12 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Fix build without python2
* Fri Dec 20 2019 Dirk Mueller <dmueller@suse.com>
  - drop unnecessary zstandard dependency to fix build on older distros
* Fri Dec 13 2019 Matthias Fehring <buschmann23@opensuse.org>
  - Update to 4.6.7:
    - Use importlib.metadata from the standard library on Python 3.8+ (#1086).
    - Add peek lock settings to be changed using transport options (#1119).
    - Fix redis health checks (#1122).
    - Reset ready before execute callback (#1126).
    - Add missing parameter queue_args in kombu.connection.SimpleBuffer (#1128)
  - Update to 4.6.6:
    - Revert _lookup_direct and related changes of redis.
    - Python 3.8 support
    - Fix 'NoneType' object has no attribute 'can_read' bug of redis transport
    - Issue #1019 Fix redis transport socket timeout
    - Add wait timeout settings to receive queue message (#1110)
    - Bump py-amqp to 2.5.2
  - Remove patches now included upstream:
    - python38.patch
* Tue Oct 08 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 4.6.5:
    - Revert _lookup api and correct redis implemetnation.
    - Major overhaul of redis test cases by adding more full featured fakeredis module.
    - Add more test cases to boost coverage of kombu redis transport.
    - Refactor the producer consumer test cases to be based on original mocks and be passing
    - Fix lingering line length issue in test.
    - Sanitise url when include_password is false
    - Pinned pycurl to 7.43.0.2 as it is the latest build with wheels provided
    - Bump py-amqp to 2.5.2
  - Rebase python38.patch
* Wed Sep 11 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 4.6.4:
    - Use importlib-metadata instead of pkg_resources for better performance
    - Allow users to switch URLs while omitting the resource identifier (#1032)
    - Don't stop receiving tasks on 503 SQS error. (#1064)
    - Fix maybe declare (#1066)
    - Revert "Revert "Use SIMEMBERS instead of SMEMBERS to check for queue (Redis Broker)
    - Fix MongoDB backend to work properly with TTL (#1076)
    - Make sure that max_retries=0 is treated differently than None (#1080)
    - Bump py-amqp to 2.5.1
  - Add patch to fix build with py 3.8:
    * python38.patch
* Fri Jul 19 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Do not depend on pytest-sugar, it is just pretty-formatter
* Wed Jun 19 2019 pgajdos@suse.com
  - version update to 4.6.3
    * Revert FastUUID for kombu 4.6
    * Fix sbugs and regressions
    * other bu fixes
* Tue Apr 23 2019 Thomas Bechtold <tbechtold@suse.com>
  - Add redis version for BuildRequires. The tests fail with a
    lower version so detect that early
* Fri Apr 05 2019 pgajdos@suse.com
  - version update to 4.5.0
    - The Redis transport now supports a custom separator for keys.
    - When the SQS server returns a timeout we ignore it and keep trying
      instead of raising an error.
    - Properly declare async support for the Qpid transport.
    - Revert `celery/kombu#906 <https://github.com/celery/kombu/pull/906>`_ and
      introduce unique broadcast queue names as an optional keyword argument.
    - Codebase improvements and fixes
* Thu Mar 28 2019 pgajdos@suse.com
  - version update to 4.4.0
    * Restore bz2 import checks in compression module.
    * Fix regression that occurred in 4.3.0
      when parsing  Redis Sentinel master URI containing password.
    * Handle the case when only one Redis Sentinel node is provided.
    * Support SSL URL parameters correctly for `rediss://`` URIs.
    * Revert `celery/kombu#954 <https://github.com/celery/kombu/pull/954>`_.
      Instead bump the required redis-py dependency to 3.2.0
      to include this fix `andymccurdy/redis-py@4e1e748
    * Added support for broadcasting using a regular expression pattern
      or a glob pattern to multiple Pidboxes.
* Wed Mar 13 2019 Hans-Peter Jansen <hpj@urpla.net>
  - Build require a more current msgpack version
* Fri Feb 15 2019 John Vandenberg <jayvdb@gmail.com>
  - Added minimum versions to dependencies where provided by upstream
  - Re-enable tests on Python 3
  - Update to 4.3.0
    * Added Python 3.7 support.
    * Avoid caching queues which are declared with a TTL.
      Queues that are declared with a TTL are now also be excluded from the
      in-memory cache in case they expire between publishes on the same channel.
    * Added an index to the Message table for the SQLAlchemy transport.
      The index allows to effectively sorting the table by the message's timestamp.
    * Added a timeout that limits the amount of time we retry
      to reconnect to a transport.
    * Class celery.asynchronous.hub.Hub is now reentrant.
      This allows calling celery.bin.celery.main to revive a worker in
      the same process after rescuing from shutdown.
    * Queues now accept string exchange names as arguments as documented.
      Tests were added to avoid further regressions.
    * Specifying names for broadcast queues now work as expected.
      Previously, named broadcast queues did not create multiple queues per worker.
      They incorrectly declared the named queue which resulted in one queue per
      fanout exchange, thus missing the entire point of a fanout exchange.
      The behavior is now matched to unnamed broadcast queues.
    * When initializing the Redis transport in conjunction with gevent
      restore all unacknowledged messages to queue.
    * Allow kombu.simple.SimpleQueue to pass queue_arguments to Queue object,
      which allows it to connect to RabbitMQ queues with custom arguments
      like 'x-queue-mode'='lazy'.
    * Add support for 'rediss' scheme for secure Redis connections.
    * Added the Azure Storage Queues transport.
    * Added the Azure Service Bus transport.
    * Drop remaining mentions of Jython support completely.
    * When publishing messages to the Pidbox, retry if an error occurs.
    * Fix infinite loop in kombu.asynchronous.hub.Hub.create_loop.
      Previous attempt to fix the problem (PR kombu/760) did not consider
      an edge case. It is now fixed.
    * Worker shutdown no longer duplicates messages when using the SQS broker.
    * When using the SQS broker, prefer boto's default region before our hardcoded default.
    * Fixed closing of shared redis sockets which previously caused Celery to hang.
    * the Pyro transport now works with recent Pyro versions.
      Also added a Pyro Kombu Broker that this transport needs for its queues.
    * Handle non-base64-encoded SQS messages.
    * Move the handling of Sentinel failures to the redis library itself.
      Previously, Redis Sentinel worked only if the first node's sentinel
      service in the URI was up. A server outage would have caused downtime.
    * When using Celery and the pickle serializer with binary data as part of the
      payload, `UnicodeDecodeError` would be raised as the content was not utf-8.
      We now replace on errors.
    * Allow setting boto3.sqs.create_queue Attributes via transport_options.
    * Fixed infinite loop when entity.channel is replaced by revive() on connection
      drop.
    * Added optional support for Brotli compression.
    * When using the SQS broker, FIFO queues with names that ended with the 'f' letter
      were incorrectly parsed. This is now fixed.
    * Added optional support for LZMA compression.
    * Added optional support for ZStandard compression.
    * Require py-amqp 2.4.0 as the minimum version.
    * The value of DISABLE_TRACEBACKS environment variable is now respected on debug, info
      and warning logger level.
    * As documented in kombu/#741 and eventlet/eventlet#415 there is a mismatch
      between the monkey-patched eventlet queue and the interface Kombu is
      expecting. This causes Celery to crash when the broker_pool_limit
      configuration option is set.  eventlet/eventlet#415 suggests that the
      mutex can be a noop. This is now the case.
    * Documentation improvements
* Thu Jan 31 2019 mcepl@suse.com
  - Updated to 4.2.2.post1:
    - Support both Redis client version 2.x and version 3.x.
* Wed Aug 15 2018 sjamgade@suse.com
  - Updated to 4.2.1
    * The 4.2.0 release contained remains of the ``async`` module by accident.
      This is now fixed.
    * Handle librabbitmq fileno raising a ValueError when socket is not
      connected.
    * Now passing ``max_retries``, ``interval_start``,
      ``interval_step``, ``interval_max`` parameters from broker
      ``transport_options`` to
      :meth:`~kombu.Connection.ensure_connection` when returning
      :meth:`~kombu.Connection.default_connection` (Issue #765).
    * Qpid: messages are now durable by default
    * Kombu now requires version 2.10.4 or greater of the redis
      library, in line with Celery
    * Fixed ImportError in some environments with outdated simplejson
    * MongoDB: fixed failure on MongoDB versions with an "-rc" tag
    * Ensure periodic polling frequency does not exceed timeout in
      virtual transport
    * Fixed string handling when using python-future module
    * Replaced "async" with "asynchronous" in preparation for Python
      3.7
    * Allow removing pool size limit when in use
    * Codebase improvements and fixes
    * Documentation improvements
  - added python as requirement for ssl module is needed by amqp
* Wed May 23 2018 mcepl@suse.com
  - Clean up SPEC and obsolete python-carrot
  - Remove superfluous python-devel
* Tue Jan 30 2018 dmueller@suse.com
  - update to 4.1.0:
    - RabbitMQ: Ensured safer encoding of queue arguments.
    - Added fallback to :func:``uuid.uuid5`` in :func:``generate_oid`` if
    - Added Python 3.6 to CI testing
    - Fixed bug around modifying dictionary size while iterating over it
* Wed Jun 28 2017 benoit.monin@gmx.fr
  - convert the package to singlespec
  - import changes from python3-kombu:
    * add AUTHORS to the package documentation
    * use a more precise file list
  - drop test BuildRequires mock, nose-cover3 and unittest2:
    not needed anymore
  - add fdupes as BuildRequires and call it after install
  - skip the tests for python3 since they fail with python 3.6 (#675)
* Thu Mar 16 2017 dmueller@suse.com
  - update to 4.0.2:
    - Now depends on :mod:`amqp` 2.0.
      The new py-amqp version have been refactored for better performance,
      using modern Python socket conventions, and API consistency.
    - No longer depends on :mod:`anyjson`.
      Kombu will now only choose between :pypi:`simplejson` and the built-in
      :mod:`json`.
    - Removed transports that are no longer supported in this version:
    - Django ORM transport
    - SQLAlchemy ORM transport
    - Beanstalk transport
    - ZeroMQ transport
    - amqplib transport (use pyamqp).
* Mon Nov 14 2016 dmueller@suse.com
  - update to 3.0.35:
    - msgpack: msgpack support now requires msgpack-python > 0.4.7.
    - Redis: TimeoutError was no longer handled as a recoverable error.
    - msgpack: Fixes support for binary/unicode data
    - Qpid: Adds async error handling.
    - msgpack: Use binary encoding instead of utf-8 (Issue #570).
* Wed Jan 13 2016 antoine.belvire@laposte.net
  - Update to 3.0.33:
    * Now depends on :mod:`amqp` 1.4.9
    * Redis: Fixed problem with auxilliary connections causing the
      main consumer connection to be closed (Issue #550)
    * Qpid: No longer uses threads to operate, to ensure
      compatibility with all environments (Issue #531)
  - See /usr/share/doc/packages/python-kombu/Changelog for changes
    introduced between 3.0.27 and 3.0.32
  - Remove fix-tests.patch
* Mon Sep 14 2015 tbechtold@suse.com
  - Add fix-tests.patch to fix testcases with newer python-mock.
* Fri Jul 24 2015 seife+obs@b1-systems.com
  - fix non-SUSE build by conditionalizing Suggests: tag
* Thu May 07 2015 benoit.monin@gmx.fr
  - update to 3.0.26:
    * Fixed compatibility with py-redis versions before 2.10.3
      (Issue #470)
  - update project URL
  - set a minimum version for python-anyjson in BuildRequires
  - add back python-msgpack-python as test requirement
  - pass -q to test to avoid spamming the build log
* Wed Apr 22 2015 tbechtold@suse.com
  - update to 3.0.25:
    - pyamqp/librabbitmq now uses 5671 as default port when SSL is enabled
      (Issue #459).
    - Redis: Now supports passwords in ``redis+socket://:pass@host:port`` URLs
      (Issue #460).
    - ``Producer.publish`` now defines the ``expiration`` property in support
      of the `RabbitMQ per-message TTL extension`_.
    - Connection transport attribute now set correctly for all transports.
    - qpid: Fixed bug where the connectionw as not being closed properly.
    - :class:`~kombu.entity.bindings` is now JSON serializable (Issue #453).
    - Fixed typo in error when yaml is not installed (said ``msgpack``).
    - Redis: Now properly handles ``TimeoutError raised by py-redis.
    - qpid: Adds additional string to check for when connecting to qpid.
      When we connect to qpid, we need to ensure that we skip to the next SASL
      mechanism if the current mechanism fails. Otherwise, we will keep retrying
      the connection with a non-working mech.
    - qpid: Handle ``NotFound`` exceptions.
    - :class:`Queue.__repr__` now makes sure return value is not unicode
      (Issue #440).
    - qpid: ``Queue.purge`` incorrectly raised :exc:`AttributeErrror` if the
      does not exist (Issue #439).
    - Linux: Now ignores permission errors on epoll unregister.
* Thu Nov 20 2014 mcihar@suse.cz
  - update to version 3.0.24:
    - The `Qpid <http://qpid.apache.org/>`_ broker is supported for Python 2.x
      environments. The Qpid transport includes full SSL support within Kombu. See
      the :mod:`kombu.transport.qpid` docs for more info.
    - Dependencies: extra[librabbitmq] now requires librabbitmq 1.6.0
    - Docstrings for :class:`~kombu.utils.limit.TokenBucket` did not match
      implementation.
    - :func:`~kombu.common.oid_from` accidentally called ``uuid.getnode()`` but
      did not use the return value.
    - Redis: Now ignores errors when cosing the underlying connection.
    - Redis: Restoring messages will now use a single connection.
    - ``kombu.five.monotonic``: Can now be imported even if ctypes is not
      available for some reason (e.g. App Engine)
    - Documentation: Improved example to use the ``declare`` argument to
      ``Producer`` (Issue #423).
    - Django: Fixed ``app_label`` for older Django versions (``< 1.7``).
      (Issue #414).
  - fixed python-amqp BuildRequire

Files

/usr/lib/python3.6/site-packages/kombu
/usr/lib/python3.6/site-packages/kombu-4.6.11-py3.6.egg-info
/usr/lib/python3.6/site-packages/kombu-4.6.11-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/kombu-4.6.11-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/kombu-4.6.11-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/kombu-4.6.11-py3.6.egg-info/not-zip-safe
/usr/lib/python3.6/site-packages/kombu-4.6.11-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/kombu-4.6.11-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/kombu/__init__.py
/usr/lib/python3.6/site-packages/kombu/__pycache__
/usr/lib/python3.6/site-packages/kombu/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/abstract.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/abstract.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/clocks.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/clocks.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/common.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/common.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/compat.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/compat.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/compression.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/compression.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/connection.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/connection.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/entity.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/entity.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/exceptions.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/exceptions.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/five.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/five.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/log.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/log.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/matcher.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/matcher.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/message.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/message.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/messaging.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/messaging.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/mixins.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/mixins.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/pidbox.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/pidbox.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/pools.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/pools.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/resource.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/resource.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/serialization.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/serialization.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/simple.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/__pycache__/simple.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/abstract.py
/usr/lib/python3.6/site-packages/kombu/asynchronous
/usr/lib/python3.6/site-packages/kombu/asynchronous/__init__.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/debug.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/debug.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/hub.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/hub.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/semaphore.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/semaphore.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/timer.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/__pycache__/timer.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/__init__.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/__pycache__
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/__pycache__/connection.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/__pycache__/connection.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/__pycache__/ext.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/__pycache__/ext.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/connection.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/ext.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__init__.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/connection.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/connection.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/ext.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/ext.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/message.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/message.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/queue.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/__pycache__/queue.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/connection.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/ext.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/message.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/aws/sqs/queue.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/debug.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/http
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/__init__.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/__pycache__
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/__pycache__/base.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/__pycache__/base.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/__pycache__/curl.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/__pycache__/curl.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/base.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/http/curl.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/hub.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/semaphore.py
/usr/lib/python3.6/site-packages/kombu/asynchronous/timer.py
/usr/lib/python3.6/site-packages/kombu/clocks.py
/usr/lib/python3.6/site-packages/kombu/common.py
/usr/lib/python3.6/site-packages/kombu/compat.py
/usr/lib/python3.6/site-packages/kombu/compression.py
/usr/lib/python3.6/site-packages/kombu/connection.py
/usr/lib/python3.6/site-packages/kombu/entity.py
/usr/lib/python3.6/site-packages/kombu/exceptions.py
/usr/lib/python3.6/site-packages/kombu/five.py
/usr/lib/python3.6/site-packages/kombu/log.py
/usr/lib/python3.6/site-packages/kombu/matcher.py
/usr/lib/python3.6/site-packages/kombu/message.py
/usr/lib/python3.6/site-packages/kombu/messaging.py
/usr/lib/python3.6/site-packages/kombu/mixins.py
/usr/lib/python3.6/site-packages/kombu/pidbox.py
/usr/lib/python3.6/site-packages/kombu/pools.py
/usr/lib/python3.6/site-packages/kombu/resource.py
/usr/lib/python3.6/site-packages/kombu/serialization.py
/usr/lib/python3.6/site-packages/kombu/simple.py
/usr/lib/python3.6/site-packages/kombu/transport
/usr/lib/python3.6/site-packages/kombu/transport/SLMQ.py
/usr/lib/python3.6/site-packages/kombu/transport/SQS.py
/usr/lib/python3.6/site-packages/kombu/transport/__init__.py
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/SLMQ.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/SLMQ.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/SQS.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/SQS.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/azureservicebus.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/azureservicebus.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/azurestoragequeues.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/azurestoragequeues.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/base.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/base.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/consul.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/consul.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/etcd.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/etcd.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/filesystem.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/filesystem.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/librabbitmq.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/librabbitmq.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/memory.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/memory.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/mongodb.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/mongodb.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/pyamqp.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/pyamqp.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/pyro.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/pyro.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/qpid.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/qpid.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/redis.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/redis.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/zookeeper.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/__pycache__/zookeeper.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/azureservicebus.py
/usr/lib/python3.6/site-packages/kombu/transport/azurestoragequeues.py
/usr/lib/python3.6/site-packages/kombu/transport/base.py
/usr/lib/python3.6/site-packages/kombu/transport/consul.py
/usr/lib/python3.6/site-packages/kombu/transport/etcd.py
/usr/lib/python3.6/site-packages/kombu/transport/filesystem.py
/usr/lib/python3.6/site-packages/kombu/transport/librabbitmq.py
/usr/lib/python3.6/site-packages/kombu/transport/memory.py
/usr/lib/python3.6/site-packages/kombu/transport/mongodb.py
/usr/lib/python3.6/site-packages/kombu/transport/pyamqp.py
/usr/lib/python3.6/site-packages/kombu/transport/pyro.py
/usr/lib/python3.6/site-packages/kombu/transport/qpid.py
/usr/lib/python3.6/site-packages/kombu/transport/redis.py
/usr/lib/python3.6/site-packages/kombu/transport/sqlalchemy
/usr/lib/python3.6/site-packages/kombu/transport/sqlalchemy/__init__.py
/usr/lib/python3.6/site-packages/kombu/transport/sqlalchemy/__pycache__
/usr/lib/python3.6/site-packages/kombu/transport/sqlalchemy/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/sqlalchemy/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/sqlalchemy/__pycache__/models.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/sqlalchemy/__pycache__/models.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/sqlalchemy/models.py
/usr/lib/python3.6/site-packages/kombu/transport/virtual
/usr/lib/python3.6/site-packages/kombu/transport/virtual/__init__.py
/usr/lib/python3.6/site-packages/kombu/transport/virtual/__pycache__
/usr/lib/python3.6/site-packages/kombu/transport/virtual/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/virtual/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/virtual/__pycache__/base.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/virtual/__pycache__/base.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/virtual/__pycache__/exchange.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/transport/virtual/__pycache__/exchange.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/transport/virtual/base.py
/usr/lib/python3.6/site-packages/kombu/transport/virtual/exchange.py
/usr/lib/python3.6/site-packages/kombu/transport/zookeeper.py
/usr/lib/python3.6/site-packages/kombu/utils
/usr/lib/python3.6/site-packages/kombu/utils/__init__.py
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/amq_manager.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/amq_manager.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/collections.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/collections.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/compat.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/compat.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/debug.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/debug.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/div.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/div.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/encoding.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/encoding.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/eventio.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/eventio.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/functional.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/functional.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/imports.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/imports.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/json.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/json.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/limits.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/limits.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/objects.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/objects.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/scheduling.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/scheduling.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/text.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/text.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/time.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/time.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/url.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/url.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/uuid.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/kombu/utils/__pycache__/uuid.cpython-36.pyc
/usr/lib/python3.6/site-packages/kombu/utils/amq_manager.py
/usr/lib/python3.6/site-packages/kombu/utils/collections.py
/usr/lib/python3.6/site-packages/kombu/utils/compat.py
/usr/lib/python3.6/site-packages/kombu/utils/debug.py
/usr/lib/python3.6/site-packages/kombu/utils/div.py
/usr/lib/python3.6/site-packages/kombu/utils/encoding.py
/usr/lib/python3.6/site-packages/kombu/utils/eventio.py
/usr/lib/python3.6/site-packages/kombu/utils/functional.py
/usr/lib/python3.6/site-packages/kombu/utils/imports.py
/usr/lib/python3.6/site-packages/kombu/utils/json.py
/usr/lib/python3.6/site-packages/kombu/utils/limits.py
/usr/lib/python3.6/site-packages/kombu/utils/objects.py
/usr/lib/python3.6/site-packages/kombu/utils/scheduling.py
/usr/lib/python3.6/site-packages/kombu/utils/text.py
/usr/lib/python3.6/site-packages/kombu/utils/time.py
/usr/lib/python3.6/site-packages/kombu/utils/url.py
/usr/lib/python3.6/site-packages/kombu/utils/uuid.py
/usr/share/doc/packages/python3-kombu
/usr/share/doc/packages/python3-kombu/AUTHORS
/usr/share/doc/packages/python3-kombu/FAQ
/usr/share/doc/packages/python3-kombu/README.rst
/usr/share/doc/packages/python3-kombu/THANKS
/usr/share/doc/packages/python3-kombu/TODO
/usr/share/licenses/python3-kombu
/usr/share/licenses/python3-kombu/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 17:06:41 2024