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.2 (2019-07-02)

  • Made bug fix in asyncio.get_event_loop backwards-compatible for now by just printing a warning rather than raising an error. In the next major version bump we can disable entirely.

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.2.tar.gz (3.1 MB view details)

Uploaded Source

Built Distributions

uamqp-1.2.2-cp37-cp37m-win_amd64.whl (881.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

uamqp-1.2.2-cp37-cp37m-win32.whl (782.0 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m macOS 10.6+ intel

uamqp-1.2.2-cp36-cp36m-win_amd64.whl (881.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

uamqp-1.2.2-cp36-cp36m-win32.whl (782.2 kB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.6+ intel

uamqp-1.2.2-cp35-cp35m-win_amd64.whl (841.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

uamqp-1.2.2-cp35-cp35m-win32.whl (754.6 kB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.6+ intel

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

uamqp-1.2.2-cp27-cp27m-win_amd64.whl (841.1 kB view details)

Uploaded CPython 2.7m Windows x86-64

uamqp-1.2.2-cp27-cp27m-win32.whl (766.3 kB view details)

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

uamqp-1.2.2-cp27-cp27m-macosx_10_6_intel.whl (990.8 kB view details)

Uploaded CPython 2.7m macOS 10.6+ intel

File details

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

File metadata

  • Download URL: uamqp-1.2.2.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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2.tar.gz
Algorithm Hash digest
SHA256 51142dfaadb9d2bb4d67e8695c8577fe83a4dca426c108a7d145c12ba8e0be72
MD5 4952932b18cdbb3b2a7844afdadd6400
BLAKE2b-256 02db09f1e89981ec84500e0960174caa851d864d3af795dbcbcccf64bf8b0f67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 881.9 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6c2f5c6675f46fca13b035dbf4c6eb4f67746e46c605689fdc3d1d0d6449296d
MD5 6adee34f16398b20c8af2a91d3f7ae20
BLAKE2b-256 760e10dad345eb661c8dd1cd5a1b550bafe86df08807c498a29aa64e21865742

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 782.0 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d90ffc75502bf60550091d256e61065156ac01f39f3bd75d7fd9cdf86c7da285
MD5 f9095a1f8a6ed4fc9ec49ffe0070706a
BLAKE2b-256 91a30d07ba4a1e3d4d246fd9ab0666e8beb87d1b8c57d137eb310d34225a0991

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 35f7558c18fe062da725aa3c8884331735fcba8a05d1644f266a59eeab20eedc
MD5 c5a5677247ade77782b1ec9f77071570
BLAKE2b-256 5f77a39c842a43da76617f04ce6cc5c69a9c03b234145968b83cb6e0d67c9fce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a58cba156c46eeb9c8d884b4b34a92d8e968045cdaf034b9eaa4644acb5a8196
MD5 853372e0a96a79cd21907741c35924d5
BLAKE2b-256 9bf83cf3462c1ef87fac5ea44b848eb85af0486b09f40a980b5214667c3cebb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d8a8267c0ef3bcc0b8d9244da677cf5580034c4f9f567c5e783cc64ae70e2f31
MD5 293193882e15d8d00041f0224ec074e9
BLAKE2b-256 355c93c7521ec57e840abb6c0d19a8003dcf24c48bcb11872a3d5e2941160821

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 881.0 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f603f89c1632e68c55a1579f743ad17b3c4a427180694d9de48422ca86485e56
MD5 73bc72f8d7f1184d7a93fa3348f38cd6
BLAKE2b-256 6116998fa185e348a241be88048df294a8be0a380df1822556e4dcf0f61698f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 782.2 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 829da1a9701c7b2a94d43c3c0648d3e2a54b23e5fae857cd0d127e9c2013a35f
MD5 31485503dc08fa03bafb7f49e4acbabd
BLAKE2b-256 4e99815f0fa7e1dd245052f48fe91ef9d5f0f23e97d9b44444ea1504367c8745

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 be6bb4711115b76ee87286515e0a422993da1773ae5781fe168b354ec32d0e59
MD5 d67ee3c921c042f4bf86524c444fc679
BLAKE2b-256 e6e85d331c324c1a1ad6bdc291ed015938b1a9baf7f8a41393c5694a8b31ffd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 32473598dcdb4c480aeb02bb3cb48e56de700f24dc551dbd0e06aeef87a404e9
MD5 27da4098224a63af8de3508dbd0020d4
BLAKE2b-256 d650393ff7293aa72a4a88941263d175f2f981ce07f7a1f05edcb2f125d9d106

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 59d00ae2c655ac30446b849b47d753e687226737f6d12cdd4a386483981e3d27
MD5 b5672884c342d5248146dba73c7f782a
BLAKE2b-256 e7a9eeb6d75c3dcd6ef7774ff3986d7318579ab6a9c18e2ac8e12d8f1964bf15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 841.3 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d16c8f45fbd8b5bf57112bea59afdbe3447324b41512b58ccc6ee3a4a8cd8ea3
MD5 16a11e7a6be752b400a49da8c6018911
BLAKE2b-256 9f6c76e88e85bcd4d659d5dd93cd3ccb2f21778542dc17bcfc9c8832055952cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 754.6 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 612bc5501a81470d04b59b6688da2b4f179455e1468dc95cf11f158bc7b6f125
MD5 b1b38338d359ed32d99bb7c43a57128d
BLAKE2b-256 6e0a0f84f05a2d7a6edd49addeaba9d4a99372b7e5a283cc163334a82490875f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 42e5fbda21ba387f1153aa780ec0baa718cfff1989a800ce454800ec0efb6e07
MD5 90b4caf791e87b221381edd42604e836
BLAKE2b-256 8e58a968d324ad07d9e6cd77bb79a7bfc2c6bbe48e98005064dca76496b3a13a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2641ff1f4ea4a00aacb91ea8bdd29f59f0a07c17776e9d63881355eb14c67636
MD5 23cb446ebbff1ca8216d489af3cfa459
BLAKE2b-256 3c71400375408567a12eb4427a6c79907c3f901d14a31a609b5785e3a9ba9710

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 574ef8fa62ba5683cd0b79935235617e2176c792d2c71f2adf9841c9f1df89a3
MD5 efb40c90b43d551da89e7167d5a55a95
BLAKE2b-256 9f0db4e44330865addfba3bc3fa9ffa3154f23d5c6e028735a71d3df803b3a44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 43b2c6940d47ea8f7ad3c5e5fab69a534f0e86f31a123ecae4c192adf3fc1005
MD5 88a3e372fbb8c281ddf88eab46a598c2
BLAKE2b-256 8c8b7d96bbe6b2f7b0d228bf5f877d62f4b35ef7db87a232c166464c5653d515

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 47d4d1981ffbe6061f0d02dfc8a6651d3f95f9a0c2903235d131bb6c5fa0e26a
MD5 c9cb2f427ecc847ae27476deb8f5d84f
BLAKE2b-256 94916ed195905ac3935d2836e5d956d55009391c1019c70a6488cc0d0bbfdc69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 084dca8c755bbf48c98e0938222d37642ad42b1359961432d350a75b26520775
MD5 6615ca3db7a51dacdfdec41422fca842
BLAKE2b-256 566a38af75c0fc40fcadd2ca7f83d87f1d3bb994f6bc95fd635d55eb9bd77c7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 20704269d38b6262b53f61e65e6472ca9e2c4db3efb54d6dcf8227d635fe10d7
MD5 4553645e01a29872129471d73af9123c
BLAKE2b-256 185d784e3e977a5b63d56920ba08a4ef0d7b5b59a1246977f7881ea65fca5545

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 841.1 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3e34f835ab6be7eb315477313c051bfc428cde189ec1e27ffc1df0d51b825c24
MD5 540caaf7ee34386aca845ffa1edd9fe0
BLAKE2b-256 50097266818f984e3931305004a30122bc3d896e1db66aaff310938782a4630e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 766.3 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 501527dce05979cfe878a85db466c65632f2b04d8a8e5f8671b3a018fec1dbcd
MD5 4a712d6ee7e950f243cab771fdd20f4d
BLAKE2b-256 d05e9c71ffb9505a69330badf701d8ef0a04307012ad8aaafe06f5822ab7b6c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 720acff2a04f5f8b0e24d46c89fb344590b07ee4877f798376cc4a51c5df5dc9
MD5 e87e40b97f8e06602b86bd0e0861829e
BLAKE2b-256 952bcb43021a0314d08066cb40b70086dbb4ed4d1236fca13339a2346ce4171b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 beb8aaeeb84ae956ec8726ecdc96d6fe38b175ec38c96202373a46890dddf3fd
MD5 5b0fba2f7f01b3a58af4c2db969c2193
BLAKE2b-256 e5a8e01b70eeef95bab5529f73e5d72cf590d3d1cb0a12d1d8ff35bafb88724e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uamqp-1.2.2-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 990.8 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.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2

File hashes

Hashes for uamqp-1.2.2-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 e2c0de8332cf0af9c7211f0a8972b79118980a3198142ebe5a11009f93f1a266
MD5 a287b48a64e284157c4dc6f6df8b7d74
BLAKE2b-256 62aaf33c1c13afcc04f9a441f617cab8bd813b7308529588cb3e299db6a121f0

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