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.35.0.tar.gz (37.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

awscrt-0.35.0-cp314-cp314t-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

awscrt-0.35.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.35.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.35.0-cp314-cp314t-macosx_10_15_universal2.whl (5.1 MB view details)

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

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

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

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

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

Uploaded CPython 3.13+Windows x86-64

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

Uploaded CPython 3.13+Windows x86

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

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

awscrt-0.35.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.35.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.35.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.35.0-cp311-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11+Windows x86-64

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

Uploaded CPython 3.11+Windows x86

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

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.35.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.35.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.35.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.35.0-cp310-cp310-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

awscrt-0.35.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.35.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.35.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.35.0-cp39-cp39-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

awscrt-0.35.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.35.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.35.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.35.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.35.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.35.0-cp38-cp38-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

awscrt-0.35.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.35.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.35.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.35.0.tar.gz.

File metadata

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

File hashes

Hashes for awscrt-0.35.0.tar.gz
Algorithm Hash digest
SHA256 761ae0dda17fd9dfaff4bbb2a376e28e44dfd77dc6410b7bc408297a1fd5600e
MD5 9204a230fb308cca1b2ee3c34fc0e3eb
BLAKE2b-256 e88a294c2f6cdda8f386057a5f6b349fec9f4838b9c25a98cb67dc503bb80514

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 411d15fc50d91655d748e18603a7117450e98a83f5fd2a03a6a74f313de6ac61
MD5 e07d9e6bcc64f4ce6f86c309ec35a1dc
BLAKE2b-256 4e6eb2b414983c9dd7658734db28f6ebe36721acdc7aaf8671eb9c8258fdf37c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7cacaf7516645e0edef360cbac30ee0d99db57a044ff6c12d35b717516c5315e
MD5 c0ba67b20c06ecf5b24c2fd0ec48b8af
BLAKE2b-256 0326de119cbadf93106cbcfc5c7f729723dd0e8a660b35a5eb7078518f99deed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b0cc13d38911d2b1cf4e725d8d79a3ad7a4347a50d94183f593c3b8ccdfe2d41
MD5 e5eaa89071371dd4ab3daa3e5d8d93be
BLAKE2b-256 7e4390deeff5010805d7f288d20d3be5046c876afe98db14a27be76e645d95c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d283e17fc34fdde95c4a631eb18062ebedf9727a80f1768e02826bca1cc36d8f
MD5 ba83c14570fe0b3ac007b92705985dc8
BLAKE2b-256 f38ce5ce916b3fe468f32bfdb06a7b36447a1ac92e24f177e4944c68c7ac2d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f809a697666be47f9883b369f24f8212ecedb7f58cd4318cbffca37f2662c55e
MD5 2d1fcdf1cfd5f6bf4ddf95e5fd4775d4
BLAKE2b-256 5a257bbf10905bd2cf1ad0cb4fa86fcd89ee37443cc7a849275224c479917801

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 d368ed5ea31e414d726d560cae8b0e04de490a1252255b2059b1e4b58b598972
MD5 38153ef66d8764a9e0457afe4fa76263
BLAKE2b-256 9ef0ff38f8f43a58175051b4e4b3ef7318309b5a22ba3dfdbd7d70fa118bb591

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 cc51bc82cac744723959e3116a7724642bd41c163524c86f591a74dc98cee99f
MD5 ea5a2db4cc4e0646f58224f8d1b5b2ed
BLAKE2b-256 a13ba40e622cdbf9e9a7acf65783f6ab5452a776b92d6eb392503d8a8606be36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c933fc94db944f4d2504ffd6bd0c2ef2289a475e0f8896cfea6569be2e4796a
MD5 bff1b2a4d62b3a509ddeaf1f2d747c29
BLAKE2b-256 8e5c461de896c73b2406bb6014422d53f4e0e3a56cc7b856ae0fff570f3878f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 59976c6063dd79d117d08f93aaddf02448a5b19086b9444c6bdbedf50feff54c
MD5 7daba4add5bf123d3c3be3e1c75ce0fd
BLAKE2b-256 8bcbed8503bcc55c150092278e0019c813cedcb937cad56303e4007e94f43e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 bc78244437be093bc8f82045b2f111daa86eecef1e5d10575a99811a67503b81
MD5 f3a57d973dc82f1f4335c036d3afe9cf
BLAKE2b-256 91224fbf462e45585746e97253d5958c7057759b22f9e543d9e4b704fbca743a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 357ef075dcedfefa6befb8adbcd9f7213b1f906d82083014b668c80ff9f92327
MD5 fce19048ad85e2975f81d2f5bedb1e56
BLAKE2b-256 7f19104541d4b0881a3309128e1ef61f26ece9bdbd15edeffa4aaa2414a64941

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 6456ddebbedd701448fda24752bb0d280d5291d0c751944ab643c9c7a28e4bc6
MD5 c581082f1d66e6b12bbb349b43af6974
BLAKE2b-256 df300d7a1bef8b2df0962f71880865532f9de0f99e33af5adbe88d682815a67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 177f0f9bbddc3227ede427df0bee9353dbb32fbfdf0d424680400e6d76d11ebc
MD5 b8cee275043380f96f50d03e19332f18
BLAKE2b-256 7deb40c92251e4a17c1fdc2364bab2345791ded4f4da043262c6fadc3f51ed2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 286995476f2f8fd217fbe4c37c7e5bd69953cff03b6ea8d37946537a43208467
MD5 2a51094678df4e3e5983134e6e008e05
BLAKE2b-256 199b37649041dbd8cc06373b9018d882ed42ca6535416e20358c305669cc720b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9d766a3471f637bf4024fd487a10457e53809e17f3fb2f554bf4b73fad415f58
MD5 2b138a2f6f3bd220f24580590b0b851e
BLAKE2b-256 a1b9db8bae837ff816861c06d423c66bfa3e9ee55e975fb26235134c300e04aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4a7e5f267c494146ca680b1405ad2290b2dcc0821d5f386adcca8aa0bc427c25
MD5 3ed32af663f27d95b03eb443ca3c88e5
BLAKE2b-256 bc4208e91275771c3c72ab643f87e4e4b93d1fcb09769bc0d4df60834443bb68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4b572c48f473060181bf0544416fde1de803eef0be1252515a01e397bec2fd3c
MD5 4d874895e5309669733dbbbdedb7fcd6
BLAKE2b-256 678be69d698558ed2ced1284c48f30f12bcb06fea7e4bd86fce8a4a8f02b1109

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 1734257417bddcfacfa9985eea110dc8affdb0cee7fc04bef918534a2c4db5a3
MD5 f92e3cdbd6ffb242aa32439a83810142
BLAKE2b-256 5d5950fe2fe981c6f57523ba2d99966c2033315f54b8204e554e7c39cee0a8ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 9074e27c24ec3382cc2cb2a702c7e8e471d57f58844f58e3305b1343a2882075
MD5 cfabe09d8a80799ee7b54521af378aad
BLAKE2b-256 f0811c741d8a6076114e22ed15c6f3a277b1c5c27a49445bf3caa65700ac763b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc604dd77f61c3b6fef06dd73108b390d01699e5535c6d9cf244775cd0bac2f3
MD5 556b7d979a0fa1ffdbf73be12f7ac102
BLAKE2b-256 2d4840014ff6278699e0065165128742a35b0654cb544e980496bd09b5d9c5db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ab050c01fb3a64c4efc7a12baf49321c10e1635903e8ad05d1fe7a88ef5b0f2a
MD5 132ff17e5e4cdbca188050fcd89876a3
BLAKE2b-256 175667c6374c97da326ef4a1af075b6a776cbcdc1bf14ddd259aa9acc613adfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e26cca47c8b84dd968bde8c39385010acd710631e55b686a0e5422573c89a25b
MD5 7e729ffc8dd4d0ffc3a3ece4df20d5d9
BLAKE2b-256 8403edba2d4e7bf381eece2ff176836dbdbb5111d5a81f06705415a899848da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7cd20c94a6008164c89eeb420892c3d88b165a79bdd22ef0a4ee383bee8b4cdb
MD5 75fb32fe6c76cb7cbbee72b343f92307
BLAKE2b-256 d95a44aa794eee204002ae161ddcd1a0d901c6c9ca587f22294e345bb468b3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 393f4fb3a33d47db24092bf4c0d2170fcb127556a56ea8888e623cf67ad90c53
MD5 13ad1def831e6ae2884244627dad6e8e
BLAKE2b-256 293e8e630153db07ddbeac0751c9486f44d20fb0fc7a333ea38ad01df610f0fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cbf5ac647aa06c3cbdd752e69fcd7a4520e786a5e4d8faa96bb0aa1e74b21ce1
MD5 64fa20dfd2f64e17efa2a0d46c3adb1e
BLAKE2b-256 bd11d3dc3ba0a9c88feecaad3cd073bf28f1bdd97042f35b8af189a2f085451a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2fc7ab1cc6373eb59f439a75cfe837380d3b2c0275ef626b48f8ef75149bc71f
MD5 9eaa43c3b8e199a01c58f231b433ebf6
BLAKE2b-256 91e4e7f2394bba2f00b3551a679b7f1fedddabcaf543888fb168529043d0f1f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74166c05a58abb4d554bde5dbba73f85137be5291caa27194d1b8ef8e8edad9b
MD5 0244fe96fae90fe74d37e4eb92960dfc
BLAKE2b-256 6f2f2c7533f2a07dca22fd80528b637f779f93b913b5c0eac16fb31a958a17b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 10a3438c43f4f3ff3eeb4a95b5aec63535c8174e086789fca9d1880d56f68675
MD5 d940e6a0951282d6646184b8dd5c2265
BLAKE2b-256 380cbe6cb489a0520d0455c0919c187507b1e250709fa6c4103b313935ef039c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d42da56a4b900e40e6f6c373b9ba69795ec65ff4429a07491104590a9e6dbc71
MD5 b401477d808f57ada0c92459e3e04db2
BLAKE2b-256 4d5915b517b91ee45f9ed0beba9a4d05643d3bedc877f5dbdbaee64a73a725e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4eb7302dfabb252f1066d7576d6153353e84181de0b8f68d8e5e72cee1caefd4
MD5 bf504bace83747e45590505c95d6b41f
BLAKE2b-256 c34eda3a6c6e30aaeb6060929bce4734998dd34dc347cba28544bbc5156e93e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c0ead21afa3853498b1d0a04d5af46f25220b1c00123ab04b2552262ceb55dec
MD5 4541e9b22bd352d7836c0720a88ee4fa
BLAKE2b-256 2ec92529fa28dab5cc7461aa428fb8de8b5fa24d9bb75241ea74adb903d09b5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9bdefc61eb1cb2227c47e5d965fb3fa2c5e235915997739238a82e3e17c80bc1
MD5 9eb422a7f0ce633cf882a97badd736c5
BLAKE2b-256 3f6f5a3bbde4460669c87c10c876456171163145ba6ccabbb517af09e8dbebc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 835db99dd677bc290e455f61f11b406b20daf8ab918ecad185839e1f8bf5e930
MD5 c2cb9bb365f09af8541b340462cfdf67
BLAKE2b-256 205a4ac5102c737d9ed825594685a6dfdf5c9946154cb113933d39739463d383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d0f49e5740c83bf2c0f0de3bb3eda07bb49205ab075b2f24410ed9b9ab07b0c
MD5 9af9f90bcab41978ac5b73ef0c0603bf
BLAKE2b-256 9f9d0ceda3ffa635815b6f9aef04530648272cbf21fbec3db7494887a3457038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 341c357843500dee904cbbab799aa1055c959605fb463840b32a343dc9561f23
MD5 15c1954fe481c2c1c67b1d2c2e823483
BLAKE2b-256 5b72d2fef4692ec7fedc7fc2e7995404fc73b97aa156b72cd362ada69f8271ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d605f33d59707993a41bba37b38b56cbf59d577b05abb5d68aaa7d64fcf425c0
MD5 faa89bcece018afc0de07bc6562850a0
BLAKE2b-256 2938aa34fdbabd0450903305cef21867cf0b33446f4fb1cd92ec08eb00579a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb9132a8ef13647c74ad5f39b36fec146d07c975a6ae6050672121842d3a61ad
MD5 9388d17bb9f7413db68fd8de0fc3a624
BLAKE2b-256 ed04741100aa11aaf0e564a63316f9a1e9a96a9c26f04ade37425af5b0a3d91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cbdcedd9124faac5b5dfbd1a9ff08bb3268d416e88f065b6ed61e2893e8042d3
MD5 94d5c87a47d372e1aa3a5dec5470f301
BLAKE2b-256 e708b7769ecb38cb536e389686d243acc230ff7895f1b30fdc77ea3f147bb652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 42c69743ab4574ca37ad97e52f7fe7b8e70314fececece0dfffe0267fd08aa5d
MD5 e309389d4a84028a1a4cec15b45ee193
BLAKE2b-256 acacbcbb614aa5872b47ec03b2b9797db214199c396153066e44d83e0c7ff26e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 fb321b44d98b7273752ef34ed0eb1d8d50757c6e165ecad1b8a3dd9281b1b8bc
MD5 82d2af1420986fddb71afaea5aef1941
BLAKE2b-256 e537f279202cd3e60d8eebb3b7bfd925e1cf3b0d79e28bd2c5a5e3f51fd24c23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ab54ea45befb2c867fc7cf272f2357eb35fa82ac59d3ae2c35b6dd10e546271a
MD5 7ef0a89ec7d48ef9e35b8a9f2d2ab9c8
BLAKE2b-256 7efb7823ba9527773364d32574ebc68626e8106cabdc919f512ad412e1245b83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.35.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.35.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3d03795144958de79545d02eb5575b71652a4e92de8026c8a75ff5a51e752206
MD5 f1e50c7628d4cc2e2c442c45e5852eab
BLAKE2b-256 0abe0dd29940a479bebbf43ee70f9b0585c9303e78558bde9497fd51357b0a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f4b6c92827f0c033a32fe9c381f8026964cbafa0359c086726cf36deac2cb5f
MD5 d11e75757b26c13dcb51e5b91fb1a77c
BLAKE2b-256 3a070d2ac448fa4bc4e051dfd4a0b3992ee9af1b5d1074e21ff723e376cbcb66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 703772a269bf013b3014dccef53cccca61f001f97cf79cea1a22fe494e993fe7
MD5 88bda888e6728ea37907085214b01bc9
BLAKE2b-256 6fd13a9e9b39a02b57729f7689ea9d23d83d82f56b5ffc96b1e730f1c6421b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 45de0f131bce6d39f2aefc493bb80fd1500b978ce98d867b448add82248ff608
MD5 a094f9afa32ef03d38a74259cf83ed66
BLAKE2b-256 0aa9708ae58cd657ec64ccf6e8930992515a0e513db1ae66a40db9f6b48520f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50d0de009d053c5e875e85d8e78ae480bda8d861de238cf3f81b8696e488a595
MD5 1aeaefdcae1313d289a2a9e6d808fa13
BLAKE2b-256 6e4a439d2fbd4a8c2b4bf64af6ef987b47ed4aa98a63241173dc7947581392b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.35.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 14055a74c83548ea369908b122d3470e70a43e4436f095573e285242a76da6c6
MD5 796677446255367315b326b2ed537858
BLAKE2b-256 a2d2e467ba87551acc44bca67373e6bf4eddc2d5ff7c125d40adaea5a27e81a6

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