Skip to main content

AWS CRT Python

Version

Python 3 bindings for the AWS Common Runtime.

License

This library is licensed under the Apache 2.0 License.

Minimum Requirements:

  • Python 3.8+

Installation

To install from pip:

python3 -m pip install awscrt

To install from Github:

git clone https://github.com/awslabs/aws-crt-python.git
cd aws-crt-python
git submodule update --init
python3 -m pip install .

See Advanced Build Options for more info about building from source.

Fork and Multiprocessing

aws-crt-python uses background threads. This makes os.fork() unsafe. In a forked child process, all background threads vanish. The child will hang or crash when it tries to communicate with any of these (vanished) threads.

Unfortunately, Python's multiprocessing module defaults to using fork when it creates child processes (on POSIX systems except macOS, in Python versions 3.13 and earlier). multiprocessing is used under the hood by many tools that do work in parallel, including concurrent.futures.ProcessPoolExecutor, and pytorch.multiprocessing.

If you need to use multiprocessing with aws-crt-python, set it to use "spawn" or "forkserver" instead of "fork" (see docs). The Python community agrees, and multiprocessing will changes its default from "fork" to "spawn" in 3.14. It already uses "spawn" by default on macOS (because system libraries may start threads) and on Windows (because fork does not exist).

If you must use fork with aws-crt-python, you may be able to avoid hangs and crashes if you manage your threads very carefully:

  1. Release all CRT resources with background threads (e.g. clean up any io.EventLoopGroup instances).
  2. Join all CRT threads before forking (use common.join_all_native_threads() ).

For an example, see test.test_s3.py.S3RequestTest.test_fork_workaround .

macOS TLS Configuration

By default on macOS, aws-crt-python uses Apple Secure Transport for TLS. This provides FIPS-compliant cryptography and integration with the macOS Keychain (e.g. PKCS#12 credentials), but is limited to TLS 1.2.

To enable TLS 1.3 on macOS, set the environment variable:

export AWS_CRT_USE_NON_FIPS_TLS_13=1

This switches the TLS backend from Apple Secure Transport to s2n-tls with aws-lc as the underlying libcrypto. The tradeoffs are:

Secure Transport (default) s2n-tls (AWS_CRT_USE_NON_FIPS_TLS_13=1)
TLS versions Up to TLS 1.2 Up to TLS 1.3
FIPS compliance Yes No
macOS Keychain integration Yes (PKCS#12, system certs) No

This variable is checked at runtime and only affects macOS. It has no effect on Linux (which always uses s2n-tls) or Windows (which always uses Schannel). Both TLS backends are compiled into the binary when building on macOS; the environment variable selects which one is used.

Keychain Behavior

Please note that on Mac, once a private key is used with a certificate, that certificate-key pair is imported into the Mac Keychain. All subsequent uses of that certificate will use the stored private key and ignore anything passed in programmatically. Beginning in v0.6.2, when a stored private key from the Keychain is used, the following will be logged at the "info" log level:

static: certificate has an existing certificate-key pair that was previously imported into the Keychain. Using key from Keychain instead of the one provided.

Logging

aws-crt-python provides two ways to configure logging from the CRT's native C libraries.

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

Release files for awscrt 0.37.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for awscrt 0.37.0
File Size Uploaded
awscrt-0.37.0.tar.gz 37.9 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for awscrt 0.37.0
File
awscrt-0.37.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
awscrt-0.37.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
awscrt-0.37.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
awscrt-0.37.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
awscrt-0.37.0-cp314-cp314t-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
awscrt-0.37.0-cp313-cp313t-win_amd64.whl CPython 3.13 CPython 3.13 free-threading Windows x86-64 Details
awscrt-0.37.0-cp313-cp313t-win32.whl CPython 3.13 CPython 3.13 free-threading Windows x86-32 Details
awscrt-0.37.0-cp313-cp313t-musllinux_1_1_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.1+ x86-64 Details
awscrt-0.37.0-cp313-cp313t-musllinux_1_1_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.1+ ARM64 Details
awscrt-0.37.0-cp313-cp313t-macosx_10_15_universal2.whl CPython 3.13 CPython 3.13 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
awscrt-0.37.0-cp313-abi3-win_amd64.whl CPython 3.13 abi3 Windows x86-64 Details
awscrt-0.37.0-cp313-abi3-win32.whl CPython 3.13 abi3 Windows x86-32 Details
awscrt-0.37.0-cp313-abi3-musllinux_1_1_x86_64.whl CPython 3.13 abi3 Linux musl 1.1+ x86-64 Details
awscrt-0.37.0-cp313-abi3-musllinux_1_1_aarch64.whl CPython 3.13 abi3 Linux musl 1.1+ ARM64 Details
awscrt-0.37.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.13 abi3 Linux glibc 2.17+ x86-64 Details
awscrt-0.37.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 abi3 Linux glibc 2.17+ ARM64 Details
awscrt-0.37.0-cp313-abi3-macosx_10_15_universal2.whl CPython 3.13 abi3 macOS 10.15+ universal2 (ARM64, x86-64) Details
awscrt-0.37.0-cp311-abi3-win_amd64.whl CPython 3.11 abi3 Windows x86-64 Details
awscrt-0.37.0-cp311-abi3-win32.whl CPython 3.11 abi3 Windows x86-32 Details
awscrt-0.37.0-cp311-abi3-musllinux_1_1_x86_64.whl CPython 3.11 abi3 Linux musl 1.1+ x86-64 Details
awscrt-0.37.0-cp311-abi3-musllinux_1_1_aarch64.whl CPython 3.11 abi3 Linux musl 1.1+ ARM64 Details
awscrt-0.37.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.11 abi3 Linux glibc 2.17+ x86-64 Details
awscrt-0.37.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 abi3 Linux glibc 2.17+ ARM64 Details
awscrt-0.37.0-cp311-abi3-macosx_10_15_universal2.whl CPython 3.11 abi3 macOS 10.15+ universal2 (ARM64, x86-64) Details
awscrt-0.37.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
awscrt-0.37.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
awscrt-0.37.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
awscrt-0.37.0-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
awscrt-0.37.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
awscrt-0.37.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
awscrt-0.37.0-cp310-cp310-macosx_10_15_universal2.whl CPython 3.10 CPython 3.10 macOS 10.15+ universal2 (ARM64, x86-64) Details
awscrt-0.37.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
awscrt-0.37.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
awscrt-0.37.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
awscrt-0.37.0-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
awscrt-0.37.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
awscrt-0.37.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
awscrt-0.37.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
awscrt-0.37.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
awscrt-0.37.0-cp39-cp39-macosx_10_15_universal2.whl CPython 3.9 CPython 3.9 macOS 10.15+ universal2 (ARM64, x86-64) Details
awscrt-0.37.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
awscrt-0.37.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
awscrt-0.37.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
awscrt-0.37.0-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
awscrt-0.37.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
awscrt-0.37.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
awscrt-0.37.0-cp38-cp38-macosx_10_15_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.15+ x86-64 Details

Total release size: 237.9 MB

Release files / awscrt-0.37.0.tar.gz

Download URL awscrt-0.37.0.tar.gz
Size 37.9 MB
Tags Source
SHA-256 checksum
How to use checksums
9e2ddadc609084b5f60affb8b87e77304fed64e271e2b2b7558186cf65d81e5a
BLAKE2b-256 checksum
How to use checksums
93bc9a88ccd0f764a61fbc0f40b600d099110e3b16cf68fc92a401c3c953cfb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp314-cp314t-win_amd64.whl

Download URL awscrt-0.37.0-cp314-cp314t-win_amd64.whl
Size 4.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
86ac915ff21890a4fee67ecb0f28908e5271212f8ca8ee4288512a1f91166bcc
BLAKE2b-256 checksum
How to use checksums
2575eca29bf66f4e08c7ccbedeb9dc5463e6056621c30a272223f069ab78cd2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp314-cp314t-win32.whl

Download URL awscrt-0.37.0-cp314-cp314t-win32.whl
Size 4.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
55e21b5eddf9610d78cf8beab04529306135b7ebda6e425d836b154476cb6728
BLAKE2b-256 checksum
How to use checksums
20fe19b9640f88f0ab8508ca69681e522dd344e382195f1186dcac4bc2bea96c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.37.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
07a7bf8ba8f482579934241bd71b65d861370e15e6a2af4dc0dec9653bedc05a
BLAKE2b-256 checksum
How to use checksums
2b36f56a9152e6c2883338e9fad3499003ebc6b5c781ca2f131fb3df802f8fae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.37.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7ad4efebba32a3237fa05c7d3a3aa32beb6260bb17b61f4a81a851a468f3550a
BLAKE2b-256 checksum
How to use checksums
6b515de3ccbbb42d7a500f62de8d25b0f709d065332a60d924910b16d299e8d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp314-cp314t-macosx_10_15_universal2.whl

Download URL awscrt-0.37.0-cp314-cp314t-macosx_10_15_universal2.whl
Size 5.2 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
32b730c7b29e7a69709db920416119024c56b036d92498c56db35a83b77a99eb
BLAKE2b-256 checksum
How to use checksums
9f1a1bffd22e678e3bfbc446ac5b16d828cb6ffb6d9b9e49833653a4f8d36184
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-cp313t-win_amd64.whl

Download URL awscrt-0.37.0-cp313-cp313t-win_amd64.whl
Size 4.4 MB
Tags CPython 3.13 CPython 3.13 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ace33335cf7a13f2f5089e1148e40f3d9e1fa77b3843111880f350c5cda192ef
BLAKE2b-256 checksum
How to use checksums
57217121bb9d17c17a80e080f56c1992915f6cb7d3a8c3736f53a54416f95963
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-cp313t-win32.whl

Download URL awscrt-0.37.0-cp313-cp313t-win32.whl
Size 4.3 MB
Tags CPython 3.13 CPython 3.13 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
f0f0a5b7ae4bc966b49285e3ad1a1d9845d6bf7d4711a536e58cb65882da133b
BLAKE2b-256 checksum
How to use checksums
1582af0018fb9fab4d39f12f5988b4d76ecd833e9109bc82917b1d52591a6388
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-cp313t-musllinux_1_1_x86_64.whl

Download URL awscrt-0.37.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Size 4.4 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
aea3a1cb3de61363babe1d32f3d1b63c5af45d033c22ee413304116da7381dc7
BLAKE2b-256 checksum
How to use checksums
94a713e50e5e7bf1b51e737a8ee39da042ff0c03075bc4f274ce0bddd940ab9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-cp313t-musllinux_1_1_aarch64.whl

Download URL awscrt-0.37.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Size 4.1 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
3275999908bb43e65218794d939847be71aab027edc076f32f9c6dd03677df31
BLAKE2b-256 checksum
How to use checksums
7b45c440c717532909a9e501ebcd098a56251266af26acf8fd20b2a4456ea65c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-cp313t-macosx_10_15_universal2.whl

Download URL awscrt-0.37.0-cp313-cp313t-macosx_10_15_universal2.whl
Size 5.2 MB
Tags CPython 3.13 CPython 3.13 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
ffcae71ef5cad2550cc82dad263eaf8279fb2588d644ade93cd3f8cf89620581
BLAKE2b-256 checksum
How to use checksums
2ea140cf41798b1e506ad9a0e3dcc4c8ff7d8e7e8a0040231bca6256b584015e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-abi3-win_amd64.whl

Download URL awscrt-0.37.0-cp313-abi3-win_amd64.whl
Size 4.4 MB
Tags CPython 3.13 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
3f75d4846a2d8242393b5519b6c9a59d58ea4122c0c14a2dd4eb0954ad1af110
BLAKE2b-256 checksum
How to use checksums
686de6a9b3afecffc9e9a0abe0f436e78c243f976798e0aaa3699329a1e98f77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-abi3-win32.whl

Download URL awscrt-0.37.0-cp313-abi3-win32.whl
Size 4.2 MB
Tags CPython 3.13 Windows x86-32 abi3
SHA-256 checksum
How to use checksums
4529a5214b83d622f3e04fc1126840e5cf1ff69a6205b3117e838a9adde9b0d6
BLAKE2b-256 checksum
How to use checksums
7d4d761cc240115ab63f6f10b2f652dc81db1ba7e3a427f8d0a0c1d96d9eb3db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-abi3-musllinux_1_1_x86_64.whl

Download URL awscrt-0.37.0-cp313-abi3-musllinux_1_1_x86_64.whl
Size 4.2 MB
Tags CPython 3.13 Linux musl 1.1+ x86-64 abi3
SHA-256 checksum
How to use checksums
0a7c8ce6bb1ef1b210287a91c37b75bd2202c6312c90ec50c99cae23aad8f18e
BLAKE2b-256 checksum
How to use checksums
26cf23e1c7ae8e61625b6798b40743c556e09fa310ac0888872643a74edee381
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-abi3-musllinux_1_1_aarch64.whl

Download URL awscrt-0.37.0-cp313-abi3-musllinux_1_1_aarch64.whl
Size 4.0 MB
Tags CPython 3.13 Linux musl 1.1+ ARM64 abi3
SHA-256 checksum
How to use checksums
bffcddeaa519f9787f12506a3c3184e5568a596d0e6dbbb1d324540ebf72fc38
BLAKE2b-256 checksum
How to use checksums
13e6a7920c63ecd4dcf1b9074577c384b81f90237b28a5fa69140f52c390cb7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.37.0-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.4 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 abi3
SHA-256 checksum
How to use checksums
d74761cfe977b39f2ae80810104b9f4ac15688f5438c322fb0f6124dc08b71ff
BLAKE2b-256 checksum
How to use checksums
a114636072e683138459d88dc02ef21e815f96f58a3658b05669752d9ac70f49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.37.0-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.1 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 abi3
SHA-256 checksum
How to use checksums
8e7f9646f805c016cfa6783b704f0533409a1bae30f658b23f234f4608d1627f
BLAKE2b-256 checksum
How to use checksums
45b133d3deb47840ff71b878918589b3ff86cd50cf2aece3cfa1afd6d22f870d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp313-abi3-macosx_10_15_universal2.whl

Download URL awscrt-0.37.0-cp313-abi3-macosx_10_15_universal2.whl
Size 5.2 MB
Tags CPython 3.13 abi3 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
cce6cebd04d95d42455de1dc269e737d96bb9dfdb4e37a3aa23f46eb07f12dbc
BLAKE2b-256 checksum
How to use checksums
ba19e0902d94b149adac4fd1b62fc171fe84cc6cd66a966e38dca478187b907a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp311-abi3-win_amd64.whl

Download URL awscrt-0.37.0-cp311-abi3-win_amd64.whl
Size 4.4 MB
Tags CPython 3.11 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
226d88e60c6bb63a3fca24cb2526962b96661a644df49fe4bc2323abb01124b9
BLAKE2b-256 checksum
How to use checksums
c1618a84bd57ca6119881fe9320819e33c3f2e2ee72ff91c8fca589662a72b64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp311-abi3-win32.whl

Download URL awscrt-0.37.0-cp311-abi3-win32.whl
Size 4.2 MB
Tags CPython 3.11 Windows x86-32 abi3
SHA-256 checksum
How to use checksums
7debb1d8dd147212b7f881c4805f0cb1d813935445397b0f499bee29ee833c94
BLAKE2b-256 checksum
How to use checksums
088922f6d7813e41e42b862589bc36da168cdebd8e3f56f0a5158ce7182f38f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp311-abi3-musllinux_1_1_x86_64.whl

Download URL awscrt-0.37.0-cp311-abi3-musllinux_1_1_x86_64.whl
Size 4.2 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64 abi3
SHA-256 checksum
How to use checksums
673cb72edb22d83e09a5a195e10d95b8366a0364d61d204907c696746f934bfe
BLAKE2b-256 checksum
How to use checksums
41b92422782edc668315c38626450fdd443b474db00f8e87a53ce4ab368b6d70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp311-abi3-musllinux_1_1_aarch64.whl

Download URL awscrt-0.37.0-cp311-abi3-musllinux_1_1_aarch64.whl
Size 4.0 MB
Tags CPython 3.11 Linux musl 1.1+ ARM64 abi3
SHA-256 checksum
How to use checksums
a59bc031839dbca42974d7afbf66662b39e5f52fe8f609070538d3b53ad49e05
BLAKE2b-256 checksum
How to use checksums
8f9f20b41fe5ded166e55105270ca99a3f9261bf3a9269f5edb7fa8696c5e2f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.37.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 abi3
SHA-256 checksum
How to use checksums
4e69fdfdbf61daa0632f1757efe782fb772013872ef9a8b97d6d16552f3bb910
BLAKE2b-256 checksum
How to use checksums
a655fcf8180c5e4acee7244f643c688590910772b7d8c424be785d0689db6cb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.37.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.1 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 abi3
SHA-256 checksum
How to use checksums
b23da84cc46a2392d83b8cea0662a7f023f938afe662540c49b85babc2fbc853
BLAKE2b-256 checksum
How to use checksums
9d785c15dd8e126d950a0512286d9842803544eaf0688d303ff699dc2ffaa385
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp311-abi3-macosx_10_15_universal2.whl

Download URL awscrt-0.37.0-cp311-abi3-macosx_10_15_universal2.whl
Size 5.2 MB
Tags CPython 3.11 abi3 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
3f84e29cf9e0ac1d2c11b31cc1a7e1579f5da2baf7880f9e06527e0b20ab9f22
BLAKE2b-256 checksum
How to use checksums
98055d2fd88c2afd9efedbd5f15153e26f6c8c93452c05cb5cc642e07898ec47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp310-cp310-win_amd64.whl

Download URL awscrt-0.37.0-cp310-cp310-win_amd64.whl
Size 4.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7bd8effada7ef5a8403e591b339a95bc4db108d90544995439b05c9dc77f7189
BLAKE2b-256 checksum
How to use checksums
1a34bfe806edf59941b83f5e5be7229c0ba8d872247358e238ca859b80bcb244
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp310-cp310-win32.whl

Download URL awscrt-0.37.0-cp310-cp310-win32.whl
Size 4.2 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
9552bb62739eafd9ce01bdee66f1462c640e24fe2b373894dc2532d248bbf5f3
BLAKE2b-256 checksum
How to use checksums
e3633268783f4e13161f7077d5090bd30f6d8e0df8aaed3d5eb8ad8038b77dea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL awscrt-0.37.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 4.3 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
f6a0835f3772175b35af0e38ee2777db773dcf5cc9bd52579a461c884bb2f5ac
BLAKE2b-256 checksum
How to use checksums
de2c4f15af915c36f2895e944051f3963338855e4b2a1c53ad369aaedd0fa65f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL awscrt-0.37.0-cp310-cp310-musllinux_1_1_aarch64.whl
Size 4.1 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
5adedf198f6e848f68352283e21e1b2516cc1e1341522dfa34282cbfaa550c6c
BLAKE2b-256 checksum
How to use checksums
af4023119e0de1c2221c0ec4413c609696a8c583d41b9efa6f25764d147944a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.37.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.4 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3362a15a9eba424b8d936f4f7eb5620f19bfd95d33f430d34d7e5aa9871a287b
BLAKE2b-256 checksum
How to use checksums
e6b3bc7e9520177f18efee32339ff1d726e97af387b7906c5207d24d4d033bc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.37.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.1 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d88fe2bc67fed7eaacf3e90f6f2938852977ac14ed80a62e7e584ea07a3f783f
BLAKE2b-256 checksum
How to use checksums
b55cb4fc583d7754887cf7d9013182231b23eb9628d88fe89f2b53eb6a86fc98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp310-cp310-macosx_10_15_universal2.whl

Download URL awscrt-0.37.0-cp310-cp310-macosx_10_15_universal2.whl
Size 5.2 MB
Tags CPython 3.10 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
4bdd3d3dfff1d4865aaa07da7482c95dcb6daf13131894d2f8b7b0e61f722455
BLAKE2b-256 checksum
How to use checksums
0364f90278bb72a18f4a049fc568646f4d40589d3d43f12b508968b6999a6a12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-win_amd64.whl

Download URL awscrt-0.37.0-cp39-cp39-win_amd64.whl
Size 4.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
ad2d77d81ec13dc13905c6152e31fcb97aaf34ec41e914d933ccf29f08f40f8c
BLAKE2b-256 checksum
How to use checksums
306aae250a96a338b360f8741082688beeba0b45b926a5556cd73e88c59925c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-win32.whl

Download URL awscrt-0.37.0-cp39-cp39-win32.whl
Size 4.2 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
bada43c0cfb2641dba80c385c34105dd328ac771eac659bc05d7fb00f6dc9db9
BLAKE2b-256 checksum
How to use checksums
cc353127f18ec9963b0551970333089cc6f3e0ab8980ecfc7f98f1ad2063296b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL awscrt-0.37.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 4.3 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
50226fc17e023b1dfeb8765ec2b45459dd50f9dc7cb722e324b3d1d892170b70
BLAKE2b-256 checksum
How to use checksums
bff402236a3fb6d864d45b4ae52bad4ccc0b14d462bc0e147b71f3c27f787b52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL awscrt-0.37.0-cp39-cp39-musllinux_1_1_aarch64.whl
Size 4.1 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
f4f59a131884410debc7f239666ae87cd2196a5baa25e2bd714a76bd5a741851
BLAKE2b-256 checksum
How to use checksums
844aa20cb8d67120eff665d60ad62b1697b5a2ccaf8ee5b55cb4320a720d612a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL awscrt-0.37.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 3.4 MB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
822cb5a9c88036295ffd09e3b5c4b5f8c28dee2c045b808e17583ad8b737b13e
BLAKE2b-256 checksum
How to use checksums
1b9f18f37789009f51a809569304447f025d98b288cac664fc7587b35e042ca7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL awscrt-0.37.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 2.9 MB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
90f4c3c83a58146c1d40d3ad1282407f571f09f4b85d5717e840a44bb18ee0fe
BLAKE2b-256 checksum
How to use checksums
2a917443318722d2add2d136ba273ab7d07bb40add398f47e9fef24e8212b9e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.37.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.4 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5bd614ee43a605812a189a3a609a2609f589a402a05f33081cc68aa3a09213e3
BLAKE2b-256 checksum
How to use checksums
b64b3579a2246366230908f4507ae47533a169255a59a829b1aee5fd9012fc44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.37.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.1 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
43d31f81e6b84a032f593f06209bb6c95e1655173206419f1b0c890920bf7e60
BLAKE2b-256 checksum
How to use checksums
4095a8b28d16aaff56c1377ebaa9660334d01ea172a9c9114d9d7ae4d8087bfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp39-cp39-macosx_10_15_universal2.whl

Download URL awscrt-0.37.0-cp39-cp39-macosx_10_15_universal2.whl
Size 5.2 MB
Tags CPython 3.9 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e2d5e75166055f061c91f540fe23d490ee9cbbdf778a4e2dd366e95f3a248f81
BLAKE2b-256 checksum
How to use checksums
1688358f5a0bd0e71bf31706ab097e65158fbd14beb0968a78f40fa4303416e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp38-cp38-win_amd64.whl

Download URL awscrt-0.37.0-cp38-cp38-win_amd64.whl
Size 4.4 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
0541ae4ebf807e87c5bc5ff3abd2e2326f6c612309bb2e5b7420e2c63743b938
BLAKE2b-256 checksum
How to use checksums
27bd1cd5838cfe87d44fb35e290f8665354bfe43eb63151ef3ccf94a2d619b11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp38-cp38-win32.whl

Download URL awscrt-0.37.0-cp38-cp38-win32.whl
Size 4.2 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
2025f546c658c489d4da8c9e41c7e45d8f7860d70a264da06331d2dbaf3d8da2
BLAKE2b-256 checksum
How to use checksums
d33f0ec4015a0e2c79961333316ac3f827b6768a3c15ab217e738cf03ef05397
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL awscrt-0.37.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 4.3 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
0dde52d0a6615d8412a0a4ef0abaad719db5f95b4ebe2c7f2d38c77de62eded2
BLAKE2b-256 checksum
How to use checksums
613bd2fd98e4b8aee7318bbb2403d8b6d0956c52eef58ae02c1e02e9872f9ced
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL awscrt-0.37.0-cp38-cp38-musllinux_1_1_aarch64.whl
Size 4.1 MB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
0b41da11435b1b4aef983f1978b485a9c1f05ea26072078bba08ca6648a1ea47
BLAKE2b-256 checksum
How to use checksums
6c79d03c9e921e25d198c00db59f9ab299bc73c89726ee6e04e57ae0f2052692
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL awscrt-0.37.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 3.4 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
58d5d708959bcbb3f5c5103bc24e0cfaac4d0caff2b4187088e53d2638c44b5b
BLAKE2b-256 checksum
How to use checksums
282315efabb663143192f58b13b54439e7ce2fc4b9fc100f1cca1669ee40d88b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL awscrt-0.37.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 2.9 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
63ca02dc3e479c6f37710d2247cbe31a8dcc5fb646bce2221948ed07ea1bda7d
BLAKE2b-256 checksum
How to use checksums
88be26bf42c59a623255c9d67240a1e5d59c39de0242baf7a5d1a980d52d0673
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release files / awscrt-0.37.0-cp38-cp38-macosx_10_15_x86_64.whl

Download URL awscrt-0.37.0-cp38-cp38-macosx_10_15_x86_64.whl
Size 2.8 MB
Tags CPython 3.8 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ba6e0a3c0fbbe0f4314d84ae05a484f69303a997ce2cf9915c0bdfc62af442fd
BLAKE2b-256 checksum
How to use checksums
e083cb92029bed005ef6e5601da4c8a008829641cfc7f6f3c76b64c554dcb074
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.15

Release history Release notifications | RSS feed

This release

0.37.0 This release

48 release files

0.9.7

23 release files

0.9.4

19 release files

0.9.3

19 release files

0.8.0

36 release files

0.7.0

36 release files

0.6.0

36 release files

0.5.2

25 release files

0.5.1

25 release files

0.3.3

1 release file

0.3.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page