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 .

Mac-Only TLS 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 Apple and Windows devices, the OS's default TLS library is used. On 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.32.1.tar.gz (36.9 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.32.1-cp314-cp314t-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

awscrt-0.32.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

awscrt-0.32.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

awscrt-0.32.1-cp314-cp314t-macosx_10_15_universal2.whl (3.4 MB view details)

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

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

awscrt-0.32.1-cp313-cp313t-musllinux_1_1_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

awscrt-0.32.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

awscrt-0.32.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

awscrt-0.32.1-cp313-cp313t-macosx_10_15_universal2.whl (3.4 MB view details)

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

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

Uploaded CPython 3.13+Windows x86-64

awscrt-0.32.1-cp313-abi3-win32.whl (4.0 MB view details)

Uploaded CPython 3.13+Windows x86

awscrt-0.32.1-cp313-abi3-musllinux_1_1_x86_64.whl (4.0 MB view details)

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

awscrt-0.32.1-cp313-abi3-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13+musllinux: musl 1.1+ ARM64

awscrt-0.32.1-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

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

awscrt-0.32.1-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13+manylinux: glibc 2.17+ ARM64

awscrt-0.32.1-cp313-abi3-macosx_10_15_universal2.whl (3.4 MB view details)

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

awscrt-0.32.1-cp311-abi3-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.11+Windows x86-64

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

Uploaded CPython 3.11+Windows x86

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

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

awscrt-0.32.1-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

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

awscrt-0.32.1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

awscrt-0.32.1-cp311-abi3-macosx_10_15_universal2.whl (3.4 MB view details)

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

awscrt-0.32.1-cp310-cp310-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

awscrt-0.32.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

awscrt-0.32.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

awscrt-0.32.1-cp310-cp310-macosx_10_15_universal2.whl (3.4 MB view details)

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

awscrt-0.32.1-cp39-cp39-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

awscrt-0.32.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

awscrt-0.32.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

awscrt-0.32.1-cp39-cp39-macosx_10_15_universal2.whl (3.4 MB view details)

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

awscrt-0.32.1-cp38-cp38-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

awscrt-0.32.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

awscrt-0.32.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

awscrt-0.32.1-cp38-cp38-macosx_10_15_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1.tar.gz
Algorithm Hash digest
SHA256 1faccfaf365c7ae8975307e42edec44eb3ae3feba2805aff2979ba8474b6bb4f
MD5 f27b28d703487ab2984651d617980828
BLAKE2b-256 fd98ddd893b872519da47573810aac0b225433c2a4162967df73bfe0bd282bbe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 89b5bf2f427a3d0272cd8b8bb8e8bcf0643bfaa118ce33ef2b3ebb4a432e9d62
MD5 fc68e80310b50154d3e3ccab74b09b62
BLAKE2b-256 f9056582981a2a943a827b02aea011cbac6fa29de293155fde2349bc9946f1cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 30ac7b2f87c3ccfa9c81ab9477cc1a34322b583b80b8802a1cd3fda200cf4a9f
MD5 f7e1fc34656a77959ff5db83e84650d1
BLAKE2b-256 3fc5489b538e08d455ac3654e98eae3995f655a271dc2cb79be17a48aa08fa2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ec663c7bcafc8e5e6c1cd2032b3c5151a6cf6b0238eb1f343b42220d4a1c2425
MD5 384a1dd4ed4223a2f80bc72f8023b751
BLAKE2b-256 02ddc0dddce699c313571f18c2b42c823c3b7bd01e1e286a7308b0df0f3bafe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8dfc79c717da3d81563f49dc71861748b7d3666e13ba48adb8a74681b0908b42
MD5 86a459eed16250108a173aff05ec937c
BLAKE2b-256 955493bb1499dc917614fd4b0422c96f8b71a298d1aa74d4d0a2157c3cfa6cfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 385a6c92805d78c9d569837a631421513e8fbd948cea33fa6fb4cfd3f308c595
MD5 dc737194991e6875444a27157ef454f7
BLAKE2b-256 3002f8a64a0f26bead566f0358882017eaa7ae3d671035c332496a95a688b0fa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0883faf5083046253251b9c8be27ca2f5e549755ed47e2d692b3a2a206f0fe5b
MD5 f23141bd239f4fc387dd3a63bc536824
BLAKE2b-256 daf2ea6d73f0458fa44cc77365f1f8cc7c0a1f42d1173b627b8512ba0bf6a8ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0690c555aeaa3d0caaefa356c46af6d4ea87385ff9dba54f76d29f2fc11dc2de
MD5 bdc8c5348354e051a3500b25950912e7
BLAKE2b-256 880668f22541a0c33960984b68a32b60c9cbbc5b507d6f85b9e6134a69cc6532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 813780c6f13f14d9b23b240cb67682c79fa3c551dd2397239afbf35348f263c1
MD5 878a72359d75979658bfa4ba07e0b2b0
BLAKE2b-256 a12c5824b8b389e08cb4f801306a6657746f0a191aef42983cf9a1dc554905be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f809bf627eb0db3b80c7c71c81a472aa24b8d03b162ac49764256bdffe35c7a2
MD5 e55bef35afe0724db12b5100ad347e3c
BLAKE2b-256 7470a6e64cdb38ef2902d599122c9eee015b4ddc3e056556a8cae3861e720c23

See more details on using hashes here.

File details

Details for the file awscrt-0.32.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e56555770874c625fd3056f4ffc96fa7c66a075c7c793485efb219a09fe5664a
MD5 3025cfa51402911be48c460f4e65264d
BLAKE2b-256 afd18868bb4123eb7221e59e822e84daf8287c90d1d3cfc2114c6944d1685393

See more details on using hashes here.

File details

Details for the file awscrt-0.32.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6e002d83f506cc4ffbf6a54602f29c304a0f9270451e1f62af8be15e56e7d6a8
MD5 77c6777ab9ea5fee9048a8de0048d3e8
BLAKE2b-256 76e35c6b489f01c2364ae6f1a7fedceb509177ceaa01075975d86cf00df761d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-cp313t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9226b75ec41d7256589dca3b77f935e9b3f6e1e85501e5d8719af38c765730e8
MD5 039d5eacf5d7f01348a79241b6ea0a96
BLAKE2b-256 72f43ef27a7cc679a33a0b4ef8873754507daef70da62a5526a595e39b1eac08

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 f83a8293479b4152065ba9f7c840035c97d52a494e4cf47ec6447c8b7789fa36
MD5 b3707cbaaa9469938106b9e3fb0eb825
BLAKE2b-256 3ed53ceb6ba82481b9874aea03b4560f9cc24f44ccfd3978de6d3231ebb91ed6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.1-cp313-abi3-win32.whl
  • Upload date:
  • Size: 4.0 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.32.1-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 85ee9e9b8755bb3e3f1d52c645e21444f9e0cdbe306e338256f5adee87dc966c
MD5 570fb3482760fe945736a443050f95d8
BLAKE2b-256 01aef21d25cca5f9d6e08afcd0a90dab9952cc3f8dc92c0d14563164270e11e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6a5d11ebd2e5bcac662aedfd96ec9267c43d723342d0ebcff181e37d55f4a8b4
MD5 bc9e9cacca3c9cd66c329b15dea96e46
BLAKE2b-256 d74dd3c0157f2d479b0c0399c1f2fc88994ee5753b54d98313e95077e3c5d473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 059697cf8f16530d1a780eab4bd0a798840e1ed2df33cf2b9bd04a02d6eb2f60
MD5 ed81d7e1741695b047908e9abffecb26
BLAKE2b-256 a8a4e119a94d06ae6c86c2aa4a3aaed9b63c965d03df79262fa9b02c9f0908d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d8111f153f64f5dbac2336a0fb2fdc326b7d2600306be6d9141e88b210bd9e98
MD5 e4d456dbe94bb176d380d18deb0410b1
BLAKE2b-256 ce4dc17b0c5c51f9ca422b31d458ede5b67ad716625e05763700ec290fa30acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a02e3e30629ed76ef3a4abeeaa0fc5d3b80c97c773401ba1fc9124f041923793
MD5 205cdead5d5cb9df9b67fe6091b64901
BLAKE2b-256 227674080c03ddd8ff680195bee4a08e660b3aac7a79afb2d43870344685342f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp313-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a0c19f10106c2ed27c72958070ac95f104dbff90809cdf2d1044fbdddd5e7aaf
MD5 c02d488faccfa822f2eb792c8078e69c
BLAKE2b-256 e73cf2a140de8ef1923099ec9d25290fe2b8adb4c5052d3a3f6f36b63fa5ec47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.1-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.2 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.32.1-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8ec169ea795af4376eed17986e421ae8ea657c9617a7b7543b6aae45154962c3
MD5 1be274ab375e8e149664cf72cc381993
BLAKE2b-256 9a4aa28d30229234ad0f09e944f72348b7045431765c45e48e41a5230810c94f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 fb8699fb522ae8e1b16a86deb411af017aefec0641b1337174c155932a5d870e
MD5 7b7388e2174705337b9175ca27b02627
BLAKE2b-256 92bdb9b0e39a4d110cd946939036cd094b845f713561ffc9c400fcb10865216e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f3661d0c7ad3386bce56d8db4a30ecb9ce9dc1a04ebf4813955cac94579dbaea
MD5 250ba14507a955a50b98a23045ac1222
BLAKE2b-256 227da4acf555e07fe5a7ff35b7a1163e30e4af7f54939843dd6c5b336d68758d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 871949f6db4d9ae6568a5508ee30b4335b5c38053ef7483c3d34100f96d734dc
MD5 8c4c56fd1183a6502a6de28992448e4f
BLAKE2b-256 03fa7912caaa62154e3c95f1bfc8e70d130e07f0bbaff5c5bfb061564b7f1a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4b36f48932ddfae10a70440a39b929573f81c6498985f3dfe4d78de8f04a1d0c
MD5 56b92812a717b95d9a1ddcc2d45a8c8c
BLAKE2b-256 6b9ee5906cec9a82c30f0e37718cd948f1e4097497f58acc02a30be0d98a7070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 05a0b4f06dc832907ae8dfdd487d6d881481edffe327cd95836704e08b51467f
MD5 8dcaf7ca34a6402343b59a468e389120
BLAKE2b-256 400c9a680cc9e00e398620fd64bf9aafce33870d851ec34055fabb3cb6c30391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp311-abi3-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 749df69dba2676020e524642df42453087b4bcd12657bc6dfd5fd2e62bc0993a
MD5 1f33bebcbe52cd438e5d09f827cf1efd
BLAKE2b-256 d4e2f6d3cc76c65820d85c15e641fba260e62deb5de484c2e6083d526e640926

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.2 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.32.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7b1a5773478fc57cd6dc9570ccdea95b2ef688402959543638ab42e04136b12
MD5 eba86472ec873bfb75d91f39908e1e08
BLAKE2b-256 a30f2df15b1fbb7b08e401fe70b06a3c3ad0e9fc7610dedd8a12dc712ac0ca30

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 51cde3a60b543a1c532b3db2fcc33586e15fb09c5347553c47b48173a5592572
MD5 988bff8d36d358c41debd1364b4cb0e6
BLAKE2b-256 c8c3acb70abb7d3b000a4a1caf961af19452b4676b986c6b74963003bee8f5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8ed0e02ee5c7796471c329f7e0b2232e8f4aeea83d742fc5c2e73248cd1f0745
MD5 626c7593ec820b353deb1f00724891a4
BLAKE2b-256 3c30c15b7851822fd28df8cd6fe081d7c3e7ba2f9becfda54b536cab43da73c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 867c4ef556d4a5049012de64adff1edfcf4ab635e71a3de745aa3d64c70141d7
MD5 c2a5082b97bc7d6a94685bcdc8e074b1
BLAKE2b-256 7e01aea7e3e90da4c6b93e40f1d248438da1b118306c233885a9bdf41f8e7b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 86d2c65828501e3fb132ce3440274f8696589c89eb1e5b1b6f39816a9c4a9638
MD5 ae950b46269a4d90c35003007c294056
BLAKE2b-256 fdecc4a8a12be5201cab0787d813a429c080f7017f9011932815f35ab190a10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1fbcfb39cbbab6efecb3f0317ba3e4e0cfccf13022380449b358da1902124c74
MD5 52ff01fd5b8117c348c4f37b62ab9e4f
BLAKE2b-256 d327c84aa441eea636121f4bc2fd19bbf46774033f3eb204f403323588846ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9886714ce14fe9bf3a9ba79af58cdba68f8012658853a31e349e8530ac1db543
MD5 9a34c8e928f0522b9f7e81f1a2a48f75
BLAKE2b-256 3eaf9643f9d1c1051f8d6a14bf1da6c88caac9d1fc5c6bca2159b8bf0162ed29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.2 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.32.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 92bf90ca6ad62fed8c893bae068373a7237b7bc9709d579a8fbf82c5a7dbffe7
MD5 80040421ff35ef8013d25fe133a880a1
BLAKE2b-256 1a294e4c3f671955967e0d7cfc30201a877a658780ee3832ca4b17f7f3cdbab3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 99e288027ac4b178ea826d2420b4b6d580b07eef340e68e2f958057bc237cdf0
MD5 01e5f80cffdfdae48266a86375732f65
BLAKE2b-256 f86283ea1854cf0fd291518f8978a16def208fcbb531d22d96e7a29d463880bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4328760f605bcfc3d1a41b9b546078c16f8ae2d7771c6beffa97549650540710
MD5 bb6ddc8ae1b756cd79e02d2f09788ac8
BLAKE2b-256 b0974901388ac3d87b8b2a5c55cf90728494fabc5d3bab675ccc2fca68f446ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2c5c20bd6fd46d2001c5581013a97b74083500e4e7dac4c566a6558c79c2547b
MD5 d801778c00cedc585d0bc7b0f699d675
BLAKE2b-256 f983c3120b64824b40345d0dcc0dd714f4f40c7d8aab4d6ff093da7d894a45ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 88f22648683b91bb1d644b7d9b62ffe79542e9f80104c3b49d5eda5fd113d49b
MD5 c6e96e43c32a6b8921478b8f64586ec3
BLAKE2b-256 fb44825052a88991431e4428260537f7aef8d91caab3c050649518c48fc24133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf867180354549f1f035910617d0baf546428db5b10ebb65bfba264bc4505366
MD5 409ad009a4d260b6edfa2d6eea8855ed
BLAKE2b-256 b7499e7c7d2fb1402810cd360dc9638610d7aaee271c1de97be06ed33f09d677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 de3dcbf18266993c87f7ddea21f003366a3ed5ff0a287e9a4f9e9e753c96418e
MD5 9fbadbf51c91e7eb0ebb5c3d930a321b
BLAKE2b-256 4501958390e501d6ef33bee6d36613676edee1d20d7ad6f2ad72f2cd2ad1b8fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2d9c605ac8f34c3998a61525ae8994844fdb0dca82b062d4528f3a09fe7f413b
MD5 c16376faaf0d478cb19206f3cde72efc
BLAKE2b-256 1c551a629f3832a1f083019189b2ed8c742c5ad711ba0dd2174f1fdd7b26e011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9221382bccbfc664e665a6b9b21cac7766973af3e5aeb4c750b22c5af28c962b
MD5 a73bb7a6af6906fef1b7b2123c99d3bf
BLAKE2b-256 ef1dd24786d0208c2a522bfe268f86a9e0e677d2947dd105421e814c187b1bd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.32.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 4.2 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.32.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3cd2a8ac4ac9332b0528497449272ff6b6907bb1b216297143656fdc03259338
MD5 028f3d3d206214ef6f9856a78fd4510c
BLAKE2b-256 7b484c714728f8b5828bc6de2c7886c3ff0a26e92a909209667af0356bcf41ea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awscrt-0.32.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1bc98d41fa5c7982aee83a9f3b333b3215c7d5d42a9db54a59f30eca2abcb18a
MD5 b3b5f9d3e2a52075097b501a71baa0cf
BLAKE2b-256 927beb5438c54756241bd9afe709f3a2e3414f77d5b7c2e49db6b219011a806a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4221e711230df0d9a66e9755c0bb3de6e509c2c8292453c2fd44721ea5c08c27
MD5 998e8a003926b71efd2202b5a0013886
BLAKE2b-256 d37ee658ac9c43aa027f0d8875a78a106e9e1ac6b08404e087d01ae4ed1161cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a8d9ed762a8d01cb88487cc4849f3d44b7061c45b019365936fc2c255fbd54e
MD5 66b94105974149ea3a6b65d3bb096b05
BLAKE2b-256 af69b27856f7f7ee90e8cbf01a56e0f7c3cbcb6c67d50ad7f9f833ecedc74f09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6e0f37fb78f7c27ec02cd141b345b3c03dc1e7814887d38d4de2699069eb7395
MD5 47d99a83900cc159ee640ccb0ff8742f
BLAKE2b-256 a088ebc3fb07a3d2bdf2144d3c57554a8bb74bdd9bd5df5f1204c723594fa975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80c440b25670ef3bac780b7d524e3e82c33685da7b207d52b21fa0a53b6fcd9e
MD5 fe5e066c9c2ab314b30e8b975fd09bf6
BLAKE2b-256 ec9eea23a510fd2275722ad7766113a3d65606e3cb87674eda8e8b1db3c9105c

See more details on using hashes here.

File details

Details for the file awscrt-0.32.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for awscrt-0.32.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 301d67193a478cc672678b72f7944669c19857758462b2aa5759d4d676d4b867
MD5 0aa00857d6121fd297667eff8311e4f8
BLAKE2b-256 69c6cb7a9276072d326682c5f4ceb406dc310e67d97b2fd820566314ef8d07d3

See more details on using hashes here.

File details

Details for the file awscrt-0.32.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for awscrt-0.32.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e0bcb28a3a9f728d999b96514ebf5dd1e716aae4a63533627a718ed6bed493d3
MD5 d4d5687d56aca7ee0abc6305cba57b73
BLAKE2b-256 7fe354ffa51a7d87e6e46ae128dc42cc2504ea27b696e3e6bae327c7702113c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for awscrt-0.32.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f9d317d5e6b0b1e64c777e1c4a862f4b605bcd26a6ec28d9c14c1030506e3b9d
MD5 cff1a7788f8a249620cedede9ffcf1d8
BLAKE2b-256 750c6778244aea37c4575e7a45827eaa8f3e88471b5cb3aef4f182857f2f4e9b

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