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.

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.32.0.tar.gz (36.8 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.32.0-cp314-cp314t-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

awscrt-0.32.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.32.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.32.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.32.0-cp313-cp313t-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

awscrt-0.32.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.32.0-cp313-cp313t-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

awscrt-0.32.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.32.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.32.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.32.0-cp313-abi3-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.13+Windows x86-64

awscrt-0.32.0-cp313-abi3-win32.whl (4.0 MB view details)

Uploaded CPython 3.13+Windows x86

awscrt-0.32.0-cp313-abi3-musllinux_1_1_x86_64.whl (4.0 MB view details)

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

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

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

awscrt-0.32.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.32.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.32.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.32.0-cp311-abi3-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.11+Windows x86-64

awscrt-0.32.0-cp311-abi3-win32.whl (4.0 MB view details)

Uploaded CPython 3.11+Windows x86

awscrt-0.32.0-cp311-abi3-musllinux_1_1_x86_64.whl (4.0 MB view details)

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

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

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.32.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.32.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.32.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.32.0-cp310-cp310-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.10Windows x86-64

awscrt-0.32.0-cp310-cp310-win32.whl (4.0 MB view details)

Uploaded CPython 3.10Windows x86

awscrt-0.32.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.32.0-cp310-cp310-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

awscrt-0.32.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.32.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

awscrt-0.32.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.32.0-cp39-cp39-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.9Windows x86-64

awscrt-0.32.0-cp39-cp39-win32.whl (4.0 MB view details)

Uploaded CPython 3.9Windows x86

awscrt-0.32.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.32.0-cp39-cp39-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

awscrt-0.32.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.32.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.32.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.32.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

awscrt-0.32.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.32.0-cp38-cp38-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.8Windows x86-64

awscrt-0.32.0-cp38-cp38-win32.whl (4.0 MB view details)

Uploaded CPython 3.8Windows x86

awscrt-0.32.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.32.0-cp38-cp38-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

awscrt-0.32.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.32.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.32.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

awscrt-0.32.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

awscrt-0.32.0-cp38-cp38-macosx_10_15_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.0.tar.gz
Algorithm Hash digest
SHA256 92e749fce6c61da8db1af0baa6b7e96f7acf8a5574760b3d7880d190cedee8a0
MD5 885bb10c9e42e8ac4d59b31cc319d6b5
BLAKE2b-256 4d4dc2aece4af7b5537c855548f53ee077d01216a1a4adbf0fd24f23dbac52bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.3 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.32.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7b9eb088e4e17539d3c5ec8f40f04363fabb807f9d509653d2443056d22b3506
MD5 1cd57b1f10d90cbc1cbc81614b3b54f3
BLAKE2b-256 392c65ac451a08b57d9d66c8ffc2cbdf3c32e7da84d0a1887bdf6a3da4877585

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.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.32.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 de44db7677361a05a1cdce9a1c29b6628542094599cb33105b99b97b4b9580ea
MD5 b2591f880261e5084d61fdd82d990b39
BLAKE2b-256 972bbb17205da426d175991ca9f9a5873c8c50a0620ec12c299ee3d80941552a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b83427cf90f1606a34dbbe29b1544f945899b3abdb8608a57f004c6f459fd1fd
MD5 0e2b6458ffb4548a52b7e54bd082e233
BLAKE2b-256 47b6d1d21aaa4c3affc82ff3b4ae75bad10d80234ea01d8d239a578efa23646b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 877e6061448abc91b1926f3f8c73808ce2a170a404065ba185a407fbfd2eb8e7
MD5 ccd23903da8453b48ccb96861b028bd2
BLAKE2b-256 273620d11e4b2a32337b712f1aa683a7d4bed777d1bfdff5d7803c7b952556c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f82a7969c025875fa419fc6349c8013bc88359ce264cb6c2399d03f42fbae0e3
MD5 e00702c167f0f8a445acc96f3fb55f4f
BLAKE2b-256 b764e7d5eac410e305b5d62da268d4c486dd003b065b3119031679a6cf242861

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 4.2 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.32.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c1c69543cdeab10f7fcbd3f238996ee1ed73fb8f88dd9701fffc872d73bd256d
MD5 d0da7c7ce5d8371e898a26a49fbfc752
BLAKE2b-256 c6a6e0c63b8b73424f91a9fab52f100f412864ddd47e01ce84a6aeae35a12b7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.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.32.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 5fb05ab256b90c2d39386702d20419159b605a1f0e95d0fade715ccc9a76856a
MD5 ca2bd0405f46a4266a45d4e01acecdb6
BLAKE2b-256 424d099e4fc39839ff130716713401d36ed9fa8b78feb5dcbf273e1e1aa71dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dd6df896ae0650977de05c8e83fc5f3f7472b4d8de7744560526c13a63da8fd0
MD5 bf84f58cbae87dfcf7d367a5c228a5d1
BLAKE2b-256 8f4d6e2dc94c69b32aadf037e5057f550d8e1bf3271573e5e95cc8934499a579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4bc6492b7622cbad46d65492fb12239d946e890797c5da6c30a878a04c694623
MD5 851e9ab39494a2fa581d37456c52f885
BLAKE2b-256 3d8e05572eaab9ff7a0a40f17c084d61389602c5018c7f4b7bb7ad9e58b4bea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f22723fc84ec31ed13591105083bea57fcbb7a9b20600dcfda8b5c28fa8047f8
MD5 3b9900c3efa2bc23100b86bb0ea18ce8
BLAKE2b-256 e1ccabd847148100a62616abaa5bdf9731686646e2a6f73e44bb63a718d6fd1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c51510e2171a3cab33612b98333a4baca391ed76a1185e9f6ec5433196e646af
MD5 af2d6e83319ab2ac19e27e88428b4ce7
BLAKE2b-256 529efac5cab0cd7a94a4978daade9ef6d77c3b1037f470476d16ae822b54c97e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f61cc36f645444d4e27cdf2c8fc5d3fdca77de35f341ad0e6c65f6c097ef5afd
MD5 c7e1e84652587cb291f60470108bc854
BLAKE2b-256 9aaa5d85dc363c2269a205d33305e13b07298beaf582f653f10f6fc70531dc29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.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.32.0-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 7a3a464b0c23d1c2cca23b210035da203b1ead7cafcda2cebb87af3de20cc2b2
MD5 1633fcff618c24a7d9717a7c7429c647
BLAKE2b-256 96d6d95df41f0e3a9434a750a33fbe465c8638212a46ec469f301511fd4791f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp313-abi3-win32.whl
  • Upload date:
  • Size: 4.0 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.32.0-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 56c418ac23102e34ad95ea68ad5527ce534b7c79bb3ec3b908b647d90ee3ce41
MD5 b3e43dc067c62cb93520d33a9742b88e
BLAKE2b-256 50f2cf80de14e9735750af9c4d11173150da997b8333ca6e68dc4850b6768a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b1a9f3952f382feee264614e727d78e7fa12bad138a025e832affc84780fdc89
MD5 1a82de4eacba2c019131a42379744dbb
BLAKE2b-256 96abffa769df6417720a4f9bddd9f8cc077f671d0a970d88d2c80e0e06eb0890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 68e36b744ed8089be80a2f7c8ed9bd46573f00870d1429707c1c847f3dc99a6f
MD5 5767aa9d247b3ada36b19aeb637ba3b5
BLAKE2b-256 ebafe299192ae380cb688ff505aa9145a9b4e9c31bf12275d67074bfd6aff899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a94d7c85486908adf07693519b3a8ec7c61b86cc0901fed266ff2239babef6ce
MD5 b7b187522939689a371b35cef4bfbe4b
BLAKE2b-256 b9be3cd7ad30fbc65eed95c1df2d50f9f1facb82335137f1842ec4e2152d3a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 18e36af2cfec50b0a2d270921217245c36f6722b9aae756394ca050dee535883
MD5 da10fb197a83f44970b678c472906083
BLAKE2b-256 1f4dc2f8a732fef457ce58e7d798b2775deea16a3a840d8a9dd43bb21b80ec63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d1efd89302eeee14878ca2067de6525c85d4973cd4473bc537e8807ecca660d3
MD5 1ef9fd4acb751b864e5882ed6798eb2b
BLAKE2b-256 d3672093978f8496dad5e90d77c3f59f07d3f040e32eda60f3592f1b45d48d65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.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.32.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8213ee3b3c1adb5364a48a87420cde4426688f0438a88f6381595586be7ffc17
MD5 e087cb55d943a80a3160cb00dfb36188
BLAKE2b-256 75c20bd9346f22ced5f11dac7039876ea2824cc3e268b6b681e2a8a29b1e8701

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp311-abi3-win32.whl
  • Upload date:
  • Size: 4.0 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.32.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 8cee2fea902452a36f67f9d79e6eb406d4359854dad6df439b3c671f07059763
MD5 5aa5c33f41c95425fdc74d590b698738
BLAKE2b-256 c48a6371dc9dc7b4a8dfafe7ed1b4f30500cc22e239413a6fdcaab72f8b80b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7ef6f0e728c1b7a0a4b771d4c677a00bc1bf377b8b2dd59a1dd626b920efc3b
MD5 d14b8ec1d1cafd6093cd7d8d64ecc3a4
BLAKE2b-256 5d2e0af9a203fea97504e0bd11261b12422ff555745699c176dee1767f09c9f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f1eea556144c2999e105966bbe97a0460d10d656e331bc2c875f15ece3315c3b
MD5 69ace7d797575ca4c7a9cfc7b4cf0f34
BLAKE2b-256 eb236dbefd6efbe0914c73f633ea6702aa4701425337f4e0c1059ec99aedde23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 11a8cf1902c35ad784ceedbe2d5b44956a34bb2b7c3c818511ce93bdb21bc386
MD5 b1a2b8c15c37f5cabd713dbb76dcefc1
BLAKE2b-256 2c9237c25e283ed4ebe21117fb183c1dbcd947d72fb770f05f9f1e8c2b63541e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 15a96559710e559bc4131b7af55b93c0c79505d4b9c4c4511b3b825bbb4f82a9
MD5 c2df16b267d7390ad6405198274e86dc
BLAKE2b-256 4362d1383a31d32b9963a3a646d926f77a46d88cee1a86536186ad0ac0c44aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4ca7040b279cf6014c06de93be7a29a164c9c92469eb79c70143853873e81949
MD5 2e7b36301403d9946cbe5e55be04ff87
BLAKE2b-256 9f741e63af11b71ca90e6bcc70affea6400078d4cf6605f0593fe0a91a1daeb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.2 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.32.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d4423dbdb75ed37bbd9697a672bfd75a02a7354ac9b818fa2d38059726171928
MD5 db9516c1c5a7874ca441b21283ff918f
BLAKE2b-256 b36372f38c224bd38e383b1e08713c655c0756a41c6d0e7e59616e7d47b6ec35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.0 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.32.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0a585e9089140f55a8452c2f1aefe17712d39eff5413c1c0c7aa393e749fd5b7
MD5 1c5af6f7600d259a2e3fbce29374c34b
BLAKE2b-256 7c2f2a3decaa3111c47fbec0a051767838741b52c61e37c215cb9c905d74ed5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7cec6175c9616840a599050a0e6157846b509e7b3a7f2ab9f8e9a64bcb342e68
MD5 9a7722afb17b5692936721dac51bcdff
BLAKE2b-256 9557e64e365c9112cbe4b04982effb22d62d57728513555c9516879598ebfea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 43ea8a3bb994259b1c2cb6fc400374cc6c84a2b235eada3370d5f012420427dd
MD5 32fe7c544e59210926a141b40457404d
BLAKE2b-256 3cfa63fc0f4573bf29135fde0b5a168c8d2c003344a342e7a342ab6e13ded795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3b3014bd320ce95a3698f8b00312a06accc6222505ace4e6cbb524aa10ab8654
MD5 4b31590fb4b9e15dff58ccb313c7569d
BLAKE2b-256 b809193d7da3033e0c2f283f0c1a017a6e0918c91e0f57c3e4a18314ba7c97ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 693f40a004270dfc7e0f92f7d36ef5fb8e40de686fa87a0603ade74a479bbf40
MD5 10b5280fa5d223c005a413d7a88fb2fe
BLAKE2b-256 a38e81ad2ad2c90faba849f106f4ee8c2f00741b1137225e965ba2be4b36fd9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 211cee3a5335bbc96405afdbdebf9c17bf16f3a299e9d8b661d5c904634ade43
MD5 0a89183044e340a55ab8038ed566ec32
BLAKE2b-256 939fded80b31ea4e30be66cf8dd35ecb0bce3e5a2fee39542bd877d7c2f2c2e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.2 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.32.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8dfa4efe52eb988642505d92037b1e7abbf4492eb6fbc319289d1fe7e7976236
MD5 d5cc83b1b928c8978af7378a64fc9f33
BLAKE2b-256 d09207092e9f6a1e4f29b1f103945b99361fdd8656e73a481355ca64582d44f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 4.0 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.32.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e0c7ffaa73ef607841b24fb3d3787128c639d8e3a2c3007ace5163cb293442a5
MD5 ee9234470ac8a456099a8810ef6d8891
BLAKE2b-256 93931dd39cbbf554d56aa3ea083757eaf598884bc3d5eca1b148e2d40b73cdf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4e9d2ec925c82a12ce8f3a8c9c39a745183851ee29ad8ad31ffa826c520df278
MD5 f955d47b41699875cb6986a801c309e1
BLAKE2b-256 78bf3aafe54e5f32ed014b751ffe2c37fa79f7cf23b22a4151264e5e82e51b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4d5028241cae3433e15710bdcd8c1079247babd3b0b638b2687ec47c26a57c5e
MD5 fa458e70f7aefde8ce817603ce2807ca
BLAKE2b-256 98e040fed2512da5039e8bdafdbf00a107dabd9f4a411b4758ba2b90d48c2ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 308562b0adbb7b8dc4669543615294399865f2b869f2e647d1acfa789f811f3f
MD5 fd2105033055f6aa4d15369944812cb3
BLAKE2b-256 48dc124897f17080306996953e93b4a9c115f3b135291d8fa338c681098867c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bcd4be2ee4a9218b6c458a3a5486056d8937e2fd12cd006879c42930aba5e1d
MD5 b9ae0a13cec431bb715717b87056c8ce
BLAKE2b-256 ad6f2ac975fc74f4ac5e71f1e21db615c85327fe0e4d71f11cfdabd5e9902e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bb450b7ee0ecd4a4632498e6df78eb3d2ed1fd27fa71347d4272c0d5ac9114a9
MD5 42675a72211509d77af659e8a2600fab
BLAKE2b-256 19b3b4ddd92bb824f572539da0d2e8ece83dd417f0a481894f78a3bc48a30193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 274864b2cc290162b10258907e58f745651aa0155d0b8949b2a6bedd24a3cc83
MD5 62cbc38f0e38eab22079e45ef29e85bd
BLAKE2b-256 a86fe28e37615f582a2c81aa45bcde2c79991976908bcce3a283e236a645266b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4206e38a1fb6a858b378eaabe156c3f562f43519087329b9633e18a493174058
MD5 04e96886298b0519307e0f74896e8197
BLAKE2b-256 79d7b1f69692c671e0958ff59ceb456613a91cfa664cb71bc4595b914c524b56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 4.2 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.32.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1bd656bfd31e60ce29a1e812c64b3866f10834792d6ea6fbfb622b3a36d2368b
MD5 6a803549edb85c418c5a832502cb6bf3
BLAKE2b-256 6eddd1c329a78c46401e4359305f91c93ebe02a9d5a229d7ab4376b1ba1e30a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 4.0 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.32.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 55fd837f1e908df710f4a66b6eb00f7430971d35af3cf354d855213da23c3d4a
MD5 a36c1d40a3a84523fd90a8f6bec9cef2
BLAKE2b-256 d4b37385c84f6af108911089558587bdcc93330b903ac2622522b5262e25596a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b6d1b0ad1978ce8c1bc426c1968ea40cf9b35ceae1a78a07b40b403f38c9dd5
MD5 5abe5e530f1dfe22c47c087401149b8a
BLAKE2b-256 327906767e65615be6a182f7cb5327d32c7e0dd01d99e9ad81104d35c798bd79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d51a10dcb7de140db1a32a0369f2d7b96435875fcb7f7b4971f2a8516a73a52
MD5 70eae13bc64b8768e784efb5f4acdfee
BLAKE2b-256 58ded0315e5e774993dc2dc6f629c4f1c446c7801d11ed389e93a2454fd466cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c9c9b0973c168de301e70fec7b12b4dee368ffc5e452153546f82c3c367f6c9c
MD5 978da3f43e29d2ecba8ba5c07afae4ce
BLAKE2b-256 da0905b5bc4642e1906728e2364fc1c0cbe5c4182c2f2d2ac939fa152f21bc29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 effce51b78d83c49d872df3855bd96b9d6ab23490f4cf04c391b855e92be5b2a
MD5 57f98615132a245e2349c4e6b7770634
BLAKE2b-256 de574adb4c41f8540339dabfdc0f1a0596f59c9bd623cc9bf30811710503776b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a6424f4c135ef45bc9449eb3b33a1803bbc4eaf4af5b6729bc1dd63f366c8585
MD5 dced6327bb6353a8a2867cea3d398d57
BLAKE2b-256 3e61a27b010da045c04a593347080fae399de928048b732fc2115606cd3a841e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b37403f2cc470df93712e18778fa9cf46647b1dc8b844c0cd10c6b3521dea11b
MD5 777de3deae95c1891417c368e296f574
BLAKE2b-256 c177e7b38c27f9d41285009906e6ba8b93497b429b1eeccd2d595e776a3016c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4f47a4ee9dd8e17cd1b857145f5158b551770104bafa4dc36523750f37a39cf6
MD5 25ed485a366b2d65e24e5f25e73c3123
BLAKE2b-256 a7ec99ed1b927e2bf2c77e63a739fda9b84aae0b9ac371dfe0de715c90cf0aaf

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