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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13+Windows x86-64

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

Uploaded CPython 3.13+Windows x86

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

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

awscrt-0.36.1-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.1-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.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.36.1-cp311-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11+Windows x86-64

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

Uploaded CPython 3.11+Windows x86

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

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.36.1-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.1-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.1-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.1-cp310-cp310-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

awscrt-0.36.1-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.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.36.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.36.1-cp39-cp39-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

awscrt-0.36.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.36.1-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.1-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.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.36.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.36.1-cp38-cp38-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

awscrt-0.36.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.36.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: awscrt-0.36.1.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.1.tar.gz
Algorithm Hash digest
SHA256 bd1f86b092b57a9ec1f95138224007946eecdf944df1e08fd99f75b64fe2ad20
MD5 1f33cce5cdd5fe41413e3c687affb81a
BLAKE2b-256 bd38c9945730e522610c2ebf1b38483f1575226e998ab27e8c553dd33fc64e4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 147d501e67bc16d98cdbdffd9b53192d988077ffe67209b5fb4cbc1ca4b00b6d
MD5 d1c86222b348f48a99ca9b5820b02529
BLAKE2b-256 03e1ce5bb8ffcc788360e4a596a1d9a5e3c9822df3891a376ad662d2cbe860d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7de5394f52b9c778d97b747dd7479a1fa973cdf015f8b550f0a0672dbf32026e
MD5 4e4a7bedeae23759dd89aadee8641e07
BLAKE2b-256 5bdf99d6e8a46b7af49974610af139a41d0c1e29f017ce3e657fd4a2966d3ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9a35dfbec6f992905d3ac393c7d795b49e87c2cd725722bae11702b891f7c34c
MD5 2f1d91708a5f55eda00109b045a35cec
BLAKE2b-256 289caf784e31489248b2b80fcc203a8a284d50f77015fb1ec0f269e37a13e1fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0186d9d001ae0d223f2a81e0c020453806062e4a0cdcf92708b79b04bbff17c5
MD5 28b154d111ebe73aa5e1e9c920b907c3
BLAKE2b-256 855026218a8e7b0698d238af7f182ce2884ee3b37d4443658eca673723957582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f15690e8c540a0df25eda32a9b1271d2693619bfb894569c0d583a19c54575a0
MD5 2ce6a13a7514e1a1062a7fc2920bbc97
BLAKE2b-256 00a9de31c37fac1c8032bf905e459942f5a1285b9fa9a9633d34878e708d4020

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 20323eb87a11f48f08ff9c0ce592d8566619220112c6093832b844c0382eb85c
MD5 ecff684727071fd6f4d8d1a0c4b594e5
BLAKE2b-256 a6a03d494ecc25b368f6a7b2f9e703ccf2a407ff0360ae500b35e9d751c1d40a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3e185e986008891170944a2af373b18b9e4d6d45d49dc7ea49aa2bdc0af79a43
MD5 575cb8762072b96b9877e5507f8a55c3
BLAKE2b-256 70c203b337fd583a0b801658d4bb121e6a14a083f8365a8f1b8a88a935e30b64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7a9728be51ce22797bfe6dba2b48768c378a77bd46d3facc2e4b1ab07996d800
MD5 3c179f6334febaae647f63737be89ea4
BLAKE2b-256 65d63e0bc10fccc45fb0bcb75bb2e8a4bb429f2392a91303c26737d4811d541a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2840880c6d6c05337aac619d5bf1e19ec43a1539dbd48c6a608fdacf296a7003
MD5 91e50c7b891260892e9b79494e35a48b
BLAKE2b-256 b610b211c65ebfe2922a3c8c8603b19fbad156895b615e8d9feffccd8ac6ec5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d79e85e4a3eb5550fb0cb7d84a6d3b3176b23b5255d16869ad84c74a4a4d545e
MD5 9db1eea31cf8bbe3fe81874cb7d2b467
BLAKE2b-256 fae63d17d34f5fad2e3c9b8ce4b4a3ffc5a71ec8557c91385c0facbf51d88c3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 df013e9f333f65716eec397802597daa9f03173a73247e14370fb4bd3551c859
MD5 8df7cbb453a8a72e8517448c9e1db587
BLAKE2b-256 98b952dee3a377b3e692b93564a5aa8b7ed54a2221bf7d3f3ea36859fa9bb031

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 5bbf2c9d8d9c60e0eff80601b0223600d6c6c4b02ff03e62e73534f1d752298b
MD5 b5a1dea82f774520fed1b60767052db0
BLAKE2b-256 26748a9394c137c9f679a5c4d01f19efdecd80208267ad31e654cdb5d58006f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6fee2c1ab52656b2122661dc983d651fad0b70bc10f859e3e917c66b494ab4e4
MD5 09324a3663ee8dee288eb8ada0d49680
BLAKE2b-256 f5486cfddce18e068bd95f72ec3987bbc3c8f7dd9bcd3ec56427ccbe1e42182f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 674a346cfa5f57afd55ebeaa692bc093a694fd7bc184ddc911a77c7f01983b68
MD5 9beb9779039ec4f24dc15339b93a275b
BLAKE2b-256 70d821f7740106889eb1a4eb93ef1f4e4270bb887239eaabb98ef7f0137614e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a681912cca49b70d9e3ff3c9968884eabbbbe2761b67d010e6e9f10a06918a03
MD5 68b88b7d88a79e36ccf9e46f504511ba
BLAKE2b-256 989d6746f592b3164b2cadb50d0be967eb1cb996a934f7351104868b9b027f5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e38c9556bbcd7a645522768c9401b1573c8ac9ffe8835e4db66b97ace00d081e
MD5 2b5eb7144e000d723a3ea22535ddc4ff
BLAKE2b-256 115bf9cd9140b72cb6140422bdd682aa004ac6e886be08ded42460164d377152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 783a58c3e81f20ed5ff70a9aa1ec6c25e56ce7937c020da5fb588ebbd03ff8f1
MD5 129d3cf19635046a8a3ddb12431bfab2
BLAKE2b-256 e86f9803918104b6efeee3b8db2d90c15b48f55e893893985e64a0fda879867d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.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.36.1-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0c268cd5f8b851a85d8f59c74cd4dd37a24d6040e102f13fb53d35f6d818e2ff
MD5 705ae41a30f3648c93208b34e62e8713
BLAKE2b-256 d1632bf078838d337cfd65bf04b595764ad96e6a846add46640918602f5043fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 1964ad779a7d7100c25819b7eaac830ff6660f785abb1c3763d2c9e80631418b
MD5 fcc55495866498eb0481c85fe33ae608
BLAKE2b-256 3d32215fd53c4ec006c5099dd2eb6dfca4d9969776ceb8eb0765c4ea2ee5c7b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c586b610a1bbaf30b258f1e3a6e350733dc6463243f3b05fb92865c300d66f0
MD5 0228de93561f9efb505bb460be980282
BLAKE2b-256 412081be812c8dcc69e5cf026a44414d04aecb5dcdbd06556d6fa61c4e7559dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 323240f4af170870cc205b8fda46fbe631349602dc7f4cfe8e3c128829f6e1aa
MD5 948611530842927cef9a4a5304ee16a9
BLAKE2b-256 f290ce7ce791deb63299e77cb05eb11e4e431b9ef065d5797567372fcec349e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ae816d7823bd3f5c28a696b257a369478d05c113aab95efc0d8e82c9636d4da1
MD5 0a8847ac1ff14d8365e6981ea8c14942
BLAKE2b-256 2a5101b6e0f744e4903593725adab8cfc2cbef27b4cddf391f16ef3f23082201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e1869970cf4901cb2fba3fdd8d0b562b4589df2592461d475cd3d9ba6df033b5
MD5 d1ba14dc958334b4521c2ee70b0512f8
BLAKE2b-256 d4fc32662533172aa8b5b58df99393b8e8e7cf4ffaf2c1c3a2f07956b6d7d95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 acf65d3f8475d7ff515f073f4a328ba6e8750b743d8c35c84f386f4e67b4e895
MD5 632e20ce27028829fea8f2d9b0a277c0
BLAKE2b-256 e0a47f36ac129f6ee3763a8e21b5200079dc4385cf991e12c68dad523b678acb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.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.36.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 17e0d3896d491f2aa4d5894eac74a3fd29b53815c7804cac7cf37687570da4ca
MD5 5e018b4fd689eb7aa979f2eb6bb9ab74
BLAKE2b-256 8816527993b3aa18069b132db352d42ff5f08cba18365de4ce4d446413d0d607

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d14e3e4793d677c20d0ac9feb1364db0544dd8021bbef5040178b6e6e0ef15ae
MD5 04cad905cb6372ca0a17e09267231004
BLAKE2b-256 07bbdd0a293c4c8d6ea1b0a53f450b1bc6fafe9a58a740e7177a93d6bfa7808c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e563e5aa90018426054b18cded814072d7b42607ebdbff54003220bc761a1dc0
MD5 612bc679cb0578b4e29d3801fe9365fa
BLAKE2b-256 7d1a1ee7de3d820292db1106b0b64d6e760ff0fdb4b4cd9d17ad73134ef0c2d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f3caf5411b7a47e3c3be53d8b6f5fb8b67434a666160d16a8eed6db2827a1ab4
MD5 47c9f55e91c643c51a18fd751ae73b6a
BLAKE2b-256 eadf8c714ab0e8788dfcbdb2680a8cf873cfc1b0f7be20d7184a2ad98c130ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6f190bb93f6d72a29e1997c6a961bb8a875532dee64f19a388f06737a9b1619f
MD5 c86db3b4250383b028cde5ba7229bdb1
BLAKE2b-256 4ff25ace5a95d9e393b4bdaa7ce16e4f7ae5bf5f1e0bb462f051600891fe4d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 97d945e33e853bfb3f74232dd0900d61c7a2ee3a3a4330e0f2255fbe20d86e81
MD5 e0b96b952c328926d555f825fb9e139c
BLAKE2b-256 4ffedf03efe9feec20041b49098a494e264555255a6429877e76a8a26531b934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9b28da9668505e54f119b265d653189fce6983a94823d93727ef7f632e327e0f
MD5 6075db1929bfee7f3b6e47a7a4084c16
BLAKE2b-256 aaa6fbb248f734206b3d3d423ce36119742319161b2001b0c315cf7a1e81f8d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.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.36.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 979188dad4c42fb66c47d0c80ee21731f0d525ab78c34fed1cf3d56849bff313
MD5 b6cdd6f74174a6283a633142ba0a296f
BLAKE2b-256 452851a7ee3e065a939be86db099ca4c7838a5a28068f69bc430c2a95adca31c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fa85482ba43682c9ac6d627909350b0bf5b805fe1c1f14f1dead679a2ed4a4ac
MD5 0ef4faee5ac2c949d37202d220ece94d
BLAKE2b-256 7cce1a18ee9858daa63b82d36b51c8d016a3a510e9b92001eec7422bab099014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 198631e61e99a3688c327a2d35744222620576ba2a31ae80251ddbd18c93ebe8
MD5 172667b1fd8105ac1aee9543da92a345
BLAKE2b-256 e5b5332741c029398369738c0d06a7d772c4bee06094ee9079097ff30c867a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9256b5592a63520c823aa9f0236ba6e6d4fc316b22e43dd953ebd72a4d4667d0
MD5 be92346e2223dde4d5f15492233c4a70
BLAKE2b-256 b6d800de409c69f1cf21fc838341c1a32354ab9d717f4e4a1985906e18c8dad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 51324949426af253be38e70726cdf92fa98ff82ddf9f4e75334877cb9042825b
MD5 22e58f021555900f2de21e43d35c67ad
BLAKE2b-256 b98b1a33003989982c809d1080d04253521b8bb1e227f020686a9fc78d7cb4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 59f64cefa098563dfe9d4d4db087e555245cdced68387e2dba4ab61a71204d68
MD5 1828543a706499e855c92b426dbdbfe2
BLAKE2b-256 c2dc68000c42b2b5143b3e6b96f0cd2d67926e86f48f649b487637ba515454f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 340841592df3cea5a2780b20038e20e6d59de21bd3299c97ad71c893ed61c3a8
MD5 ffb072a8d2ce5e6a59cb74ca22299595
BLAKE2b-256 96dc838d4be752622111258e16737207257e8c6c485e81a3d44c12baa1c6a41a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1b5445ed7d0bd4b31bcb2c2ed399d561ac492f542868d86a5c76a06f9ae6a1a5
MD5 6ab55554ae7ec9d03231e42aae64c493
BLAKE2b-256 095518b10807b3a7909026889aa3fd74bc8615189d511690c9d05b9e3269fd37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 fa7466d50bff08c64a2acc1185e49d4399c04013dc60f7576680cda948801a74
MD5 067fee23afc697af3e7d8799d46641e8
BLAKE2b-256 ac17eaefaf3610ffc59271d63c88ba61edf3f3639e6afa52d707165e6384b982

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.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.36.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0719be32d7eaed607c16c27ef4d107c539fe66f0a633483d623f75fa4a335aef
MD5 dd62a47a8867b19ee73fffe2f7c6c839
BLAKE2b-256 d27b72afd4e493e4d60452561fe4f8a0b2d131a6fb9d5ce74a1c4d2ca6f3eee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.36.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1a98b2f3d07f53952eeb34fd2c96e415da2a3a3f318c5a592495fce4586225f0
MD5 dd188c79b4a402bcf4ca909493b711d3
BLAKE2b-256 b6fdd74afcbf4eb7d57693d105df075db26e9b4e964835ac8deaa9c036102bb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 12a4bcc6f609d2390137ba8d262a5bdb5d93772379d60de35f2acea131c353b0
MD5 9fec0fc04290c1abea53ffce8c3eac9f
BLAKE2b-256 30591fd92072c6c7b8c3b32b8725a1e24cb2153b741a3fa3833380eaba0bfd70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a46f49f9db89391c530941d8c0ad36567ddfb7a28216c1d2676fb500e42b6ad
MD5 a2d0730882b96ea2e030bd59e2693851
BLAKE2b-256 7cf6a349132181e366f8aff02945785fe45dcf0f997a3b328437dca9fbb1c456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4fe4d70596e38571035469af12efc8ef48314f9ebbc9c7d1c4a9cad436b42312
MD5 331441f45df791d20cb297848ed28c09
BLAKE2b-256 9c68bac70939a9b6c7c35a1df3f90499bc5dea2230eaba692a1f3cff2b67b66e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f29df90155173bf438441a128e9c323876e0f9264be2a90ac420cba24c5df41a
MD5 48e4d07559aa99deb73434f34d6cf131
BLAKE2b-256 c806345e43b1b7b548a40544ffbb1536d208d8f2ee1389add67c22e3502f982a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.36.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0a32a1fd2f22da82c7448fc62e4e5e71c28f715f36413e85ad08fc8f1bdf3476
MD5 bd2a2c6b90295f7efb15817f29267d19
BLAKE2b-256 bee4af91bc3c12e0e560ee120f4d2212fac565808745a3d389019e80cf9201ba

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