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.32.2.tar.gz (36.9 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.2-cp314-cp314t-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

awscrt-0.32.2-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.2-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.2-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.2-cp313-cp313t-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

awscrt-0.32.2-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.2-cp313-cp313t-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13+Windows x86-64

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

Uploaded CPython 3.13+Windows x86

awscrt-0.32.2-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.32.2-cp313-abi3-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11+Windows x86-64

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

Uploaded CPython 3.11+Windows x86

awscrt-0.32.2-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.32.2-cp311-abi3-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.32.2-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.2-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.2-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.2-cp310-cp310-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

awscrt-0.32.2-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.2-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.2-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.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

awscrt-0.32.2-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.32.2.tar.gz.

File metadata

  • Download URL: awscrt-0.32.2.tar.gz
  • Upload date:
  • Size: 36.9 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.2.tar.gz
Algorithm Hash digest
SHA256 a4f48805e8a66237923f03b7b692d213994cff42d1ff08125d1d60c74fcaf872
MD5 819e6967ab50370fd87134717c6b58d8
BLAKE2b-256 92cb980fe60c4209af71d036276217f8b9f372f958e290c15d2849a3de4dcd23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.32.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a6782c19a00f354c7b232b675f09cde94d1ca37bcf29009b8779b3f6395b27b4
MD5 4f9671ec232e30f3212633e15d3b1c74
BLAKE2b-256 ab85a12515514de8969b9e7fa40bb782501a336a8a985cc3093309120a80b627

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 25c7e7e6535cb2d2a4d22fd6264f621672d3903491318364dbc59066b63c7186
MD5 ce624bea700474ee2517f8155e3cf77e
BLAKE2b-256 25862c9b5479e08b8198459d2a781df5524e45d4d0f9c6329bad26979a4d1e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 193cc3ecf03a1dd6f989853b6c21549a0a9750c855520fedc8c3c8fbcd32e1bc
MD5 df0134b3f94740af0636c7e80a64c001
BLAKE2b-256 2d7f7f52020bfcf29122cad77e936d82abaa1f6857a5a70453e8cc734119f0e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 51d6132e9d70de40da07dfad5f17780a652dd4b351c35ca97c79d0fa0186d645
MD5 52e6ceeb7e4102ef10379a48af5af0bb
BLAKE2b-256 393a0ae52a8dfb0e3c37f0129232d79307c65e6ee1ea13a3cbdcf301aaad0a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7404cb551046bbe7cd454ea75f88b4a1b26f018d1b9bea83dbe46c174789d835
MD5 8b3461a8c77703816a5d5c23b9bf6a30
BLAKE2b-256 c70951fca333d42b53ddb04881f53e3cc0f4462872ac81426fbb34f5d0b1d1fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.32.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 a2f513f0fb3aafdf7cdf29d7f6f0c46bf4cc7880380c86e88635b7818565e76d
MD5 61200e613f2f84ef2f7ccc4be3f0d190
BLAKE2b-256 71546cca298e8acb6769c8078b39bedbc507f17a3f7fe6ea768d8256d584d4ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 023a2f4595804a0f1d61ab49b64dda5612be9bfbe9b13759331e8e31658dda3f
MD5 acb5e1866413ad86fe09c75248a2ec33
BLAKE2b-256 26be897b1ad519d83a837d721f4e8a87d98e6f36e5b985fa697f3ffed512a8eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9fd2dbca02f4e22fb5c02d1505327e6e6e9320dbe8ca80fc033cbbb29ed8631a
MD5 6cf36b62c5d750b9d8c1b21dfc06bb67
BLAKE2b-256 42e309ad98aa7dae9cd3ad578c7721b64e9da03f9a5ed444e518c63e82db05a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7f92b8f40a104a2a87ea5f428b3799220666ec1450b3a90665867d3715749e91
MD5 fe859788d72f6dea3f692f8c257ae688
BLAKE2b-256 d0ceaa08aad92e48929cfe243ed7da5cf039fbb137c391e84af79e88c848a37a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6cb3c858e96ba023de691a3b6478bed9fb59085433042dff78c42e59eed19cf2
MD5 b623534835c521b2f9d5ee12e87da789
BLAKE2b-256 e0ee2e9d3716cf6a24f30b85af24691d473c913c119dc996bcd8c9b2b3fe2c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d8a4e52f7312e5e435461119aa903f6424e9996d93a040101fb1eb7b9c4e58dc
MD5 e9d227877987a8f4f3cab7e49a9fea4b
BLAKE2b-256 d312465d72ea6afffc7829f7f48f408a707d4dab9e3f2b694f4e0e63e011478a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f2a085d0dd4eef974f2ae5467ae3717d2fc08dd8cd508c4fd7a5acb658c68616
MD5 4a63528dbd53f1ba7135697722d15f81
BLAKE2b-256 dd7618077410c1d7b524a7a7486550bc969218f6575288f66e285157dc78e143

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.2-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8d731edda20dce5afc15a04731d91136a31779a244672d1f0a292a8b04aa0fd3
MD5 749aa78864c73c92e49ecb6159516c41
BLAKE2b-256 5c269f5f23647465a4fe1b28afce334e54a4264e23b69365024c28955f0c4119

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.32.2-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 a81f30a501d2eb6ba52c769cd6ecb3f7005512fba4a533211dc717e1115b0d94
MD5 7cbda451aa930488dfd61df5b6c44a20
BLAKE2b-256 64aab12e721c8148a1bbc58a22cbd204d88d0a6263331049d40c057f9dcd3e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ec4d8200eb0158b60e35fbb65faa96ef1eb7763f6ce1192827886ee24c6df99
MD5 b2274aa72fd0c321b976d903503d6145
BLAKE2b-256 f536f14ea531cccb6ff85c4d50c9e79e61030675520a393b4af23685d24ea018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47330f421948207a122092042f235cf82d48fa145c446ff4db12cc8cd3a418b6
MD5 90e04cf350e951db845d4858cfd560de
BLAKE2b-256 90f5064b23d4c927e9b63725ee60c88edb75a1e8f5fd1e97d56d4d6a63fe954b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 79bb11d5d1dfdcfd867aac4a026bee11afbd2154279e12b66588442d8c14bdf7
MD5 fdee23d96146c8b4f74ce38830e32c58
BLAKE2b-256 af2d5736128847ff4a877d50720ea7a48d7e50a56b78741919e4b6ffabffb1ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ff0fff9c2b613d7fabc298b0fd81f0d7056353f3d20271a852a719c5b2f7ccf4
MD5 2e41611c5c0beb81aa4a086499f4931c
BLAKE2b-256 e3411c4783b32bf4ec7383156787570ea1221c95c037c2c0f11cbc9e9529ba48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d2f7aee3bce261ab1ceba1fac404de4d496aa866237161d4257cef92bff9d828
MD5 cd2317e591e2d205d8fee7d4d6632e6e
BLAKE2b-256 7ba3075e29b39945f398adfb5d5ee4d533e00d37c0f5c68d79b250a1bdb087ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.2-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 80420aa19c074a4c0335f2bd0e4aee3381fa452328d937795a1e0c779f0c052d
MD5 4271f4c4736de022f26aeba125296c4c
BLAKE2b-256 570bfd1798551ecdc8a28d61ecdeda248f99faa3457f83aefa10ab797f466889

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.32.2-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 5197d1e4e780d755632f79f8d32a09a30a9101cccb51ca1694fe25c711b2e801
MD5 9c41d0965cef5004e8385dc502a6cd55
BLAKE2b-256 e326f5b9e9677bf90d1840d4db1513ba92e73601ef82e61a16e747a83493d35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cfd437122d5a2ec7eb9fffaf2cd8b96543d4a0d7e906b9515b79672005a1607a
MD5 c667fba6a5b859c65579c554783fd104
BLAKE2b-256 cd26b8fee227918465830a0bbba48f54ebf0a5029c3a7d11d4fa973838a79262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ed7c209136650fe25659436bb4150e5af6eb43d71a0bf294f0bf414428736ee
MD5 38d1e8b7c7740c3c94b4278ba53c853a
BLAKE2b-256 9a6663a4654b2996158f33e88d74d79178a5812d94a7e0d6c94ec475115dff18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3ef1664588d35dcad2115377120667e689cd7a517da52a481373c9536811ed96
MD5 8cd139d3b8947f2f8ce5ecc40d5fb640
BLAKE2b-256 31ad5db0691a0c72d55a17c03c47149cf15d4602b83b470355c322c9a7f115e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f8a586c52f41ff14c2f1b8afeb764e231ad3d66acfd42a6b9fb6c8afd8da8fe2
MD5 7965fd5163e41c2264dd14df6486dfec
BLAKE2b-256 a703665c81f3b9d3c56fcdfb8f353c22501bc538d192c431cfaaf307f867d404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 32785f54d0786e07b6491b51f9c2f75ea9e17decd39bb6b66fdc60cd871a49ef
MD5 06cc5e66d01b3e8f74b63a9efa63fb7d
BLAKE2b-256 0399a6c712a2f638c766b0879da0eacd9fe5695c64deb89c0357bcc4f1f4df9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a13c0a555bd930c829c72e6b2b2df70442b3b414037fd488984495b5beff5ddc
MD5 766cdbef02b0cb60c42df0fe10a3e85e
BLAKE2b-256 834217ab1d701f2628adf7b1b993cae9993111ed760aaf08f5772c2bf37c6b7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.32.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4e975223f3af4faa581c733f0fdd316514b987c42ce85ef3bcd6d9c02eb48f77
MD5 fe57ef9e98f72580e0f07eb0ff5e7e50
BLAKE2b-256 65bb769f8923d7d7986e762898fa98a9d16130681a47da2ff668e6fb07bae0b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d2e8a13063a3d9b61eee0e2885d133a75b38de3600f6b62437d8559f7d664e3
MD5 c8b03d276906be3ddb58f6a118af725e
BLAKE2b-256 5c7dcf7ec60d4997ee966ca003a3c7bfc556ee34db10f230f03e5608edf022ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2792fc2877335673058d0b4e8249ef73dc36b22689fda939506aea6eceb42054
MD5 4ee1a2f36327a463139906bd02200af2
BLAKE2b-256 24bd92fcf514966e7a139b146282396608493b99e25f745b332075ebe18e129b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ab06479bcdcb42b2956f59c0e4138049e5b44c885b7584ea05e39cc4d71b1f99
MD5 fec11e92d33dd81a1f12f3358cc75a75
BLAKE2b-256 3495a9d9ff694e15550a1fa2f83ac9b3b50cc5f809d66dacc57af4d84cc01c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 acb707df280079d21d20ad1735b38a80d4939133cbaecfc2e4927dd8fc0190bc
MD5 850abad4ab6acaabeb09fb7bc3979a55
BLAKE2b-256 b8d8f838299003df9c77b9d582411f009bf2e5bc07fc68566685b434de249755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a9ed98e20ca6fcad8ef32e3c6779aaa3526a5ff3f0aa99d59e0deeff59640375
MD5 b773b24bb2a163130af5604167b65c72
BLAKE2b-256 e69308c8dde6e10c2aa5e50c08730e7913fd68cc861536260115bdf109f20bb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1752afab4c0c530eae3023e44373914debc1e3b02d76d268aa11d1ebdf42fb07
MD5 8602eb889cbadda8b3df5d830970943f
BLAKE2b-256 864b195fb3a5237ef70be179d7e5a8da0b9a3fce42834d5e1fd2d2d971a69ca0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.32.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6d153aa979d5d92421847682d6cc10cbbacfe8f5eff4e77b0764a3045674b459
MD5 0024273ab9ac716436650ba04781ac17
BLAKE2b-256 95e44c51662e5a92aa4a4276214e1f0df6c529ba292d0e295f50e403eb0170c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f8c4428defa80d7ed98b6e942bd374a9734178a2a26b747c42a66d5cbe8de12
MD5 b277f973e99bf6da9564c56cc6fd2c8d
BLAKE2b-256 b4deaec79ba3a32ace68e90c4cd2f37b02ff46bfb7020903f5d798f956721895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9b9e2125a88abafd2c6fd2b97e020ccdff0765df650f0525ec7c6e388f461605
MD5 521288a65c00b796990bf84026b6380b
BLAKE2b-256 e03cba9e71c4afda435c9aa6db2dbe803f2fc487a4b983528b83ffc1b7f9865a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3a023e9f6ed7485175c3bd38868020144757c262000bd175a993ef4b9579216d
MD5 a7067b866271cb8f931415de2d6c93be
BLAKE2b-256 ad3a4eb1967c732828b6d552085d349160569c0adfeb9757f49a1a620658b5d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 95cdc1bea168d4600126daf901d35101a8b989594d4d061fe6f60f7d020a6c2d
MD5 9de5dea3ec780174413b7160f2b0ab02
BLAKE2b-256 950409a648eb910e3eee591ddfde28826d0272510ccbb1680fa643bbc814fbef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c116d1f9ea97a23581f6fb0836082162d18f7c70790c506a78cee0eeae7fd92b
MD5 333097ba748eff953ae65d6ecdf76927
BLAKE2b-256 29ca697a743fdc567e5b0af088422837bc016cd8e7aca6d4e91d54169a50ff34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4715bf71a4a5e89a26e63a21524263137385c1e09f967db745acda49a979798b
MD5 2b1d2b583c358941ff05109715f00059
BLAKE2b-256 ff9119e11fe5f5a4d0ff6338fb67a7b7d67468543f88dfa7c228522fe6df72e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ab76d196b9c8bb429ebff8c8c44a0070760879ce4afd6440cc8c75f3fcd7381d
MD5 435eff6f06b5808f8db246b5fed2c900
BLAKE2b-256 5d5dda44f7cc4f1233c53cebcecf62ddabc08e65b594349c0a5fa968e097812f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d6a11bc885aa0e8197a6458a5dba16f5d9959a040cb1967a424ff1d8e803b777
MD5 f1e231418ae7d86ccd54b5445529836b
BLAKE2b-256 d503ddb42d2dcbcd10da845fd3f7c28642555722b46fdf40b0ae77472c9504e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.2-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.32.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 768e55dd83b8734fb92fdb67eef1a54b9c8af8fbb4ea79f9cba912b3929f17f8
MD5 df69deec1d78eec8115c80c109fd0ea6
BLAKE2b-256 5db90ee3a2bfdffe10cf78fff7d9ea3961ce7953b983529c0914ff1cc22cf8e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 979351dbc395be28928e561d35fe836d66ae28037b4673a16ac409fcf9c1d381
MD5 13d65b0ba5767b9e28f32c96bc8fb001
BLAKE2b-256 18a4ad5b7ea292f1bfbdec4d5f7d34e3dccdb83081181123f08258483d885901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c68d92261fe192442c388f63f36a3a3f54784ab684f61208a737d2a182d4aeab
MD5 04536f132577e5581fced82225b73466
BLAKE2b-256 759b366a7e4265ec58fe013db30ab7e0bcbcef582e33caecc0303f8fd561bdfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ffb40027e6779138f6cb9b11a85ef76d00ef6b015de6d8ae8e6598659c4af996
MD5 e67a9ff3c3a5cbb3094dd2e01b9732b7
BLAKE2b-256 bb622758386fc4a5beb5b80a74c269034cdd209e01e8aa2305ce75283fe6256a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d5ab0bd3ede050ba6053d194e692b4778d485c9091608ea5fcfef7cdb67245e
MD5 065b9bb62c66a517a43f24d7827849c7
BLAKE2b-256 2a4e7c9492c862fa6c862423efe0a7eb8a9a56abeca5f9c9a45a9c0ac4212fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0fc7e9500c0c44a5ee42ab2784d10468c6c08cbc2f0ccfdafab9fa5a8fc43d6e
MD5 8ab9fae43b5a9564d707b574e7e34b1f
BLAKE2b-256 8a01cab69ebb3562d51ff8bc0a93369ffaafc88f8c40f2016a973288a05cbfd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ac90b6f1a268cd3a29daaee1290bdad6f4dfb9b6d4f4aef8f5192b8fa0f236ef
MD5 61236bc6f9cb6eff0417f00f378cf6ac
BLAKE2b-256 8a467f06d2444b0100b8b6c6ee1788b002e663f873a213e7d2c7c039186e538f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d87467931fa54a000f26b2bea302c95b2c938a1b807b7e42fca296a36250d77a
MD5 8e6cc6e5fb61e6fdb59c80a7a7cc2291
BLAKE2b-256 bcfc60d21382736b2f0646928a3555597ec4b49835598d78281e5fe2c5211617

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