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.36.0.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.0-cp314-cp314t-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

awscrt-0.36.0-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.0-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.0-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.0-cp313-cp313t-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

awscrt-0.36.0-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.0-cp313-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13+Windows x86-64

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

Uploaded CPython 3.13+Windows x86

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

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

awscrt-0.36.0-cp313-abi3-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

awscrt-0.36.0-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.0-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.0-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.36.0-cp311-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11+Windows x86-64

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

Uploaded CPython 3.11+Windows x86

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

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

awscrt-0.36.0-cp311-abi3-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.36.0-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.0-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.0-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.36.0-cp310-cp310-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

awscrt-0.36.0-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.0-cp38-cp38-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

awscrt-0.36.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for awscrt-0.36.0.tar.gz
Algorithm Hash digest
SHA256 ad2198461f3b2a2851f37891d75dcb9173bfe2474d8550ad6260bf9970b4064a
MD5 bf9c610f2b0a0caea4d9b62c5a6a7b3f
BLAKE2b-256 6a7dfd87588cffbef8fbdb8436f14fa673ee3735cf8600a1a2a36ef78718cfd6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 edc9814c5ddf4b49e9b4dc5f424b7172afc07a2f7b655338a25d6c87620d2b89
MD5 cb12e48b3f8920eb100702abb2c508f6
BLAKE2b-256 85a39f36da2b735b896c4eb5455d858c4bca80eeadcf6bbfdfafd189de46830f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 4.3 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.36.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2c8ebe57a6d8a329b57b480357767da1ae3af49d243727e826c3317da09397a5
MD5 3c972f771b758e455108d0cda7222f56
BLAKE2b-256 bf48ed0f2b0cb2cb5b7fbb89f14574c7b4bb5f7584072054523c3d4424be693e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bfc4039bc8ee9924d9dfc1558d073305d5d1f0046e87d7773826901d0f0f0792
MD5 755a8c5724cff4ea534ee1a4963bb7f1
BLAKE2b-256 4d9cb4ecc77494e5930f0bca50ba9b8c9f973ac477e0233c83126cfb81c85327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b76cb47f2ed5c0bf989541ee80ab8f35d9a392d30b5de1e24b17d655e2f63da5
MD5 448963e12b145c80c0763a8ea9185f30
BLAKE2b-256 dfdab21fff2240b8185afcced69912db6231ff62545e428bc70248c196f73f48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4c1a10d5f33a6c3fb1e39474242c6761b9f607c048e688b344acf95354053d65
MD5 2e16e5691a7ebfa931e8f810f0ab8b22
BLAKE2b-256 8f4398fa9bd741ce4e46e9701ee2247635aa5ccfb9fbcf0e5922ab14ff91306d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 3c822bb7c98c306484c70564d798400110928a0ea5c9c1b2091b74a5026b4561
MD5 fb92b2035804c27837f5d673db0f95d8
BLAKE2b-256 71c6926f66a4f17d874d60fc60578fe6be58f5a91e64cd8836a94f87d1803bf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 4.2 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.36.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 62d8938540dfa84e754621bcbf9dfdab19a39a4ae2d3a6f350f3d615b1ff4767
MD5 7297124e0b8df5b758a9b25418a7b108
BLAKE2b-256 ada949839240e66c8373fe266c9d16218cbce06f31c6e706939e53976c197631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6231b3940c261ac3c6e2128d9ea3fcaabdeec6f5737c19e4310f98b1c5ea2b8d
MD5 b37d71c4bfa64348b9d15fb821254a70
BLAKE2b-256 e45feba58de79c2e63758805de1d355cbe68a17053cd460f1040c98f7baa9211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 93ece6a57527cb6124cda94345adc797bee99ae34bb013c7edcd4bbe09493778
MD5 277c8191974a000f6d2105fadf4c7770
BLAKE2b-256 3cb264590179bc367832edb16a56ff88d86a73f8bfe070311325851c404331c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6f0044e3fdc3acb7287dc8285fb0710370b94ffd5d69ee1e01a0f161b5ea0376
MD5 3c72e1f28d344ca4fe20db9ed9e6bc84
BLAKE2b-256 f915d4754f15a54206ea2fe4bb8b2343dc86cf1ae163a413aeb23280feffe129

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.0-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e1329d9e6b4e1051bf094130fc40d9790cd6986b529bbe8a8bf65ae4fb559d30
MD5 15eb94adee8b6684a7ea8a7bd4f566ca
BLAKE2b-256 54b4710ec9200b10bb3a39eb3308723fb7ee86622e57a2a8b18532e37c191b7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.0-cp313-abi3-win32.whl
  • Upload date:
  • Size: 4.2 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.36.0-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 ef8e655ffaf245a2d4a5c6ca9a1da12fe72cf43c70457dd07f6e0b162ffed164
MD5 d19302d6dde0d14bfd3c4fa36f33c2e4
BLAKE2b-256 7a2fdbefbf49c797a4fc0698f9f5ef51ec6725cc46755e8ce8ecadad07efe64a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74e8419f3ab6770082a5a7af267508c72af10b7352bae17b284800ba8e6ec13b
MD5 035c86a6047e90aaa8e3490d84d3115e
BLAKE2b-256 06c77963d182695a1a13597d8c1df36364595475eaba26af176a5d892e8199a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63b726ee7165c5f13ffdd8c57402538a59d01dbc1eeec4eaef75790dbb4ce4d9
MD5 ae0c4797f360026459a0c3f2dd6164bf
BLAKE2b-256 3ced57655a46f64a7a5d384248a16ad624d2aac076b8a0e759f3e820a30543d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6dba4e0ec0aeec18ecf534081c02357794b89d8a7e12d83f6c970f9d90b1ff0a
MD5 a2bf81cc9a9724bd37377a5aaf378d7b
BLAKE2b-256 4d91a607e1c70a56bc33008b4a2829334e1b319cf9056419784aaed24dbad9c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 01a55a4de4d3d915714590bd50cd3cc430e8f5bce78a4c6b6308c6a7f513ca12
MD5 28201f2ffca936db2f483d15e47085e8
BLAKE2b-256 93fb982bb2798550c469e1fe8ff3b368dbc458f82187a82c38ce6b61456a7a94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 0ef852c7bd977402f2c82959d9b6c68e39c74bca885d4578cec86e6a3b60c864
MD5 53ee75707fa31a6ec2d5f626ab12379d
BLAKE2b-256 6968355a9c06805f14ac4e1ac1bdf81c8e50d1308dd8c1ea73ae8b3ff35a09ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.0-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.36.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 d4b391736d15f44d452bef0372997c418af44c83d0a11953d0e18a5fd937ba0f
MD5 44382c39be2db58ed8c1432fb6d8411f
BLAKE2b-256 d60a3fa90ed5283aba9c41f3ea657a4bc71addf6eda0fe85d05aff338f159a53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.0-cp311-abi3-win32.whl
  • Upload date:
  • Size: 4.2 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.36.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 b195103c3b87f02a2c2f278281a64e35dfe57d03d92017097adeb31332731459
MD5 2c3094f40d6aee41102ffd7bde676cc7
BLAKE2b-256 2a85a06708ee6caf8d0281a9a7c5f73ec36d5471dda37ccd0b630933c869fa4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a950c3b4082a687f7e76accc01f937113c6febe13a790856381314323e6a8d03
MD5 25310b4c4a895904aeaa9b6fa838cf0d
BLAKE2b-256 cb58870c1a5adc6d0675e8a4cbb39ea7070ec2860a82b4fa71416bc18cc2f805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1608b45260678aeb4aabdf5f0c69799cb801304b50d065891f96a474e053f908
MD5 eda9c688255c5c8c1d6ceea5a4000a68
BLAKE2b-256 428d0c3d1ea026a20be02a0586dd31c41018a98ec7e52701b1ff68c408e79d09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bf8bafef584f9d5fead3a88f3b86e0aea957c85ecab5243d0c47858ea3d9b39a
MD5 2781919f4893497c7b2fdb8b08b90efa
BLAKE2b-256 0a94a5fc3f83e4178f20f4e75fbecfaefc1c8d5a1d848eeba100c46226bf966e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 900eb2cf518a3f1c7e9c4ebc320f5a3fac891208992b9428da76e3f0fb0300a5
MD5 19a9c143c92d9b4f4a470629f99277c8
BLAKE2b-256 78e63ecfa5ad2023bc7e897ccd9f09e6d30d34448c9fddbdb2f7549f7964784e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1f6dbe7fd755d981c6492f6ad08775060e86e9ccb7d84f6725e4444cee14bf5c
MD5 35e2255fc25154effb940e6f497e2b3d
BLAKE2b-256 b7371dd6a63dc5325bdb36f082490fd770aec1fd6565d1aaacb3ff9fd9c2bad7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e40a43780a1ea080a8dc9d313be76694b6609bbced7193d182a51bf6662febba
MD5 7e35ff1eb5a71a63a029486d986768d2
BLAKE2b-256 cb91b66dd9f28e5d1a38888a3839b4f29eea3e49d05af9bd7fc7dd8ca7defa88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.2 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.36.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 642ed998d7c794ad3844c23281a68f67adc57c9756eb0c65b0b4f76649d59239
MD5 907b8359d580ee4ddcf15d7325864631
BLAKE2b-256 6077adeed08e1cbb207685199ade997f4b523236343914bb7b34af0e276654aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48b2622ecf02dcb7092a3b7b7ec92f71b9d7cd234e0bdb72cc9a2faecb4d058a
MD5 ce24ed3107d629d1a3adfbead6fddb9c
BLAKE2b-256 13adddeaba1a318d1448a7fa522d0acc2ce919f397d75fa63ed0b4f97ad4b7f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9950a556b5a2d6b3dc5d5aab1755639cc357c0b7fde6f5a4d8bafc3c333f433b
MD5 754a6883b25f546d4347cc29ff92eb39
BLAKE2b-256 b4c1a7addb874a662fff63586e2857c54b1ce72775f02fd8a6b2113370d49e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bf326cf5248835df4828ddd2ee74ad9e7fa2a294de0d8301e04af2bcd7af3e2a
MD5 a471cbb30104cf0486bed35b7136c964
BLAKE2b-256 7d9d65cb2e5b6b96acfb3d98a21414293584d4457e28827bf754a377aed39585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d901f73c9cf722d76f5947c87dfb10de3cea324646c29ecc053fef63b79ef466
MD5 a3095ed9646e7398b506abf9d134e3f3
BLAKE2b-256 d2aa94174564e1b1e54307e7564c4c97bd4563f77c41b1b35e79b1d4475b050a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 698c0af9c376d8103c03b8b45ef80bdd100c6a91d26538fa8baa1f22c0a848be
MD5 082f3de7a6d4c2e047c34640a1eedf83
BLAKE2b-256 bff4f1fc56f0a48154e14428ed4dada897fbea8d1d5c94127575af3041cbdf2e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b013b81c64ce7933a4c5883168f418ea4efbe63dd5c17c7426a53bf34dd14e78
MD5 0f3bd606cb9932708923bc0a6ba22022
BLAKE2b-256 e23dd3537abe24083735695a2414bd82813452585b4a0d99e2283ef7e3fa177a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 4.2 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.36.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ce1b0f2e5c8f830c95003e03848cbf3ea39599515baa3b96f74fbc3af76b240d
MD5 31b0c7bc6fbd76d77178db4153b00e50
BLAKE2b-256 4d8ce34f01f6ad024f969cb473a1e152585177686f0fd1046e0debd4f89451b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 83b8557abc453c4393c9ae278b67da81e02b3ba3beaca7348af81e0baba50b45
MD5 fcbd81282e1f941a18d09384dc4bd881
BLAKE2b-256 59efc78793e593de41a501ddb1edeaf81837bd30489b2a06e29dd3ec7f008974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad2f6efb011485b304826bda36601ba12c7f83d5d3efd381bca1036406729177
MD5 24ae9dda2aafc6ee3fbdaa334784110f
BLAKE2b-256 8f93c4474069dbfef4ad4886027c78e0d4d6ae4703ecc7a6f8580f2b0fc5f032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b4d4a6bdd24c2deac3677c65062eb6a2470d74b6a554fb707b5c743278940898
MD5 2350a6a8474b0615bf72f931e9030814
BLAKE2b-256 366f180c7c0c7952327490c4beeaf77451aea6e07d2742500c71b450e69f8e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6bac6aee41072e3d3df1c6dac2ed34cd7a27783da0f728ba440b1447b819c7bd
MD5 28e6482640ebf15d0a761614e299ad52
BLAKE2b-256 806efbaea1d64cbf5906d03c72214ee15c73c2cc91d5224862f8b4368287b642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3260901e3bc30b027837c143d50c2b617b6d007b7cbedd909f8fc6c03fbed83c
MD5 df36c7414c4be08e120ac5e17fb016a3
BLAKE2b-256 935b1645eeff5e2401de7f366c5843d1589087fa155045fd4d483f880e031954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 47a3ed30efd13b0d09c4135a2188e7956c04638521aa86e4edd290974997e146
MD5 458cad6a00429c14dacc24f17f19a28a
BLAKE2b-256 fa3c0ee15b8136cdc99dbb91ff46ec58962d168631213b7bfbc5672a00eaf784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b6e698b47821b507fd350c2728349edd895fc479d56b7aab7dba64c42d1fc366
MD5 32c2d31f9705929cdc4613c254a9c2d4
BLAKE2b-256 488f96acf8e48e3cb28723202aaca2762b1c6d886895ced922a7db775bc7aca9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.36.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3aa9d530e5bcb5b001e36c05a46218690014e9985c5c0bbe310def86a5bd8118
MD5 190fae4aef87dfc8e1a977d25ce2fe93
BLAKE2b-256 a50b5f4c5b2f7f4d4d2894c331bfc74589075cfe919de34c38d16ce2bd2bcc91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 4.2 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.36.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 647673a5c40b7c60c800127c7dfebd7bcce7fbb24feb1cba42af0cd7b2b7b738
MD5 76884a1cf87cd629b26f3b742994c899
BLAKE2b-256 d490828a86795d81ce1d2ca6b11c54ab8854c12a831be806fe715552c805081c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2428ad3a3d782be67b5e5cde50d6f7f9be8fe49a3d31d673f0ebd35d01d4731f
MD5 8aaac1ca6dde1038550bf49208b5907c
BLAKE2b-256 d97c8258aabadb0e02ee536831eb84722b919696dd80564785018f30b2722cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6b346b78a2a7f6f8961b20bfb5516f4af0302db4ac880c6f0dfd6a579781822c
MD5 6aa19a77dfa010caf7c9b884f22bc30e
BLAKE2b-256 20cf7dcdc3336218747cf8e98ef1bb39ae1198d8b16601b7ca669b78cef64f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5be7570bdb5537b22beb1bda8b91741724a74588178fa357e135339667d45e5e
MD5 23b42e7903177c98079aea9b74b936cc
BLAKE2b-256 2a4f7b5bd0c4dffdb7683692d91fcb813a66322d8cef04ac7bcfd6593d5f4c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed90e8ef5f8fd3804c61d9c5c1d350d843d9507670c4221b33a221362731af8b
MD5 8a1521dc54d8d9e9167ad51588746662
BLAKE2b-256 a81228f035e5bf77be65fe3bce6dd7b34f3f13b951d1cbb8bcba4ca7eb009b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4a24693f0f2d8c2368bc168351c15024187f6c11f23a1e459cab95ddb7039064
MD5 a18a3c2bb884d7b6a92982056b264d87
BLAKE2b-256 5cadf51e4ffc6186da9bd880e7e93463b73de35444d749104fa5c7a4db9dab35

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