python-amqp 1.0.12-0ubuntu1 source package in Ubuntu

Changelog

python-amqp (1.0.12-0ubuntu1) saucy; urgency=low

  * Initial release.
 -- Chuck Short <email address hidden>   Tue, 25 Jun 2013 09:01:38 -0500

Upload details

Uploaded by:
Chuck Short
Uploaded to:
Saucy
Original maintainer:
Chuck Short
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Saucy: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
python-amqp_1.0.12.orig.tar.gz 68.5 KiB 599081a0aa9d13607d3c97bb289e7ced4902013b52b9030f9c17fd6cb3c8cdf1
python-amqp_1.0.12-0ubuntu1.debian.tar.gz 1.7 KiB f4be96ad437a18a26bd1a3d440f078cee0ea8839d9403ce0e552e389ecf50203
python-amqp_1.0.12-0ubuntu1.dsc 1.2 KiB cdda3ea33d65aa985545a45c5e36e193ffd35b7688852ffc878aa0f911708bf7

View changes file

Binary packages built by this source

python-amqp: Low-level AMQP client

 This is a fork of amqplib which was originally written by Barry Pederson. It
 is maintained by the Celery project, and used by kombu as a pure Python
 alternative when librabbitmq is not available.
 .
 This library should be API compatible with librabbitmq. Differences from
 amqplib are:
  * Supports draining events from multiple channels (Connection.drain_events).
  * Support for timeouts.
  * Channels are restored after channel error, instead of having to close the
    connection.
  * Support for heartbeats.
  * Supports RabbitMQ extensions:
    - Consumer Cancel Notifications.
    - Publisher confirms.
    - Exchange-to-exchange bindings: exchange_bind / exchange_unbind.
  * Support for basic_return.
  * Uses AMQP 0-9-1 instead of 0-8.
  * Exposes the underlying socket as Connection.sock.
  * Adds Channel.no_ack_consumers to keep track of consumer tags that set the
    no_ack flag.
  * Slightly better at error recovery.