Skip to main content

A common runtime for AWS Python projects

Project description

AWS CRT Python

Version

Python 3 bindings for the AWS Common Runtime.

License

This library is licensed under the Apache 2.0 License.

Minimum Requirements:

  • Python 3.8+

Installation

To install from pip:

python3 -m pip install awscrt

To install from Github:

git clone https://github.com/awslabs/aws-crt-python.git
cd aws-crt-python
git submodule update --init
python3 -m pip install .

See Advanced Build Options for more info about building from source.

Fork and Multiprocessing

aws-crt-python uses background threads. This makes os.fork() unsafe. In a forked child process, all background threads vanish. The child will hang or crash when it tries to communicate with any of these (vanished) threads.

Unfortunately, Python's multiprocessing module defaults to using fork when it creates child processes (on POSIX systems except macOS, in Python versions 3.13 and earlier). multiprocessing is used under the hood by many tools that do work in parallel, including concurrent.futures.ProcessPoolExecutor, and pytorch.multiprocessing.

If you need to use multiprocessing with aws-crt-python, set it to use "spawn" or "forkserver" instead of "fork" (see docs). The Python community agrees, and multiprocessing will changes its default from "fork" to "spawn" in 3.14. It already uses "spawn" by default on macOS (because system libraries may start threads) and on Windows (because fork does not exist).

If you must use fork with aws-crt-python, you may be able to avoid hangs and crashes if you manage your threads very carefully:

  1. Release all CRT resources with background threads (e.g. clean up any io.EventLoopGroup instances).
  2. Join all CRT threads before forking (use common.join_all_native_threads() ).

For an example, see test.test_s3.py.S3RequestTest.test_fork_workaround .

Mac-Only TLS Behavior

Please note that on Mac, once a private key is used with a certificate, that certificate-key pair is imported into the Mac Keychain. All subsequent uses of that certificate will use the stored private key and ignore anything passed in programmatically. Beginning in v0.6.2, when a stored private key from the Keychain is used, the following will be logged at the "info" log level:

static: certificate has an existing certificate-key pair that was previously imported into the Keychain. Using key from Keychain instead of the one provided.

Logging

aws-crt-python provides two ways to configure logging from the CRT's native C libraries.

Option 1: Python logging integration (recommended)

Route CRT log messages through Python's standard logging module. Each CRT subsystem gets a hierarchical logger under awscrt (e.g. awscrt.io.event-loop, awscrt.http.http-connection, awscrt.s3.S3Client), so you can filter by package or subsystem.

import logging
from awscrt.logging import init_logging, CRT_LOG_FORMAT

handler = logging.StreamHandler()
handler.setFormatter(logging.Formatter(CRT_LOG_FORMAT))
logging.getLogger('awscrt').addHandler(handler)
init_logging(logging.DEBUG)

To filter to a specific CRT package:

# Only show IO logs at DEBUG, silence everything else
logging.getLogger('awscrt').setLevel(logging.WARNING)
logging.getLogger('awscrt.io').setLevel(logging.DEBUG)

Option 2: Direct file/stdout logging

Write CRT log output directly to a file, stdout, or stderr. This bypasses Python's logging module and is useful for quick debugging.

from awscrt.io import LogLevel, init_logging

init_logging(LogLevel.Debug, 'stdout')   # or 'stderr', or a file path

Which should I use?

Use awscrt.logging.init_logging (Option 1) if you want CRT logs integrated with your application's existing Python logging setup, with per-subsystem filtering.

Use awscrt.io.init_logging (Option 2) if you just want to dump all CRT logs to a file or console quickly.

These are mutually exclusive — use one or the other, not both.

Crash Handler

You can enable the crash handler by setting the environment variable AWS_CRT_CRASH_HANDLER=1 . This will print the callstack to stderr in the event of a fatal error.

Advanced Build Options

OpenSSL and LibCrypto

aws-crt-python does not use OpenSSL for TLS. On Apple and Windows devices, the OS's default TLS library is used. On Unix devices, s2n-tls is used. But s2n-tls uses libcrypto, the cryptography math library bundled with OpenSSL.

To simplify installation, aws-crt-python has its own copy of libcrypto. This lets you install a wheel from PyPI without having OpenSSL installed. Unix wheels on PyPI come with libcrypto statically compiled in. Code to build libcrypto comes from AWS-LC. AWS-LC's code is included in the PyPI source package, and the git repository includes it as a submodule.

If you need aws-crt-python to use the libcrypto included on your system, set environment variable AWS_CRT_BUILD_USE_SYSTEM_LIBCRYPTO=1 while building from source:

AWS_CRT_BUILD_USE_SYSTEM_LIBCRYPTO=1 python3 -m pip install --no-binary :all: --verbose awscrt

( --no-binary :all: ensures you do not use the precompiled wheel from PyPI)

aws-crt-python also exposes a number of cryptographic primitives. On Unix, those depend on libcrypto as described above. On Apple and Windows OS level crypto libraries are used whenever possible. One exception to above statement is that for ED25519 keygen on Windows and Apple, libcrypto is used as no viable OS level alternative exists. In that case Unix level notes about libcrypto apply to Apple and Windows as well. Libcrypto usage for ED25519 support is enabled on Windows and Apple by default and can be disabled by setting environment variable AWS_CRT_BUILD_DISABLE_LIBCRYPTO_USE_FOR_ED25519_EVERYWHERE as follows: (Note: ED25519 keygen functions will start returning not supported error in this case)

AWS_CRT_BUILD_DISABLE_LIBCRYPTO_USE_FOR_ED25519_EVERYWHERE=1 python3 -m pip install --no-binary :all: --verbose awscrt

( --no-binary :all: ensures you do not use the precompiled wheel from PyPI)

AWS_CRT_BUILD_USE_SYSTEM_LIBS

aws-crt-python depends on several C libraries that make up the AWS Common Runtime (libaws-c-common, libaws-c-s3, etc). By default, these libraries are built along with aws-crt-python and statically compiled in (their source code is under crt/).

To skip building these dependencies, because they're already available on your system, set environment variable AWS_CRT_BUILD_USE_SYSTEM_LIBS=1 while building from source:

AWS_CRT_BUILD_USE_SYSTEM_LIBS=1 python3 -m pip install .

If these dependencies are available as both static and shared libs, you can force the static ones to be used by setting: AWS_CRT_BUILD_FORCE_STATIC_LIBS=1

AWS_EXTRA_LIB_DIR

If you need to add additional library directories for the linker to search, set environment variable AWS_EXTRA_LIB_DIR while building from source. This sets the library_dirs parameter for the setuptools Extension, which tells the linker where to find libraries during the build process. These directories supplement (not replace) the linker's default search paths. This is useful when you have custom library installations in non-standard locations.

For more details about library_dirs , see the setuptools Extension documentation.

For a single directory:

AWS_EXTRA_LIB_DIR=/path/to/libs python3 -m pip install .

For multiple directories, separate them with the OS path separator ( : on Unix/macOS, ; on Windows):

# Unix/macOS
AWS_EXTRA_LIB_DIR=/path/to/libs:/another/path python3 -m pip install .

# Windows
AWS_EXTRA_LIB_DIR=C:\path\to\libs;D:\another\path python3 -m pip install .

Windows SDK Version

aws-crt-python builds against windows sdk version 10.0.17763.0 . This is the minimal version required for TLS 1.3 support on Windows. If you need a different Windows SDK version, you can set environment variable AWS_CRT_WINDOWS_SDK_VERSION=<version> while building from source:

Attribution

This library exposes native XXHash implementation (https://github.com/Cyan4973/xxHash).

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

awscrt-0.33.0.tar.gz (37.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

awscrt-0.33.0-cp314-cp314t-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

awscrt-0.33.0-cp314-cp314t-win32.whl (4.2 MB view details)

Uploaded CPython 3.14tWindows x86

awscrt-0.33.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

awscrt-0.33.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

awscrt-0.33.0-cp314-cp314t-macosx_10_15_universal2.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

awscrt-0.33.0-cp313-cp313t-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13tWindows x86-64

awscrt-0.33.0-cp313-cp313t-win32.whl (4.1 MB view details)

Uploaded CPython 3.13tWindows x86

awscrt-0.33.0-cp313-cp313t-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

awscrt-0.33.0-cp313-cp313t-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

awscrt-0.33.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

awscrt-0.33.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

awscrt-0.33.0-cp313-cp313t-macosx_10_15_universal2.whl (3.4 MB view details)

Uploaded CPython 3.13tmacOS 10.15+ universal2 (ARM64, x86-64)

awscrt-0.33.0-cp313-abi3-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.13+Windows x86-64

awscrt-0.33.0-cp313-abi3-win32.whl (4.1 MB view details)

Uploaded CPython 3.13+Windows x86

awscrt-0.33.0-cp313-abi3-musllinux_1_1_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13+musllinux: musl 1.1+ x86-64

awscrt-0.33.0-cp313-abi3-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

awscrt-0.33.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13+manylinux: glibc 2.17+ x86-64

awscrt-0.33.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13+manylinux: glibc 2.17+ ARM64

awscrt-0.33.0-cp313-abi3-macosx_10_15_universal2.whl (3.4 MB view details)

Uploaded CPython 3.13+macOS 10.15+ universal2 (ARM64, x86-64)

awscrt-0.33.0-cp311-abi3-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.11+Windows x86-64

awscrt-0.33.0-cp311-abi3-win32.whl (4.1 MB view details)

Uploaded CPython 3.11+Windows x86

awscrt-0.33.0-cp311-abi3-musllinux_1_1_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ x86-64

awscrt-0.33.0-cp311-abi3-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.33.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ x86-64

awscrt-0.33.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

awscrt-0.33.0-cp311-abi3-macosx_10_15_universal2.whl (3.4 MB view details)

Uploaded CPython 3.11+macOS 10.15+ universal2 (ARM64, x86-64)

awscrt-0.33.0-cp310-cp310-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10Windows x86-64

awscrt-0.33.0-cp310-cp310-win32.whl (4.1 MB view details)

Uploaded CPython 3.10Windows x86

awscrt-0.33.0-cp310-cp310-musllinux_1_1_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

awscrt-0.33.0-cp310-cp310-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

awscrt-0.33.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

awscrt-0.33.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

awscrt-0.33.0-cp310-cp310-macosx_10_15_universal2.whl (3.4 MB view details)

Uploaded CPython 3.10macOS 10.15+ universal2 (ARM64, x86-64)

awscrt-0.33.0-cp39-cp39-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.9Windows x86-64

awscrt-0.33.0-cp39-cp39-win32.whl (4.1 MB view details)

Uploaded CPython 3.9Windows x86

awscrt-0.33.0-cp39-cp39-musllinux_1_1_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

awscrt-0.33.0-cp39-cp39-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

awscrt-0.33.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

awscrt-0.33.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

awscrt-0.33.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

awscrt-0.33.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

awscrt-0.33.0-cp39-cp39-macosx_10_15_universal2.whl (3.4 MB view details)

Uploaded CPython 3.9macOS 10.15+ universal2 (ARM64, x86-64)

awscrt-0.33.0-cp38-cp38-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.8Windows x86-64

awscrt-0.33.0-cp38-cp38-win32.whl (4.1 MB view details)

Uploaded CPython 3.8Windows x86

awscrt-0.33.0-cp38-cp38-musllinux_1_1_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

awscrt-0.33.0-cp38-cp38-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

awscrt-0.33.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

awscrt-0.33.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

awscrt-0.33.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

awscrt-0.33.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

awscrt-0.33.0-cp38-cp38-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file awscrt-0.33.0.tar.gz.

File metadata

  • Download URL: awscrt-0.33.0.tar.gz
  • Upload date:
  • Size: 37.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0.tar.gz
Algorithm Hash digest
SHA256 2b4c0ff03b1942678d86f7094342dec9464b4df0ba3e3692b28417c95b95a7db
MD5 e2e25129fc557ddfae69ae812837f941
BLAKE2b-256 bad9088a27173098c09617f6280b5350f18023d15835400323632a1658039700

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8d4d506da517475c935cfa89a7626d8d1610616c593b1c32b2dd5a4286f7e07d
MD5 9f6c0d34913581a2dc9276727656852a
BLAKE2b-256 4a2c409e529c5ef528b09ddf0ef116d23448b417a301c25f4cfda4d2b0451eae

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f460bf5d16580baa88c44eb73a08d46d0125146743b7849a2d338f39a8951c08
MD5 9458b135d2a28431298a60c45dd6fd65
BLAKE2b-256 591c7361ff0706189c6e08ee86bf311d75a68aefea7cf3e13884f02a0515d743

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 26de77d818810074c84de5e3819c14ecba208da51faa3c16350c8c760384520d
MD5 e8e6e375c8391baa54fa9bf31cd2d198
BLAKE2b-256 57e3f7667f059a0162e8b5fdd3967fc36f5efdea5410edfcb91dc9774ddd0d5e

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3e5627e05708ed036d092d01480e99eba92c370b4823c0f88a2389f68735cfcd
MD5 41d44ad4ea196052adb7bf05ba853e91
BLAKE2b-256 a7262c866f0bb59a8cd72e4149369bd3aaefa1636390def7d2503125ee9ad076

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3911132882a6687712b27541b55f19554a0a2e61e184f95ea35eddce38201d37
MD5 09de238f0657adc25ad0878a3bb5589b
BLAKE2b-256 d7f1fcb5d4bb2c7f8bcb28de35046e4b57f5b95f493305c95e7720ab0103df90

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 7ac4afb54890343335807e9e25277030a429f069112146418ade98c02a2a211f
MD5 b717029479d0306ac54888065c9e7181
BLAKE2b-256 c3befc020b8488f0d0e0b48d3d331ef4a3fca175e08894556b8f8eb7db586ad9

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ebf12555563e14f8d6d89a23456cb7b907481905efc3a2c1ae74928863685ab5
MD5 d149af7bae7c1bcdeb66de808ea26082
BLAKE2b-256 5eb058e6a1945223610b5866eecb5978bf86dcb28eef85a47813c9dbd646c1de

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b99351915b0830eb89e997409970a90d164991ab765f357c9719eba9e1e45406
MD5 16b9e622f055f9d845bfa0715c301f66
BLAKE2b-256 b2aae8d7dc17054815fd4a33032a73824d51129c607db3cc720e34e11b684994

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2b072a14ad2f0ec6f6c1c0594d36cf4eb27cf6d51e364b291ca50770b3332c44
MD5 544e4886f94514c08b96a4703bd7cd65
BLAKE2b-256 d42a2b845228f4c347effa3df1f005f6eb63a47081f99e580b1f251f562f4c25

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0a99e7223d7cef5cbe8c927604bd748cfbe300238fc27d4adafe7000740d067c
MD5 3103d3e0d9161edf7b809234e96bc851
BLAKE2b-256 da04a809071b21dbf35c28ba7c2d1db834548d1fa794409b79407c54529324a3

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f808113c1430504650214b9356a0627f81845561de4fb04e8b5b8f5c85c0a288
MD5 09f947a9df520186c4d353de302257c9
BLAKE2b-256 6b29377bbad1ba13608736ce1510f1326aceb6479db474f9dc451ff6e76d0513

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-cp313t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 06c937e6f0b09a62d365e5e72d6ebf38e88713499fd5dbf64a8387e0ec016e85
MD5 a5299b1a495d48381bd83dc90fd16588
BLAKE2b-256 396e80e8c3233bfbd188b4f048fe9a42d008ece698f1f0116c68663916d9df86

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-abi3-win_amd64.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp313-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.13+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4249595c3822af03531fe6c474f3772b4bc3b38db23b02b9efa2b8b8b69af575
MD5 02a1adc0a0a24a854cb2b15ae2f80d6e
BLAKE2b-256 3ff88f625f28a8dc3ae62e8e4daa3aba018c7c9039cc82691c9369b6b819e754

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-abi3-win32.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp313-abi3-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 edead4dfae0335726c2a82c77850d279c1d77fedbb1757d158d5a19b96f41464
MD5 011ad91cc58faeeff24cd49299ebccf5
BLAKE2b-256 dff55fd177826c05d2f29833c8eafda865995879221ccd3dd239e3a857936aaa

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9cad35b067e5ed443b5a3a2f46af989137f478738caac476025dd758c1f5877
MD5 90213d24e27a4f9c2a41374bd40887f9
BLAKE2b-256 cc22608d1b6f42521fd98b5630b5793b23a15b384e003842768f4719e9cd2b71

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 821aaedd28c949a46a1cbfc2d9efd485b4b712a488cb0e66135dea912e759d2a
MD5 154cf4d75d131cba4b0f90e77cb5f78a
BLAKE2b-256 a5ab56a63f6f9168016996acc9ef6903f6d7a565cc32262f989616cbf4b3b3a8

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 24e7fd20ec47aeeafa066a51498c36bf581a2568ecb924f7b9f76d37798cbf16
MD5 aedcafd57603b96c6038bdfcf82ff462
BLAKE2b-256 af9c50a069d5437da53fce146dc1556a1339928397e92bad49278225bbc50a6b

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 57c52e97a182960e7819e2623a2ac72dacb3d3e2a2aff0cab8b48b157dc42283
MD5 df73ad4a5e697aec949e597d9f8fa78f
BLAKE2b-256 7766fe27a13fc50eb4c54e1b5947c27a3714c3393d340f2f9670b35c5f77fa38

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp313-abi3-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 80a433a756a3e885546189a6d20a3d2996b173ebdbb0215390bf023625f32e99
MD5 eadf13c43a4ef2b8088f6745b067ebc8
BLAKE2b-256 cfae609ac10d9c4364576b3d7e5629cfc65bf45aa984a7513a9ba06f7d93f792

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e8f10f232a83c759ff29e84418b074e8cdbe79e84cd4715b54181a9d303512d4
MD5 bbb229d69bd120cab5a63c1a0e6c93ed
BLAKE2b-256 010c887616f750d34da97f787de7efd9473136e5dadfbad745b7ed5b724de289

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp311-abi3-win32.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp311-abi3-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 87b63f77949b6383bb61a82148919bea8a0639922cffe91f31e75ea4439ac7a2
MD5 3bae13ae72b10b5f9a4297adf2bc38bc
BLAKE2b-256 8a1c2628d5227ceb5b4f52b7ddad3a67b7f1953b6c65ef0e52047ab97e65feed

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp311-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 73d46ed4ea4dc1135620b11b32c9856092430d10c53aa99fec7e2ff0aef9709b
MD5 6ec38e864b1f5dcd67abeb06083d9786
BLAKE2b-256 112356b4885f7f3ce8d71ca917236a8296767c3fb8f5b7095e19631e830a3fa6

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp311-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 efda8f9510abae021b8019fd4fddddb14f4370ecabd25f317a2bae8ba0e164df
MD5 1b435e1cb1b81426623a591da0dbd8cf
BLAKE2b-256 50d0a506a051f95b80ef7aeaef16d636b2d754fb5c2c036aea89c2e4fd5dc6fa

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ddfc973933e0a1a2ec95a1fa243eaf487846ee1f03bc9cf5ad9b72910926d42a
MD5 07502592b8af127c8fabf9af8a8f4c35
BLAKE2b-256 4492cb8f49fdd12ccce4263a1ade68052ed83b2dff86c9f6c6c4a76ce8f081ae

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 565903ff74a9358d7a92846564044902434fded775e461fc7f508bd286beaca1
MD5 6493e71b7241b5a19c103a638b84afe5
BLAKE2b-256 57d09b0e19895b1ac2cab78e11027729b44172e38df16b4ecc4436fc6ea6c59d

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp311-abi3-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ee1295f6438e0aa354586786707e5be366d0b32957c4bfefdcc19fc883c2b7d3
MD5 0099e8dec61d527a631ede8be0d1f924
BLAKE2b-256 35ba00ffc05fcc4200d62775305de2f3e5b909f74f59c3aea9c14010bb14df5a

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec5b19cc7c937f58004e16d64c59d594dce1306f9050059827620e41ad1aadee
MD5 f01764a7004edcb392a8b3b7dd94eb1b
BLAKE2b-256 8a253523ca663ff6192645771914cd8b37b0f656da179783174a4a2727131f40

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a7b82ac290ea423ec3a6ea56547603a7711566352135f595ff4ab34e18eca5aa
MD5 7f2ab51e75fc1b4f301172312c335b28
BLAKE2b-256 0fc73a6eb25f73230f620a853db9d7ed608e7266b21dcece197162c2baad53a6

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 624c191e23c30f9bda4dd35ed65f052c3c8aba7a0b715efd33afde104c6b31c3
MD5 8495d41d3668decf32cb4feeed682093
BLAKE2b-256 ca3928eff9e2fd341da36e44a44fd6cc1f4e506a564670314ed967d454aab3be

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aea5fc58d63ca79544ca87e4a6be5d54f27ff2d5453d20bc94343ed955e504d2
MD5 9e76a9e5c04da668da8c754d43566f31
BLAKE2b-256 6f0efddea371599f646acc53e0e522c5dc2abce669390cac5be60b8bb1578fe1

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b4d1313d7b065703bc8ea2da897dd7ca2f009e57d2b032d77a0291bf1c1d0690
MD5 c3d2f9a32c26c835677897291d28a621
BLAKE2b-256 f7f8e8f58454a59bcd09d9063be9bf22e0f2e1bd68724168191aa625d9ec85be

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 55162808add6993ffc4e91a445903e89bac0736f65b8a19ecd5d4914f5fe99ee
MD5 f6ac77622ee8abd5ce5905564c41a52e
BLAKE2b-256 9119e8290cb40e882f3438e1e6866111382d0bae3e86dfb2bcce0258011cf730

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 bfe96c4eccd64a2e8338ed88a42e5a5826ca0785ec8a01f05469adc824aad329
MD5 be83d69ccc28658ff2669d34bc6714b3
BLAKE2b-256 9501d4ec18bb1dabb171a4a8528c58d6e66a133f6fb71d5b61674fc5eab53d5b

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 67ec4a2fc6b4b7b9217ebea4266077132cfb59bba80524a1eda47d4d8d98b654
MD5 14feffb35d8fc5b65624d16f3987009f
BLAKE2b-256 ddf7c1bcfe6d0f00520a2cf657186cd9b0c8e28e3c5134c3dc6e5affb3eff837

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a5679c78d6fd1d1f179d2b8c526b47431c774c667621f5d5ff1655a92958d4dd
MD5 586cca5a997fdcaf74ae6399a191caca
BLAKE2b-256 ef520089e0dad563cf039713763b2c9bbb0ac3079a16145820a7438f621f44f4

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71bfa2a852972305e3acfd13ceffbbb3f8f2e1f7583c55d565cb4a3bf1157616
MD5 f161520067cb54f056c1a0f485c0c749
BLAKE2b-256 034a864b954cd5305fd07722bbb524ab75e1dac0a7a5f3d3fe9321f1481518e9

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11c42e5b6d00f0e5c6115bf3d36464aa3b711e849bc0f8ccefc6c1fd14e51fdf
MD5 abb28d159842f8038e264da98fbd4b5b
BLAKE2b-256 97e6d4b5401fdbaf83f5e28439503658d04148a2211463e4ab91541efb8bb0fa

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0b6e81d849a5dad81aae0f1f39b442608c6ee97a55cd32e8434eda2f34ad4e7e
MD5 a6c69f62ba706f199152942853aca928
BLAKE2b-256 346f3bce819266c5a8829023c5542c427dd65a411ebae5bcbb0e6e81ab00a79d

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8247f8cf4ffc59ec6f44d2239de980f6aa0b28379dae1bd7b1c6085305befa51
MD5 705e6610be58b358a5364dd16262435e
BLAKE2b-256 310e95f9c5bf93a10f09c25d95dfb71a52483b3a7f5f9180157e2a6ceacacfcf

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8b98ab9af89717296c260cfa3446a72d7b1d1b0accdbc0ce602df5dcc778c890
MD5 94df23278776bb343328e2b8d496e2c0
BLAKE2b-256 126143a2e6a2d278c356bd2117bac558140103df72167482e9f67dfedf5c2df4

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cf2f44e49ec3bcd621137c744822e12b6fa9dfcbf6556ab159aa61e9811305e3
MD5 a4a5cd57dd84f51a15122dfa0382797e
BLAKE2b-256 f2ac553f3851ce39496477067950661d122bf336b622098f67ecd49bfc133743

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 09f94d4d2908deb7735db6593bacb6b91e9b6d917b2acb5924be473213385d53
MD5 cd04524f07c0eebe699b3ac9574cfc9d
BLAKE2b-256 ad5e9a0b5d04087faf916f0a0dd12855d92c14f9fd637d9cd8ea8db688d7ea06

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1150cf07a7e42936a70d52f5461c56888e831f4c2ed173cab600d7eb97907452
MD5 61aa33c6ce3f5e31d63b50081cc1a00e
BLAKE2b-256 12050d56ae7d53880d4f4913b1738daf5a3b14a6f4a9654f56a352be0db9077e

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: awscrt-0.33.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 41e7214dfc294ff86954463147cd639651fa41d8c5fd9afb76f4fdf24e4a3160
MD5 d0c5402c8fe8f693d630c25d0b916e14
BLAKE2b-256 766a28248d1675c2d3d888b4d257d83c2273ea05d09fb819297bb90972df02e6

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 45a2643770e5760e28e25d6124c4631af97e950ca8fce6463944b1b82d12fddd
MD5 660f093069a85c770253a41715d9fad6
BLAKE2b-256 a288986f804554a9fa7cf13b7c9ccca35d9e1403ab441141d1e16b24c26f979d

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d6503cc46af807c5c94ecd9a5f35c28673f2b7ba6c1d83d56eea0c50e68eed9e
MD5 10e556297d1311224503627d66f82f26
BLAKE2b-256 ccafde6325d80f919d332b6ce411c658b19471398032e8960dee10e76fbc304d

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 299210ea452f624d3ed47b1d2e078e3726b3e7b6bb97a674fecadedb7737cb75
MD5 8e878fe22e4bf630ec58792748ba622c
BLAKE2b-256 644603cd4367c67c6f9391451863c7b63ba15a3e0971b9e10a393f0b51020465

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fcbd0daff0bc8cf991c1ddcb53aa6b9287dd621fc3557e3353304f5530a0e162
MD5 f135c23c061a102ff1c79e2155bb1294
BLAKE2b-256 90dfdd64db852893373e19f675df51227ff7330c0fd8600142430530a6a53d0c

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3f0ec0523642a727799d523901a2fd620107ab365b44efde25c918508be5f0df
MD5 4ac5ee09bb73c394bde72211b23fa4e1
BLAKE2b-256 1802c04f73c1f27c10e35635a6074baf72e376efc901ce712501c78a63e84d37

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0b0ee91f5249060bb6f06fc2c351a17933339cc05026dcc4379338a39cb840d0
MD5 038f764517bd7d25737e425fc3583ca4
BLAKE2b-256 2ada0d2f4c482c64964fdd364cbdc90f3dd2e7c0315e828f6f68dd4e26649a0d

See more details on using hashes here.

File details

Details for the file awscrt-0.33.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.33.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b96f06948869f0ebd02d85dd27dc321e4d1ed376027c830309f78ea7c50af5fa
MD5 7a20475edd6602cbbb19ce6acddc7cd8
BLAKE2b-256 eaecee986e35173db6b64bdd1d83f253a8bd0a40bf935fe4d86540a497d3da6e

See more details on using hashes here.

Supported by

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