Skip to main content

AMQP 1.0 Client Library for Python

Project description

uAMQP for Python

https://img.shields.io/pypi/v/uamqp.svg https://img.shields.io/pypi/pyversions/uamqp.svg https://dev.azure.com/azure-sdk/public/_apis/build/status/python/azure-uamqp-python%20-%20client?branchName=master

An AMQP 1.0 client library for Python.

Installation

Wheels are provided for most major operating systems, so you can install directly with pip:

$ pip install uamqp

If you are running a Linux distro that does not support ManyLinux1, you can install from source:

$ apt-get update
$ apt-get install -y build-essential libssl-dev uuid-dev cmake libcurl4-openssl-dev pkg-config python3-dev python3-pip
$ pip3 install uamqp --no-binary

Documentation

Reference documentation can be found here: docs.microsoft.com/python/api/uamqp/uamqp.

Developer Setup

In order to run the code directly, the Cython extension will need to be build first.

Pre-requisites

  • Windows: Setup a build environment.

  • Linux: Install dependencies as descriped above in the installation instructions.

  • MacOS: Install cmake using Homebrew:

$ brew install cmake

Building the extension

This project has two C library dependencies. They are vendored in this repository in these versions:

To build, start by creating a virtual environment and installing the required Python packages:

$ python -m venv env
$ env/Scripts/activate
(env)$ pip install -r dev_requirements.txt

Next, run the build command:

$ python setup.py build_ext --inplace

Tests

The tests can be run from within the virtual environment. The extension must be built first using the instructions above.

(env)$ pytest

Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the Issues section of the project.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Release History

1.2.1 (2019-06-20)

  • Updated the implementation of update_token() in JWTTokenAuth and JWTTokenAsync (issue #80).

1.2.0 (2019-04-16)

  • Fixed bug in batched messages missing application_properties (azure-event-hubs-python issue #97).

  • Fixed bug in datetime object parsing (issue #63).

  • Fixed bug in unexposed send/receive settle modes.

  • Fixed bug where retried messages were not added back to the send queue.

  • Fixed bug in using asyncio.get_event_loop.

  • Added type objects for AMQP Byte and uBytes types.

  • Added async locking around pending messages queue (PR#54, Thanks to zach-b)

  • Added WebSocket(AMQP over WebSocket) support (azure-sdk-for-python issue #5318).

  • Added new token class JWTTokenAuth and JWTTokenAsync to support OAuth.

1.1.0 (2018-11-12)

  • Support for Python 2.7 (>_<)/

    • Where ever a TimeoutError is raised in Python 3.x, this will be replaced with a new ~uamqp.errors.ClientTimeout exception in Python 2.7.

    • A Python 2 str object will be treated as bytes in Python 3 and a Python 2 unicode object will be treated like a Python 3 str.

    • Added uamqp.compat module for handling Py 2 vs 3 imports and types (PR#46, Thanks to maxkrivich).

  • AMQP encoding of an integer type will now automatically failover into a Long type or a double type if the value is too large.

  • Improved support for promptly detecting invalid ATTACH handles and raising the appropriate error.

  • Added types for AMQPDescribed, AMQPInt and AMQPuInt for explicit handling of int and unsigned int encoding.

  • Added new error errors.AMQPClientShutdown as a wrapper for KeyboardInterrupt to better handle interrupt handling.

  • Added better handling of keyboard interrupts during C callbacks to better facilitate clean client shutdown.

  • Added additional handling of keyboard interrupt at the C level to clean up annoying warnings.

  • Added classmethod Message.decode_from_bytes to create a message from AMQP wire-encoded data.

  • Added Message.encode_message method to retrieve the AMQP wire-encoded byte representation of the current message.

  • Fixed behaviour of Message.get_message_encoded_size() to return accurate size.

  • Added new optional callback argument to client.mgmt_request to allow for custom handling of different status codes.

  • Added new client methods auth_complete() and client_ready() to allow for more fine-tuned monitoring or the client opening stages.

  • Client message handler is now a public attribute client.message_handler (SendClient._message_sender and ReceiveClient._message_receiver are now deprecated).

  • Added automatic encoding of datetime.datetime objects into AMQP timestamp.

  • Better support for Source filters with optional descriptor argument in Source.set_filter() and new Source.get_filter() method.

  • Fixed Session settings not being passed to CBS session.

  • Added support for a callback on receipt on a Link ATTACH frame. Can be supplied to a client through the on_attach keyword argument.

  • Removed unsued message.SequenceBody class.

  • Exposed BatchMessage.size_offset property for batch size customization.

1.0.3 (2018-09-14)

  • Reduced CPU load during idle receive.

  • Updated Azure uAMQP C and Azure C Shared Utility dependencies.

1.0.2 (2018-09-05)

  • Fixed additional bugs in setting MessageProperties as string or bytes.

  • Removed auth locking to prevent locking issues on keyboard interrupt.

1.0.1 (2018-08-29)

  • Added some more checks in place to prevent lock hanging on a keybaord interrupt.

  • Fixed bug in setting MessageProperties.subject as string or bytes.

  • uamqp.send_message now returns a list of uamqp.constants.MessageState to indicate the success of each message sent.

1.0.0 (2018-08-20)

  • API settled.

  • Behaviour change When a SendClient or SendClientAsync is shutdown, any remaining pending messages (that is messages in the states WaitingToBeSent and WaitingForSendAck) will no longer be cleared, but can be retrieved from a new attribute SendClient.pending_messages in order to be re-processed as needed.

  • Behaviour change The function SendClient.queue_message now allows for queueing multiple messages at once by simply passing in additional message instances:

    • send_client.queue_message(my_message)

    • send_client.queue_message(message_1, message_2, message_3)

    • send_client.queue_message(*my_message_list)

  • An authentication object will now raise a ValueError if one attempts to use it for more than one connection.

  • Renamed internal _async module to non-private async_ops to allow for docs generation.

  • Reformatted logging for better performance.

  • Added additional logging.

0.2.1 (2018-08-06)

  • Fixed potential crashing in bindings for amqpvalue.

  • Fixed bindings fault in cbs PUT token complete callback.

  • Updated uAMQP-C.

  • Added additional auth and connection locking for thread/async safety.

  • Increased INFO level logging.

  • Removed platform deinitialization until it can be improved.

  • Added handling for a connection reaching a client-caused error state.

0.2.0 (2018-07-25)

  • Breaking change MessageSender.send_async has been renamed to MessageSender.send, and MessageSenderAsync.send_async is now a coroutine.

  • Breaking change Removed detach_received callback argument from MessageSender, MessageReceiver, MessageSenderAsync, and MessageReceiverAsync in favour of new error_policy argument.

  • Added ErrorPolicy class to determine how the client should respond to both generic AMQP errors and custom or vendor-specific errors. A default policy will be used, but a custom policy can be added to any client by using a new error_policy argument. Value must be either an instance or subclass of ErrorPolicy.

    • The error_policy argument has also been added to MessageSender, MessageReceiver, Connection, and their async counterparts to allow for handling of link DETACH and connection CLOSE events.

    • The error policy passed to a SendClient determines the number of message send retry attempts. This replaces the previous constants.MESSAGE_SEND_RETRIES value which is now deprecated.

    • Added new ErrorAction object to determine how a client should respond to an error. It has three properties: retry (a boolean to determine whether the error is retryable), backoff (an integer to determine how long the client should wait before retrying, default is 0) and increment_retries (a boolean to determine whether the error should count against the maximum retry attempts, default is True). Currently backoff and increment_retries are only considered for message send failures.

    • Added VendorConnectionClose and VendorLinkDetach exceptions for non-standard (unrecognized) connection/link errors.

  • Added support for HTTP proxy configuration.

  • Added support for running async clients synchronously.

  • Added keep-alive support for connection - this is a background thread for a synchronous client, and a background async function for an async client. The keep-alive feature is disabled by default, to enable, set the keep_alive_interval argument on the client to an integer representing the number of seconds between connection pings.

  • Added support for catching a Connection CLOSE event.

  • Added support for Connection.sleep and ConnectionAsync.sleep_async to pause the connection.

  • Added support for surfacing message disposition delivery-state (with error information).

  • Added constants.ErrorCodes enum to map standard AMQP error conditions. This replaces the previous constants.ERROR_CONNECTION_REDIRECT and constants.ERROR_LINK_REDIRECT which are now both deprecated.

  • Added new super error AMQPError from which all exceptions inherit.

  • Added new MessageHandlerError exception, a subclass of AMQPConnectionError, for Senders/Receivers that enter an indeterminate error state.

  • MessageException is now a subclass of MessageResponse.

  • Added ClientMessageError exception, a subclass of MessageException for send errors raised client-side.

  • Catching Link DETACH event will now work regardless of whether service returns delivery-state.

  • Fixed bug where received messages attempting to settle on a detached link crashed the client.

  • Fixed bug in amqp C DescribedValue.

  • Fixed bug where client crashed on deallocating failed management operation.

0.1.1 (2018-07-14)

  • Removed circular dependency in Python 3.4 with types.py/utils.py

  • When a header properties is not set, returns None rather than raising ValueError.

  • Fixed bug in receiving messages with application properties.

0.1.0 (2018-07-05)

  • Fixed bug in error handling for CBS auth to invalid hostname.

  • Changed C error logging to debug level.

  • Bumped uAMQP C version to 1.2.7

  • Fixed memory leaks and deallocation bugs with Properties and Annotations.

0.1.0rc2 (2018-07-02)

  • Breaking change Submodule async has been renamed to the internal _async. All asynchronous classes in the submodule can now be accessed from uamqp or uamqp.authentication directly.

  • Breaking change Anything returned by a callback supplied to receive messages will now be ignored.

  • Breaking change Changed message state enum values:

    • Complete -> SendComplete

    • Failed -> SendFailed

    • WaitingForAck -> WaitingForSendAck

  • Added new message state enum values:

    • ReceivedUnsettled

    • ReceivedSettled

  • Breaking change Changes to message settlement exceptions:

    • Combined the AbandonMessage and DeferMessage exceptions as MessageModified to be in keeping with the AMQP specification.

    • Renamed AcceptMessage to MessageAccepted.

    • Renamed RejectMessage to MessageRejected which now takes condition and description arguments rather than message.

  • Added errors.LinkDetach exception as new subclass of AMQPConnectionError as a wrapped for data in a Link DETACH dispostition.

  • Added errors.LinkRedirect as a specific subclass of LinkDetach to decode the specific redirect fields of a Link Redirect response.

  • Added errors.MessageAlreadySettled exception for operations performed on a received message that has already returned a receipt dispostition.

  • Added errors.MessageReleased exception.

  • Added errors.ErrorResponse exception.

  • A received Message can now be explicitly settled through a set of new functions on the message:

    • Message.accept()

    • Message.reject(condition:str, description:str)

    • Message.release()

    • Message.modify(failed:bool, deliverable:bool, annotations:dict)

  • Added explicit auto_complete argument to ReceiveClient and ReceiveClientAsync. If auto_complete is set to False then all messages must be explicitly “accepted” or “rejected” by the user otherwise they will timeout and be released. The default is True, which is the exiting behaviour for each receive mechanism:

    • Received messages processed by callback (ReceiveClient.receive_messages()) will be automatically “accepted” if no explicit response has been set on completion of the callback.

    • Received messages processed by batch (ReceiveClient.receive_message_batch()) will by automatically “accepted” before being returned to the user.

    • Received messages processed by iterator (ReceiveClient.receive_message_iter()) will by automatically “accepted” if no explicit response has been set once the generator is incremented.

  • Added new methods to clients and connections to allow to redirect to an alternative endpoint when a LinkRedirect exception is raised. The client redirect helper cannot be used for clients that use a shared connection - the clients must be closed before the connection can be redirected. New credentials must be supplied for the new endpoint. The new methods are:

    • uamqp.Connection.redirect(redirect_info, auth)

    • uamqp.async.ConnectionAsync.redirect_async(redirect_info, auth)

    • uamqp.SendClient.redirect(redirect_info, auth)

    • uamqp.ReceiveClient.redirect(redirect_info, auth)

    • uamqp.async.SendClientAsync.redirect_async(redirect_info, auth)

    • uamqp.async.ReceiveClientAsync.redirect_async(redirect_info, auth)

  • Added on_detach_received argument to Sender and Receiver classes to pass in callback to run on Link DETACH.

  • Removed automatic char encoding for strings of length 1, and added types.AMQPChar for explicit encoding.

  • Bumped uAMQP C version to 1.2.5

  • Bumped Azure C Shared Utility to 1.1.5

  • Fixed memory leaks in MessageProperties, MessageHeader and message annotations.

0.1.0rc1 (2018-05-29)

  • Fixed import error in async receiver.

  • Exposed sender/receiver destroy function.

  • Moved receiver.open on_message_received argument to constructor.

  • Removed sasl module and moved internal classes into authentication module.

  • Added encoding parameter everywhere where strings are encoded.

  • Started documentation.

  • Updated uAMQP-C to 1.2.4 and C Shared Utility to 1.1.4 (includes fix for issue #12).

  • Fixed return type of MgmtOperation.execute - now returns ~uamqp.message.Message.

  • Made AMQP connection/session/sender/receiver types in a client overridable.

  • Added debug trace to management operations.

  • Fixed error in management callback on failed operation.

  • Default AMQP encoding of bytes is now a String type and a bytearray is a Binary type.

  • Added AMQP Array type and fixed Long type range validation.

  • Added header argument to Message and BatchMessage for setting a MessageHeader.

  • Fixed MessageHeader attribute setters.

0.1.0b5 (2018-04-27)

  • Added Certifi as a depedency to make OpenSSL certs dynamic.

  • Added verify option to authentication classes to allow setting custom certificate path (for Linux and OSX).

0.1.0b4 (2018-04-19)

  • Fixed memory leak in async receive.

  • Removed close_on_done argument from client receive functions.

  • Added receive iterator to synchronous client.

  • Made async iter receive compatible with Python 3.5.

0.1.0b3 (2018-04-14)

  • Fixed SSL errors in manylinux wheels.

  • Fixed message annoations attribute.

  • Fixed bugs in batched messages and sending batched messages.

  • Fixed conflicting receiver link ID.

  • Fixed hanging receiver by removing queue max size in sync clients.

  • Added support for sending messages with None and empty bodies.

0.1.0b2 (2018-04-06)

  • Added message send retry.

  • Added timeouts and better error handling for management requests.

  • Improved connection and auth error handling and error messages.

  • Fixed message annotations type.

  • SendClient.send_all_messages() now returns a list of message send statuses.

  • Fixed OpenSSL platform being initialized multiple times.

  • Fixed auto-refresh of SAS tokens.

  • Altered receive_batch behaviour to return messages as soon as they’re available.

  • Parameter batch_size in receive_batch renamed to max_batch_size.

  • Fixed message application_properties decode error.

  • Removed MacOS dependency on OpenSSL and libuuid.

0.1.0b1 (2018-03-24)

  • Added management request support.

  • Fixed message-less C operation ValueError.

  • Store message metadata in Python rather than C.

  • Refactored Send and Receive clients to create a generic parent AMQPClient.

  • Fixed None receive timestamp bug.

  • Removed async iterator queue due to instabilities - all callbacks are now synchronous.

0.1.0a3 (2018-03-19)

  • Added support for asynchronous message receive by iterator or batch.

  • Removed synchronous receive iterator, and replaced with synchronous batch receive.

  • Added sync and async context managers for Send and Receive Clients.

  • Fixed token instability and added put token retry policy.

  • Exposed Link ATTACH properties.

  • A connection now has a single $cbs session that can be reused between clients.

  • Added C debug trace logging to the Python logger (‘uamqp.c_uamqp’)

0.1.0a2 (2018-03-12)

  • Exposed OPEN performative properties for connection telemetry.

  • Exposed setters for message.message_annotations and message.application_properties.

  • Made adjustments to connection open and close to facilitate sharing a connection object between send/receive clients.

  • Support for username/password embedded in connection URI.

  • Clients can now optionally leave connection/session/link open for re-use.

  • Updated build process and installation instructions.

  • Various bug fixes to increase stability.

0.1.0a1 (2018-03-04)

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uamqp-1.2.1.tar.gz (3.1 MB view details)

Uploaded Source

Built Distributions

uamqp-1.2.1-cp37-cp37m-win_amd64.whl (881.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

uamqp-1.2.1-cp37-cp37m-win32.whl (781.8 kB view details)

Uploaded CPython 3.7m Windows x86

uamqp-1.2.1-cp37-cp37m-manylinux1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.7m

uamqp-1.2.1-cp37-cp37m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.7m

uamqp-1.2.1-cp37-cp37m-macosx_10_6_intel.whl (1.0 MB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

uamqp-1.2.1-cp36-cp36m-win_amd64.whl (880.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

uamqp-1.2.1-cp36-cp36m-win32.whl (782.0 kB view details)

Uploaded CPython 3.6m Windows x86

uamqp-1.2.1-cp36-cp36m-manylinux1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.6m

uamqp-1.2.1-cp36-cp36m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.6m

uamqp-1.2.1-cp36-cp36m-macosx_10_6_intel.whl (1.0 MB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

uamqp-1.2.1-cp35-cp35m-win_amd64.whl (841.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

uamqp-1.2.1-cp35-cp35m-win32.whl (754.4 kB view details)

Uploaded CPython 3.5m Windows x86

uamqp-1.2.1-cp35-cp35m-manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.5m

uamqp-1.2.1-cp35-cp35m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.5m

uamqp-1.2.1-cp35-cp35m-macosx_10_6_intel.whl (1.0 MB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

uamqp-1.2.1-cp34-cp34m-manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.4m

uamqp-1.2.1-cp34-cp34m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.4m

uamqp-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 2.7mu

uamqp-1.2.1-cp27-cp27mu-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 2.7mu

uamqp-1.2.1-cp27-cp27m-win_amd64.whl (840.9 kB view details)

Uploaded CPython 2.7m Windows x86-64

uamqp-1.2.1-cp27-cp27m-win32.whl (766.1 kB view details)

Uploaded CPython 2.7m Windows x86

uamqp-1.2.1-cp27-cp27m-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 2.7m

uamqp-1.2.1-cp27-cp27m-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 2.7m

uamqp-1.2.1-cp27-cp27m-macosx_10_6_intel.whl (990.6 kB view details)

Uploaded CPython 2.7m macOS 10.6+ intel

File details

Details for the file uamqp-1.2.1.tar.gz.

File metadata

  • Download URL: uamqp-1.2.1.tar.gz
  • Upload date:
  • Size: 3.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1.tar.gz
Algorithm Hash digest
SHA256 82ababd56fc747dc00e3543a04f26e86ac8e43dd02502ca41fddb4732605af42
MD5 b52dd081722f4c19be7b723aa24a59b8
BLAKE2b-256 d56c717f962c0bc4eb8c44b788753ca5727969795432a6178d68b0e0ee438dfd

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 881.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a968316630a132f9d25288fbd190e8d25228c6b0328e3e0e8f86a8b3e76c7508
MD5 34ad027d481cf878c163cc69a447d2c5
BLAKE2b-256 2d5c2f6450feb5c25b936a5b4c6ba2d14aa81db68d326920ed428de2ef9aaae6

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 781.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 045f8702cf3ffd4c4cbd67ef164ed3a789a1d2f0438bff516eb58c9ead1679df
MD5 a05ab2db9b233039fa8351a9c04cd7b8
BLAKE2b-256 0fdfee0bb700914521a5307e188f54982612b6319e08d67f25c5097d1720b2d9

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4d810762f23b5d70df8f2adf4abe43710b6792b58c75808dbb9557d945d5df67
MD5 dd1b12d63121ea2ad4d09255b7ddca4f
BLAKE2b-256 d2c5dcb4d5892dcd4f7a476c470eda0c3a306887d5171e644c4f89ef779b7ed9

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 06f8c1b62f3c658361443520302f8dd51c41514c6851b6efb3d8a478322c1b83
MD5 e6b367e44a426911a3689becb736574e
BLAKE2b-256 d1cc2852811b7c46892c06255a1916cdce67f458c065e38a8e75febeb7b64d87

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 29c7b97a3862be0484cbf29f3d90145d1800558a41fdedcac15168f89bf7674c
MD5 e7eab6b6b2ba0f82dbc347d1168c4586
BLAKE2b-256 59b97c686867dd3afef7621ca30954b3111f767c86afffc39afded7473d59422

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 880.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9684b736e935baa0b4d6d65ae68509c68363f2cb7d5a5ca1173be84d98518844
MD5 0df80206d5263a3dd923ff93dde4721b
BLAKE2b-256 ca192fe2f00337ea22a9f1ffe0eb985056c12639146051cd37e5af8e9d929647

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 782.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bfc508041e8502b186850c74c1b43243a762c6b226d6499462210e19e2a369ec
MD5 51c3bcfba5c499b340864397ee568fc8
BLAKE2b-256 06ca608dff184c048fda52ec0b1595ed64daddb8e14562c584c83bb82d44cca9

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 284563f8e2a56fcb8d6d124cc12ec57f0839ac4e89fe3e55ea90852d1f599cce
MD5 726ca6e6fccc38663730ff95a5196558
BLAKE2b-256 57938e6d559d084d575824df515f16c4d5df11ff382e7018f4a0859e1f0865bd

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6fe53b6239692e77d239c89c381fa4625d27205f4b7e009cabf991d2c4a9d9b4
MD5 98036f1e1abc3fe06f8af7f398e953ba
BLAKE2b-256 7ce78574baeafa3c12a8f40b31497bfdce9c6c78bc6b6ea725db9f350c0b6e38

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 ec5e215f2fe58d8ac858c7c6c7ae1302cb7c0137e5a62b4a15ccecf1cf9bcc50
MD5 04694df5f5c7c4aa786dba34432b19d7
BLAKE2b-256 c4e8af649551ecdf1bc544ce3e9638a170df267c7af0f9333683f962415dd0b8

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 841.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5e845f4d5129e8a00e93e5f8186916e9f67e4290b75c73952625b9769db83d95
MD5 c0a56146af827189c87a47e23412f582
BLAKE2b-256 692a894c4ece77cf9c912144edb4dedda1f0ffcdba8865721536ba05f851e91a

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 754.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 3c6cec12c5a8b7c7e66625af6225658394920c2d7504ca105cc923c0c2a60d2f
MD5 1e2e1bc6d837bdf7c3486ff71a63a517
BLAKE2b-256 3e00e722b08a835d03fa349b4859e65c737ff55576468598649734d029140cfa

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ff082db7aca5247fdc24f353a95260971a8ad9991eee2d03279160bb5fa01ccd
MD5 f60cc44cd965825a12fbe907d769bc0c
BLAKE2b-256 55a354782bce923c3052dbf9cee60137bbf9f6affde7feb39a8096b6f8eee01b

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 50bbecda975351988216bdd04b2642f85cde4fcacc23ecf42849d07a0cd2ef10
MD5 f8237262d29055815178c4adcf46bbf3
BLAKE2b-256 7d3ef180fe7fd57f09e91bf5020d48cc7aa1308ec90fb54d06d1ce564236eae0

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d1d960eeb5237a642fec7952b642628a93f901bc1edd594684cfc36c25ca54e0
MD5 d7c1b3fa051e4e2f8b7ba060967f8dfc
BLAKE2b-256 cc08fc321ba863876e5760751137a904ecfc93ac1c3af30897221442eb30a057

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2688df6e1b57b1801b2d970472e54a7352e1d50e498d39b37e8c646133d47b19
MD5 7c59f868ed9896eb7ac5d61cd85adcd4
BLAKE2b-256 9a2c72c2fc2f141cd1c14e89297964521bc0c11b45eec4f07ab77a34b8f80fe3

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d57ea2fe6ebe2c6c54d0c439357a1e36ebfe9a6f9f5260e308bcd18c5834da66
MD5 6cd77a86d75356307635db6efe2acec6
BLAKE2b-256 6a1e408e00af6e2e500f7d164d7f8dfe6b565563f76521fabd71fdd344c877ac

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 403731f06bd6a10ebda85314e5d3de7e8b2f42951b1d20b801f5ed7c297281a4
MD5 a4448512bf2da707361c46a562ee70a8
BLAKE2b-256 571085fdb7e34816885998aa6693d47c37e20cb009dcf202826e6c4651ab5ff9

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d2a3db29934b614656e476ffc78f53aefd03a3a762492e5b32473eaed0f0ab9
MD5 eb534721de4b208a27c5a731511655f3
BLAKE2b-256 2cc707214606a9d75f471d9d4d26baa62ac84499b3559133a70d7573bf52da9e

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 840.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b865f87e222f7e514938cb3ef02c6fc5574b24a06299086b1e2f72cb1198cef2
MD5 17968ad739976bf46796f0b44a8a4982
BLAKE2b-256 62cae17dd7e9ff829194be3ccfe32506b30e1178c4bbd7d39a07ad0a22149d7b

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 766.1 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 0026e1a5511ec98e3284733ce8fe9515e5f29129c08c8202d32c8fe0e3ad68c4
MD5 bcbdd1033a98016cc52256f7fbc1d042
BLAKE2b-256 e2f9aaa61b9e18fbb4bc43b8ed9ba5bc3cf4c5e85a195f7443053c2562798e6c

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 02dd279ae02d4f0be174b3866e05cce75fdf506186cebec6815ed3ed5a3ac5d9
MD5 328a39f0e97158bd247712bfc5e54db2
BLAKE2b-256 77673b0982b7b94a5ffdd5b1f816f2070eabbee8d236b1232057c0384768896f

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 84c29f101f2a07527530fa8eeb5c7b60a43b6f0b5391238dd1c1729534051dc6
MD5 e25982b9b91611eb5f7f7cf5e31d6e3b
BLAKE2b-256 5a7a83da72e3114d705bc28a904a98d92a59663f6957908858b811ee96cc16b2

See more details on using hashes here.

File details

Details for the file uamqp-1.2.1-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: uamqp-1.2.1-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 990.6 kB
  • Tags: CPython 2.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for uamqp-1.2.1-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 f089a18583ebe790fc7652087bfcf9626582755ede8f602adeefbaba8cf35c99
MD5 85b95c4d1eff885514d5f63ef14b18c4
BLAKE2b-256 a54f4e96c2dd1b67c336e4b833fc2dcf7e095e423618b830f4451a669dc34331

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page