Skip to main content

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).

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.36.2.tar.gz (37.1 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.36.2-cp314-cp314t-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

awscrt-0.36.2-cp314-cp314t-win32.whl (4.3 MB view details)

Uploaded CPython 3.14tWindows x86

awscrt-0.36.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

awscrt-0.36.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

awscrt-0.36.2-cp314-cp314t-macosx_10_15_universal2.whl (5.2 MB view details)

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

awscrt-0.36.2-cp313-cp313t-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13tWindows x86-64

awscrt-0.36.2-cp313-cp313t-win32.whl (4.2 MB view details)

Uploaded CPython 3.13tWindows x86

awscrt-0.36.2-cp313-cp313t-musllinux_1_1_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

awscrt-0.36.2-cp313-cp313t-macosx_10_15_universal2.whl (5.2 MB view details)

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

awscrt-0.36.2-cp313-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13+Windows x86-64

awscrt-0.36.2-cp313-abi3-win32.whl (4.2 MB view details)

Uploaded CPython 3.13+Windows x86

awscrt-0.36.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.36.2-cp313-abi3-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

awscrt-0.36.2-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

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

awscrt-0.36.2-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13+manylinux: glibc 2.17+ ARM64

awscrt-0.36.2-cp313-abi3-macosx_10_15_universal2.whl (5.2 MB view details)

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

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

Uploaded CPython 3.11+Windows x86-64

awscrt-0.36.2-cp311-abi3-win32.whl (4.2 MB view details)

Uploaded CPython 3.11+Windows x86

awscrt-0.36.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.36.2-cp311-abi3-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.36.2-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

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

awscrt-0.36.2-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

awscrt-0.36.2-cp311-abi3-macosx_10_15_universal2.whl (5.2 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

awscrt-0.36.2-cp310-cp310-win32.whl (4.2 MB view details)

Uploaded CPython 3.10Windows x86

awscrt-0.36.2-cp310-cp310-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

awscrt-0.36.2-cp310-cp310-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

awscrt-0.36.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

awscrt-0.36.2-cp310-cp310-macosx_10_15_universal2.whl (5.2 MB view details)

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

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

Uploaded CPython 3.9Windows x86-64

awscrt-0.36.2-cp39-cp39-win32.whl (4.2 MB view details)

Uploaded CPython 3.9Windows x86

awscrt-0.36.2-cp39-cp39-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

awscrt-0.36.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.36.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

awscrt-0.36.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

awscrt-0.36.2-cp39-cp39-macosx_10_15_universal2.whl (5.2 MB view details)

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

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

Uploaded CPython 3.8Windows x86-64

awscrt-0.36.2-cp38-cp38-win32.whl (4.2 MB view details)

Uploaded CPython 3.8Windows x86

awscrt-0.36.2-cp38-cp38-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

awscrt-0.36.2-cp38-cp38-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

awscrt-0.36.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.36.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

awscrt-0.36.2-cp38-cp38-macosx_10_15_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2.tar.gz
Algorithm Hash digest
SHA256 6a6ad171cc3bb2763fb006c9c5c1c3df85d9c1d30b2ca0908ce539e5ee694629
MD5 375c9ac8555c23977671ae8db1068907
BLAKE2b-256 fdd57bb52ee6dfcb36abfc787d5512c8d11fb231f1a7caac7c52479d98ed8dd6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 06a60e180b204b546192ac7873da47ecb8f721b40f6f2ae9887ce2507362faa1
MD5 a898ceb635122298ce560ed09e3f5258
BLAKE2b-256 e9c772f26af4551c7d44b17e25a5ed8a70a10f2a7b0743e9c25e4a3faf40bc2e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3fbbed7e8ea4d182fc3183806a7a6d2fcad630b9460ad97d93306d6040529b29
MD5 365b86255bd6ad4dfef5ebd378e7dcd7
BLAKE2b-256 0a66c1515197717b8f004c65e3820da109a45e85baeee7eff5f75e9727d183fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 345b55e759fea046b6f43986f9d57c2e86d3fdbf228f8accdc3da330c776b7d0
MD5 6adea47a9d174f4eb232347ee54f3467
BLAKE2b-256 c55a1e6254533be7092c7faa35f299a0ce7a32c6996eba758ec2b04b8523c481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 86ad673e2e5b83e229f3a58aca8b2bdd51b1c6be4f67e268fe83dd2ebdebed9b
MD5 c85c7d27d8ad37429b2c92ed79551a6e
BLAKE2b-256 e45d13abecc9b0921d22a5c401592190dc1000b863a91c73a3e41eee32bfe130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2bac74dc2a1df6dbc6f1ce531388d8fbbe98c6e8078a41ed83efdcbc792f26e3
MD5 100dd45136023bfa28495e97535ea155
BLAKE2b-256 6d3f636d7ef0ad62aaff4f8ad0b429cececab2d332ab985c31f94a3bc1506e7d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 6625effb8efadc9d347ffde41bcb11fac861cdd8112ea9f0d65906abd33a4bb0
MD5 3e9e9a5694b6f3246ce4d5c584afc3fb
BLAKE2b-256 123fd714f8d913fc311b4613077adecdff13459a44c3019868bae2b3b575dae0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e179a0c9a3898c360428b4d8467a1568cbceafe1a1b62e0566a54d8293d02d98
MD5 fe72d57d9d17e84a6a00431bcd002c72
BLAKE2b-256 e8d284cd9d7a8d3e1a3658b67f7f50171ca9499e166a3340ecfd6d4ee94e376c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 46fdf3802d612dfb31e78719d289039bcfaf230525c17cb5108f201742a55c89
MD5 f41d6c8ae22a6bcde614f843960970fc
BLAKE2b-256 b3366205cc6b270703d35ba83fdbd876d45f6128b8d74fc6de1bf378f496b4a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 535449a6023eb1567c04fe691ac0541e7afabc7351eccc6fc42d4a91ac5827f4
MD5 d68f62b036da4d7a384128e754ccb5ba
BLAKE2b-256 6d857fe730b9c730966e35fc2f31493c7bf59b7c8f3f928edd6dccc3742d6a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4b68f4211c6dd84e8cb9a36fa58fcd3d9bbd01be7fce2eefb4fd70ba01ec2784
MD5 5f1e9b288283800a11699649b8d19fe6
BLAKE2b-256 840dfc6f147dc505802fa5d9e1650652da81a9e826dc22b7789a42dd8f457264

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8d52a268820a901a24c92a448b49226658e7ccf3eb152f27e1fdec78b0a95685
MD5 66701737f3dd985327e3b982f8d774d2
BLAKE2b-256 6a52e0cb4efbd6bd0dd96148efb9ee9de257a85035559da65ffdcd17905da15e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 044b34964b1eeee07e1a64ebc5ee0e2e378cab5ba576f39b9beffc6610db0232
MD5 fb270594ba8d0d2357b9658c165ff227
BLAKE2b-256 9b38aef7478287a890d8bc33869813eb12e3f5d5316854a200ecfa6b4c2f8acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8e0973d8797e0f051749bb76d7209e64f286a2159ec1740deaca142f7cb521c
MD5 8b905a9c020e38f0bcf09b724ec8a592
BLAKE2b-256 ecb861337885232c7c70a4c350992aeccd134052507ec8c52df917addf265c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2e0e78e5721f879841d1f16631a3c836fa9fd5fcb77b011d58eac65eabe411b9
MD5 e6562f6aab0267fab2fcb9272512eb6b
BLAKE2b-256 2b19e3462b6640a0844f91f5f6a8dc931e40a0570cd7fa101e58ec45d41d30e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0ae1e06d7b284f6b97a29d4e005a9062c45864eca9f53f569d25a5ed16cdb17c
MD5 bb09c6b2ef30b4add644ca4d91e96389
BLAKE2b-256 57c324bbeb311405f4832eae4ffda8db11ce12f1d5276782090ce1148170af15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6f7a3a86b2fe8c042c21d884bf02d511916cd9b0b5a2d11b8a70c979fb579e1c
MD5 ebeca72236016bb692c08b08b7e2c0ea
BLAKE2b-256 c3039fbd639948811588a8ac4593ad24f586aa214ad44d9d778dcc91d7a173d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a24d8d1459728b2dbe42af2b2164e77934dc5fe409200cf7829cc9c2206fcb17
MD5 642d283c66198b0661eebf6b83370ee4
BLAKE2b-256 a38842908104ac15473178b2f18475986bf5276361cd8df653b6c51704d16c6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.2-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/7.0.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.36.2-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0db607bf0ce27c5af1ed295582d1415d25881f40a4cdd1686ddc78ed0c192107
MD5 576707b4723f74aabe27a9c6634efb4f
BLAKE2b-256 1edd2c291180732934786f00b31c1cdda01b7c134988312155124e1181733cb7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 2a1ac2ac80773e73b943fc3545e6afa831c8ffbe13e1558c4bad0805cc0a1f8c
MD5 9711186e7ff5ca65bbc124e6270e833a
BLAKE2b-256 ed0f32c7fcb7425a3d99507c5cfe93983609b23e89ff981e32627006d0971de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80b118765a0b8ad60353712615e534ef4b81a9d19fd0b7e3e666f745175908c2
MD5 073ebb472a4255d601bc52430ebbd2e1
BLAKE2b-256 f074071e9c74afc1c0611051e20c23dea04b2c11a4f458c40d3e7a59b9d62ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 46d6d41366a313b89ebf27af0c5f48f34170ab90d8860414768b8988358192d1
MD5 fffcfce3e1fc17025f0f9d7ff4c567fb
BLAKE2b-256 474fabb0378ab8b392ffac564fde738597b99d09e4fa169e0f5ef5327c18050e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 633c1d1e548fd77ef04b8140d46ff2f15b678d8c5ad6e145777d4144cda9548b
MD5 0062c64e689f49fef45a6d054a506c5e
BLAKE2b-256 ae542de842b43b59ba163b1b34196cb4d470e626df48218dd997e9e2e32bc5c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b53ab2aea0a415c2cea8720ea1cc9629a1ed0910a02dfac97607cce44cfecdc4
MD5 6e2921a7b1dfa75119662c00a7a52de1
BLAKE2b-256 dbe8bf2e56012932197701b073645854b98d9803609161e7c7dd59566c6d36b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9a0d596411c19979e70b778bf450ba036356374e7ab7f358ef8256b9fdd5a59e
MD5 0073a0654af540c12d40183acdd42d7a
BLAKE2b-256 6b058be255f4979bdcb63813ba2c0572dda4de333d6ec38df7fd902aa116c87f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.2-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/7.0.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.36.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b8323f3cce600f554aabfe57adaba048738e7791ccebdea10df3777dc126c7d
MD5 c24beb4219579cdba3dd462612b91a4f
BLAKE2b-256 d4703643e1da4fcc380c35b2d77149bc658525e713203029d977c42de72dbcf9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cdb68d98acd576d0b9210a46e9f714b8ec0921f7a2f47acd558685b5d2d509ae
MD5 1b04cf7145c4b3ae6829d89dc8363ab1
BLAKE2b-256 1256cb54e0840fd06d92c8e12962354f9cb89c514e6d6466fbb05afa32686f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c846bd43f1cacfd7425388047adb51acbef15bbcfa8facae92eedfba6cfa4a67
MD5 06299fe12a13d1c757b6a0da789b0b34
BLAKE2b-256 fe89211864aed3fe8957afed3db8f2f8ffdb84a30bf595d1bf9d8d8c7cf111f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ad3d87d3adf26c4ba12c565fef3cad0a94bd15ee7f8cbd44075ef353fb45a5a
MD5 0c3d9cf5debd88d73d466170c5669104
BLAKE2b-256 8c39205031f8ffb7be006eba94edcdb0e1fe42b128d7905581eb2127a277b9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 51373438247646856e40c6eb380e0746f8a7f76d0aa657356e88cc64edbc3025
MD5 93d032ef44f0a325912b1f9a558b2c2d
BLAKE2b-256 2f5b6379913afa7f58f1105714ea5e5446de6357519eb3568382e63eb4df3eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a2c8b66fdf1f0c121c719acf5e02790effec1812d22f04e74a18af9727f658f6
MD5 4cc2fd0b44348aefb98a2ee6ddca2dce
BLAKE2b-256 e69338cc27b5aadb683629fb2dc442fb3016a8d036c1d5070205ebbc3d4370f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 469dd6ad7eca69f9eb64683489ea4994e12ac4bfda7af6300244b22dd62f1426
MD5 7c628cb8555c2b94e5cb2f97b553748f
BLAKE2b-256 767a0aef47d1e6af2526c0d98ab44a165c8735ba7656307f74a62d0ab9a628d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.2-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/7.0.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ab32a663f0f614b8b3a64d86b5b17e0dba866fd0b6b8fbcc7c7c0c3fd2bb7041
MD5 e8b37a9428653c76796c0b0b67ff32db
BLAKE2b-256 a221b1ace7190c051b6c712343b4d9856794099e7cf772e6c4f22aa4d103b827

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1378806119c09f456344bf211c876a3f6b6fc6f2a2e8baeb7b3deade889348db
MD5 756327daa0cd26511112a645d6d89d21
BLAKE2b-256 31934568b6e2d51354b8384839753a73b1a2ba630fe0bbc870a7c2d236cfd359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 46a11842905a8b02745b2c41c702e1d140289d1ec4923247b18bf13463ed4321
MD5 758594b7b943828fcc0977eab6f0608b
BLAKE2b-256 42f0719845392a38ea7e23a5e53a849a02f1454d17e09242d525d3cb7115a1e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5ff2991584c959571e062d6da2b661a6a3044855d15ec23f58d925b20ed95ae1
MD5 df4fd6fce73faa9f41ebe863e36f1f10
BLAKE2b-256 9838e536fb646989f6df42cc224c77cc880a14c54d2aeb75f86ed370c5f8e27b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4e0f58daf6aabd57301cf03c0fd60b7c151e460e6c4f7e47887a2fad4a3209be
MD5 b506fd0aefb24891e00a27db6bb2e6d9
BLAKE2b-256 50d7d4ec57fb9bd179eb3bad6ba4f7de687e3deafd2aabcc58100a6afe169746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4246991723a41f3fa1dd831146467243b875fa03fc7ddaff10c8a9a7c7e73f05
MD5 4fd290f2cae23f44b0862e6a562054d9
BLAKE2b-256 b1b79daf0c307e23e0fae2c214646333c9b9fdd1b11ef9994f63d053583f9e3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8cbc46768a25bbf5c42315a9f8d7dc76d30b585811a26aacf8b56e1e661f62b6
MD5 68cf71d96f6ffa1780cb8b72c4650641
BLAKE2b-256 5f4cd1cfd1054fe8c3dda055d2fb9f8826d346199cdbb5d1c5f0d69906f007ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2e8adfa191bf27b83ed8c01f76ce0e7b0d5c6db9e04365739001f58737987f9d
MD5 a5c75d34ecfc2f53a1aeab334a27dce6
BLAKE2b-256 927a9ab8f3cb7721714048a4e3f676e02c89a7a773f31e960d887ed4f1e5fbfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 68b39d767b93d86cafa41c3a29cc967d6fd972aa5bfeb56757e80e0a55f92c98
MD5 4db9bd851e90e4194a6f2e6f6ce8d0ac
BLAKE2b-256 a4e4cad3e5d945551e9b586e700f331bcd3e530aaab33e27db438446f81b7b58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.2-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/7.0.0 CPython/3.11.15

File hashes

Hashes for awscrt-0.36.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 45d9b1f049113f03e709f2d6a468494edfe6ffca3fb4ac5a9c200bd9dcd6bb82
MD5 cd3f749c6864bdf5752e776502b79c90
BLAKE2b-256 bf5b85508c698fed5e721d881031480030e69299c8267903771bc2e38f1b7cdc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e83b93798f694b544031d5ecc42de9451536b60c74b9d9f42085d1f5633976bb
MD5 355fdbff2e98d22cf1cbee446e8eea12
BLAKE2b-256 913aa850842bed02d1bc8ddcc037f07b03d024e1e8eadf65823e3e8d897fb4a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b833c713a3f11988203304a8d7295ed46ce18167d919ba40c153bc677d6b4aa5
MD5 e6b8f947ecc4b5c78b5b22eb558ca8a9
BLAKE2b-256 f440a61fcaabf16eae9c971ebf3ade557a18ec422861f4db516f8f8905cde5b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2013e2f46fd4dee700497a31f118172bf823df930574d6c1e79119523b64fe39
MD5 42e0c182cd291d2ab8594cb61d4225ce
BLAKE2b-256 87900380fac5e415f9d2ada614d716a70b81e3497b3c109a2532f5983e377836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 18e1f00931b317196cd1dc6036854119c8482f869182a94a72051f58d061c344
MD5 7b049fd5071456752e5884605a2b398b
BLAKE2b-256 ed2e960849fc5e7699b69b19ce5c81f3a6d0554109788feb3992ea3a8487601e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ec682db995e9a59158796eef39dbd433329168af229bf96b49a28e3cba9e982
MD5 e1bb298b674fcbd57efc2f38db536875
BLAKE2b-256 ce6eccfd11a501972d802c2434fea0ab811c7e235250b8a76f0a17f5ac9547f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5fedd344d2dd5f0fb7214fc7d549888592037b3e8958c5a57e4b31ae95cc8a54
MD5 569d1b703e4f9f82209755726c057341
BLAKE2b-256 71ac7895056c9bb71f898a4d33b7913e67d0f258a305dea2e340b26b44a4baf1

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

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