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 .

macOS TLS Configuration

By default on macOS, aws-crt-python uses Apple Secure Transport for TLS. This provides FIPS-compliant cryptography and integration with the macOS Keychain (e.g. PKCS#12 credentials), but is limited to TLS 1.2.

To enable TLS 1.3 on macOS, set the environment variable:

export AWS_CRT_USE_NON_FIPS_TLS_13=1

This switches the TLS backend from Apple Secure Transport to s2n-tls with aws-lc as the underlying libcrypto. The tradeoffs are:

Secure Transport (default) s2n-tls (AWS_CRT_USE_NON_FIPS_TLS_13=1)
TLS versions Up to TLS 1.2 Up to TLS 1.3
FIPS compliance Yes No
macOS Keychain integration Yes (PKCS#12, system certs) No

This variable is checked at runtime and only affects macOS. It has no effect on Linux (which always uses s2n-tls) or Windows (which always uses Schannel). Both TLS backends are compiled into the binary when building on macOS; the environment variable selects which one is used.

Keychain 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 Windows, the OS's default TLS library (Schannel) is used. On Apple (macOS), both Secure Transport and s2n-tls are compiled in; the backend is selected at runtime (see macOS TLS Configuration below). On other 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.34.1.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.34.1-cp314-cp314t-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

awscrt-0.34.1-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.34.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

awscrt-0.34.1-cp314-cp314t-macosx_10_15_universal2.whl (5.1 MB view details)

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

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

awscrt-0.34.1-cp313-cp313t-macosx_10_15_universal2.whl (5.1 MB view details)

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

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

Uploaded CPython 3.13+Windows x86-64

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

Uploaded CPython 3.13+Windows x86

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

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

awscrt-0.34.1-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.34.1-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.34.1-cp313-abi3-macosx_10_15_universal2.whl (5.1 MB view details)

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

awscrt-0.34.1-cp311-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11+Windows x86-64

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

Uploaded CPython 3.11+Windows x86

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

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.34.1-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.34.1-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.34.1-cp311-abi3-macosx_10_15_universal2.whl (5.1 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

awscrt-0.34.1-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.34.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

awscrt-0.34.1-cp310-cp310-macosx_10_15_universal2.whl (5.1 MB view details)

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

awscrt-0.34.1-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.34.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

awscrt-0.34.1-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.34.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

awscrt-0.34.1-cp39-cp39-macosx_10_15_universal2.whl (5.1 MB view details)

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

awscrt-0.34.1-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.34.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

awscrt-0.34.1-cp38-cp38-macosx_10_15_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: awscrt-0.34.1.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.34.1.tar.gz
Algorithm Hash digest
SHA256 a3ae8e35c3a3eefdb2a15859887a05b926d0456d21ccba1b49861cfe46bcc8c2
MD5 0fe6f0729d235bde92792b04754cc8d6
BLAKE2b-256 ce33ed6d3c91d7b136a91eeea3bea1023e818f5f99d4fcbd8956c645a2dc6006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1421ee18988c946bb058819b69707c85aca0de395520fcbf1ef9ace0b9e96c62
MD5 b097c8dcee40f86c4fac85be886dbba3
BLAKE2b-256 3cf54cce09065b37c775ab22dc9f179e03704f3bb9bb5a44cae6bc70b849596d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dc68aefe66cd419c3d2a0fa0ecaeb9b72d882ad08f752767dc85740052bbf212
MD5 6d8c746dd62d9f485d48a800b286532f
BLAKE2b-256 f8b0bd30e6cca8a9b696866dffb587ac1d5bb09dcba2b62941063b02a7b747ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ce386fdaf86f07122305a14a84f5c592b7010d7032c6b5a7dcbf4a72b2704998
MD5 80806528ae2fe01b5ca54af935ebfaeb
BLAKE2b-256 e62f954ac7be390d04160c8570810faeb9512447422752cac2bb277cbb62ab49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 185f3e899a24961a1bd6e203a0fdeab6a06a972ddf4a4e3a32b20e31705edd95
MD5 bbdbdc5371e7a4ccadb0c4d47dc2419d
BLAKE2b-256 22143ddc4d76ca23c892ca82926d73575913377bf59a31a8b20d4c0c329a6a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e519f4ba6622a9f5d745e2f49268690f3fac7bad7655911458c80e1cc30bd108
MD5 5b278ea4a7ae809e5d6a2b31be091872
BLAKE2b-256 62d740d6eba06ae5e4bb2e68125009a701a6f74159b96c921cc0998050c76cc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f8b54977cf53539e68ff2c9ad2f51bb4bee7f2e72060037482262913e75499b0
MD5 7e6093fce9094243a07802a6db3d047a
BLAKE2b-256 8f8ac5b32222debb90cb5aa2858dd7766bb060fe3b6ce4356349b23f71570020

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9229d146f94c576778e5f4b41c0254800c8c6ad005f25b20fe07da9df976ce96
MD5 b78048f64950ba341335518692f9ba0d
BLAKE2b-256 2ee0e6cbbbcd71d9498a2cf3a9cce5df14320110d73e4aa6e3180c9029883eb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d96bf355138073d5ecd8df68521c73181968fea82ee38e8aed523eb94ff73131
MD5 2c9b03de4725ad01c2e3b8c51e961b1d
BLAKE2b-256 6fac71d009408421a48185f6672f830c49909f3dd076de1984f449dd3085a121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3f58fb121531fd9d85ff3f1975cabe8b7de2f31d460d6de4f5a624177b4005d7
MD5 a0ca4e1b809a7993740d5b560901f417
BLAKE2b-256 a1c0dc5bba8ae0c16965680ca1bf9fffb4914a43076ae8f9a5012db5b822610d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b320bbbd70599d55c719f6a1201f0db51fbbdfc08d885ee17d2e553c06d2770d
MD5 ac43ee352257a53829369968d9ccd7f7
BLAKE2b-256 de1ece97fee2fe477e382f68f70f42846ca8d5b1d908f66e900b45334b9549b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 c680afe517ca09846d6b2abeeb44d37b935f575013afa34d8295fee95cce0b78
MD5 9b6b75f18269cd56f89bb48715cdc45e
BLAKE2b-256 4e0f5ac6d4b372cddc9dee02892e2a0ed676fe099d1740b2e5de253f6d9d4825

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 534e0d9b415c50395b0602bb5bbc3b506fc36184859d4b6de18642384e46cb17
MD5 7e456cac46543438ef78f9d7571a5d21
BLAKE2b-256 57cf9f1610d5a4d8ed6c5062fea66d9c5bfda6fa354690b6c2121966b1be24b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d88cc48538efabbf2b6643c13a8b63a758dcf40eeb0405f6ba4066ae4d361866
MD5 edecfbc227eaba8d3a261e74827014d6
BLAKE2b-256 f11692c10101b3f4c10e8d8d6b3ce8b6bd1254cff4c1925244c4e872026c17a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 775405da040f8f5223870c389e6b37ad2909849d76a1f028fc713ad1c07889f8
MD5 dcd43094c56b89cd6a8753ba5a89854d
BLAKE2b-256 70f0b0d96a536c582724aa5ebcfbe03a0c0283adb9379a31465076b8988416cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5a39a0c2fed3b7354053b70a4a62428fa40834c9e9ac8570c8b39d3868645bc7
MD5 b540009e6ac02d3cc9f16e5e5655f70c
BLAKE2b-256 e48f93df8d004dee2afb938111de203e4534101326c1affc1452eb8d6fb73da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6eccf12282f773f2d29ef0bb16c3b973976c578ea617d84a8c1d523509d2b5a4
MD5 3d23670fb04eaab854041a3dd248cc8a
BLAKE2b-256 d1c66ae127a3ca3ac9e7e4bd2c351be78856d0fe4b9a094cf9163e5f9ba30d76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3750622e9efa1af389a619573a93cf1f7e816454edbdd9c922ba78e6c292668c
MD5 0a64220c3208380293141ea0871a7428
BLAKE2b-256 80d4dd647d569189bc97f5110339f7ec8ee669d135408c3e2207ce74f951f284

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.3 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.34.1-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 40326b5fadafe679c0729f622c4a56cbcb5e91f1b0d2b84fc95f016427b11214
MD5 8d17ea182cba4d6752f95ded2773e159
BLAKE2b-256 74498ae6a3bb2aa32e17c3b8e7ad14f9666edfa924052c22e0098ca525b110c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 8356df183947a02a015b8b77ee69a1b24bddf2177db93fb063e6215265ecc33a
MD5 4ebfc36105900301dde7c574bc7e0e92
BLAKE2b-256 b9e76c49160a8cc84c438cac59c2bd52f80eaf6db05da036495133349b68a351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48b24b3b3de9c3392238181f4529b8d3511fee695f1852807849042681bb4922
MD5 7fb44d2061249843a8e0ce49be6fcb15
BLAKE2b-256 6a43edc9a8704f84aaffc3471b69d8da565fa834e8a7f565ced659a78373eaf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ab254a7761bb80594eba4ecdae65ba55608dad7ae08f5c0e6876cdf339e8ffe
MD5 f009227640c37da34bb1a9ec369144f4
BLAKE2b-256 5e93e63b09fbdef626e19edfe1bf28ac037153270bceee24327756c83c53c940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6c696acaa421e74d7dd44962099099ae967c64c8491f797fe1ec7c32fea1c113
MD5 f4b44e998bc4f75dbb8a8f9e80ada261
BLAKE2b-256 4baa494385f153a90e734ac04597e1c69ca6f66d8579bb0383f6fc8c5aa126d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cc7b55bcc719c2ecf6876b8c13a4808a8dda3b19b8936329c711072adc35053c
MD5 1c0163e6b5b9c4e88c7d66b49d8b9294
BLAKE2b-256 680b79c55c606d83308cfa6d78528497ab72a170494a196261d23bd92ac733e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c7c9c2ef4ec0db16d871fa099158b0617b1b8aa53335b73a88830a6630945c5a
MD5 1730e3ce199f011a5ad1bd0144ac4668
BLAKE2b-256 90345737d2c0d1288caa76cb8ae867d4c09a86e31fc03e4f5a9e595308763415

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e270bde05643378cd8c7cb0afc2aed318355ff8eab41776d97d97fb732e36051
MD5 f0a88c21af046afac0a432d8a763980a
BLAKE2b-256 9fecca3aac1b34f33cbb1ec0167db87f6b6fdacb90b2916176e97c97ffca1117

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a6de0c073612efccad1b80ad067e04cb4658cb9da040a4560a126af3229f454e
MD5 cac94b8078cd43efbd7bd4edaf1d90bc
BLAKE2b-256 539bb45ebac271b04e50671c7dbab8cc7e0c7d2cb764ef8a7f21dc852e56809c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cf4a681c30ecaa26aa72918e33e7d1883f97571538a32bf768a4d6884b806634
MD5 5ca088a837e95603c95e089fe97f5047
BLAKE2b-256 97de3fa545e4c313444408e618133dec12db6126b4d882e22d0520b179edb769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e85c302fc0cf976ca17f62cdfacfac7d1deb4c6528d202036213f64efb46f2d4
MD5 6f6674a30a9699cee90a538e52748987
BLAKE2b-256 95d7cd7176fc65dc08dc73ad99e3edf157af264ad2affed31d7ad7a5c55610f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8a1315da9313c97250b79e3cc2f5ebdef0890fe8d06f171ffffee0c103239cb5
MD5 9249b25889acb889939f654fae574875
BLAKE2b-256 b5826d557b99e923155e242187ad06e53f87680d9fd97598c9491764e19f675e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9b972a1178b97a104b191cbee3014bd29b5138c8703f487323eac86c6995a4ef
MD5 8418814d687937ea82c1895a8ab334f9
BLAKE2b-256 b394b7d5ab86484000cd150d9b7d09f7efac45341333b5292d7de83a40f469b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8eee56a8f2bd127606e59874b4c082cc50a54470ef903106657669a4f43ca24e
MD5 f60d03c5d9f1dcb165c3e1677f34f9a1
BLAKE2b-256 cc2344849f35bf8917422a245dd88c4c5c19de4e4326195db3b798442bafa254

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 866406e71b16507f67fb1a12cd49fca4bd83c718d301d7b9153af0fd203143aa
MD5 812281f64047cb02753ca4b844ff20f9
BLAKE2b-256 8cd9b194a6cb5e3d10d30e04603679ef65a1495cc4060473cdd40f77338cf766

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0aeb6e759f9e1f081ee3d7dbdbac67ea926b63523c0a475e6788b34ccc03a837
MD5 ba5bb596d4eb1fcbaafda29997f34274
BLAKE2b-256 72026ccbe44129e40033a9162eb0ab9940d32766f49379dca8a62ea56dd98a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ebb98a1dac91e5ca120a16a088559c91f170c9835bdb110c2fb27ba2bf786fd
MD5 708e9c26539aabbcb257cbd4b6b477a1
BLAKE2b-256 b6a3f89835f2b6c92b7e0ae9118cc2a6f0046913d21509ff05248a5ad89f81eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6025279dea4506d1f3c7b4cc12d793828010a80478be5eb8ce41e499a85c1064
MD5 42e9149b18291b82f65d7a7381ec25ce
BLAKE2b-256 3be035e90e28def1d551ee279f85370b29913a7095e9a57aad58d8887040369e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 23125f6738ac4e48b558b8127e3edaaa91c67b04245c42a97919b20c4f7174b5
MD5 ee2080054347bfcd49def7c92aa81f84
BLAKE2b-256 6f635f299dacc195cd9ccd5db3edd25ebf417952231aa6957b37bf36103a73ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 99d0b7a9be30d9aed7b3e1c37a102402b8c4b9efd12386f42d5b7d019ad4c374
MD5 a38b7ba7207f2e50a0bcb4f59e14cf50
BLAKE2b-256 bf059e69ea8d8c236c9dbb5db0d01751f431c6222b2175f3b0f9fea75c192902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a4cbe0be28fe2995c8ddbb6e267c9c9af31d959abe27e544cf497f8d58eb1f4e
MD5 af8196da3c07bfa6b3149b2e3aa862a3
BLAKE2b-256 fd3efe4d914658459db5d75c0dcb3b7deb86bb58bdf181aaf4c5e0f96b3667b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6962142065d03d1189b6eab6193c045bee1fecc4931f72bbe62c49c9eae529a5
MD5 d0ff6588bc55031b19cf6ee8ed9e0a28
BLAKE2b-256 28398023a8c623f361df6ba9be293544485eef8b585a949a8f850b285b280052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6afc4002e813bcfd4384fd70e646d7cbd5e47d8a8e31ebfca65c5e1ab07349c0
MD5 591e8539154a7ccfc3799d1a8ee95784
BLAKE2b-256 15480c494b2df35ca59364bac5a0a297d5b38c3b20c800f52652de823d58fec3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 acd927347564acd0b4ef502ea5524bb825e1ee1d1570f453281b06557fd4e786
MD5 02da6b95a26f77532ae073977010e2b2
BLAKE2b-256 c3479f084e699e56b9d96736f3ca70ba9271cdf0e0280aab91f08877b0bf8412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.34.1-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.34.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 902e305ff7307dd006540433a19c7e266104108f73bb0abcb8dba8ffc7298a65
MD5 dd1207e8199faf1ed2ab9e59d0a31e99
BLAKE2b-256 bf530ee8f9952800f5e9f6f1cfdefca4823e16bdc18138d4143a5a686718a661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f905340e14028b8e484ccf3157b4ded4e25b876e7887b53bfbdce5066ef20ece
MD5 66b9e7feb4f9dbbc81bec03fe2ba108c
BLAKE2b-256 6698b4ebeb0d62952a2c438b67113cf6924a2f388325a56d0f06ad34e792d533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 132b83acde430a66e7ce4e59099cab4f92027d871a4226c50d556459b93695a4
MD5 e4785a16fbee4c543cdeb9dd76b7b9fb
BLAKE2b-256 b408c7d69aa2b4f60d98eb0e1a581cd5fa707e6f7c55a2155b89ff064756e6dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 faba2cc7e719ac17afd58280957bd916d726299b27c670cdb089795a16f79064
MD5 033ba59f8220fba93c4e55b0c3018975
BLAKE2b-256 3e32d395779034bb4f91651c3420404a65962026942735c32d407f0293f858e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ab79dac7539ceb9d4a44589f606684836db73515a931cd545371d47f1122cc7
MD5 32fb2f9df2557ee285aa9929dcd7143e
BLAKE2b-256 31ef282188a7883ee9f684eb63b4f288b3e515a87fb6bff2b5d19c05704102d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.34.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 20ca3eccf14529ef9529cffa425008b423bb8fbf112498b42260a799f84e606a
MD5 8cb4522e2260b0e7f620dcb9f847bcfe
BLAKE2b-256 41f8eb49858bd2bf5e681fe0970142eab979c43b75dbf98da26d6206596b02ae

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