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

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.36.4
File Size Uploaded
awscrt-0.36.4.tar.gz 37.8 MB Details

Built distributions (wheels)

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

Total release size:237.2 MB

Release files / awscrt-0.36.4.tar.gz

Download URL awscrt-0.36.4.tar.gz
Size 37.8 MB
Tags Source
SHA-256 checksum
How to use checksums
5b6a53f10e8dd060e7c0c91d063831137239c234877a6d1f03b277dfbac0c507
BLAKE2b-256 checksum
How to use checksums
bb022a724318c05aa0e6e74e2537e3a841097ad2aeb737bdc27c6a74ce72358f
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.36.4-cp314-cp314t-win_amd64.whl

Download URL awscrt-0.36.4-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
db321ec7edca6af05c656798885da8d28f925394e9c4bd096228a88d6a237e93
BLAKE2b-256 checksum
How to use checksums
4330f5c83867e448f91117e886b57eaa073a0d1395cb6dcb31c116bd9015da1b
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.36.4-cp314-cp314t-win32.whl

Download URL awscrt-0.36.4-cp314-cp314t-win32.whl
Size 4.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
85779c03e54fbf6b8312ccf0cc92b569af8039297e30c88def33316b08feba0d
BLAKE2b-256 checksum
How to use checksums
7e100e5069233cad2fe5aa53b34df093aaf2b402068ff7dec28a5d219c6aa395
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.36.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.36.4-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
7f444666795fb41bbcf23387fdcb03b28b0c00baad80f60d19a3e1b3a719eba0
BLAKE2b-256 checksum
How to use checksums
c2768d8d967d267bd57b6ab91762a7e3218bdd4c00d7d16b38c89c4f5206c837
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.36.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.36.4-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
47770f5724b19dae3ac934877ba03c2434a1a979cb95ace3ada6add3b5e93f60
BLAKE2b-256 checksum
How to use checksums
f8c5913634b2dfa079f85aca03f73247f580d2a5cdffdce3496939e7c950b5e9
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.36.4-cp314-cp314t-macosx_10_15_universal2.whl

Download URL awscrt-0.36.4-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
2b589f2556edf70ef5d1f740f0f57e8afa2f093358ee50c44171227177838a0c
BLAKE2b-256 checksum
How to use checksums
962ea7be04770bc962fa5cb290a5149ee877b37d516aac6c3a75fedb9d3a2ccc
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.36.4-cp313-cp313t-win_amd64.whl

Download URL awscrt-0.36.4-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
ca0d97b1066a09c6ef216622b7867e40c608a3adb45395dd9a84dde8d6d70096
BLAKE2b-256 checksum
How to use checksums
29f38c292bf003f36852b39526e507543615b7ec2080d4f13843ee8f30878a18
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.36.4-cp313-cp313t-win32.whl

Download URL awscrt-0.36.4-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
bc2ae0facbe3d4c1c871892dfa1a86d702659ca298af610305885cfba35cb248
BLAKE2b-256 checksum
How to use checksums
1a575875440705d99f119dd6ba7a99e99063cc9413f988d298a01b1d45211650
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.36.4-cp313-cp313t-musllinux_1_1_x86_64.whl

Download URL awscrt-0.36.4-cp313-cp313t-musllinux_1_1_x86_64.whl
Size 4.3 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
3e0e590237970d4cadb4e58f1aa3e4bb1d3a84a534b01e2d4b1c4a98b9bccc4b
BLAKE2b-256 checksum
How to use checksums
2798884853c2f269bfea121f3e71fcca40b408048f993a8762eda5f4766a6089
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.36.4-cp313-cp313t-musllinux_1_1_aarch64.whl

Download URL awscrt-0.36.4-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
fa81db08ab7c16e7694b85a2d14445ccbe31bcb556166731bbd3e9ddff4432d2
BLAKE2b-256 checksum
How to use checksums
5e89adb100cab381c95d963279e4f113cab35130077b8964eefb3e969f68ab5c
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.36.4-cp313-cp313t-macosx_10_15_universal2.whl

Download URL awscrt-0.36.4-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
402d63b62cc486adf34d877eb9e14a98e60ac88e6a14059aecd2f81d13c57a1f
BLAKE2b-256 checksum
How to use checksums
0a014bb6c7307eada20935eeac3962b54150324d17afbe6492eb9353b554c446
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.36.4-cp313-abi3-win_amd64.whl

Download URL awscrt-0.36.4-cp313-abi3-win_amd64.whl
Size 4.3 MB
Tags CPython 3.13 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
d666accfd3a0fe96980b35f56357073217073c2c3ff655dc48b253887fcedc2f
BLAKE2b-256 checksum
How to use checksums
91c52d95858c1dee078e06f773289fa59ae5e899199aac068e8dbbe503286e70
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.36.4-cp313-abi3-win32.whl

Download URL awscrt-0.36.4-cp313-abi3-win32.whl
Size 4.2 MB
Tags CPython 3.13 Windows x86-32 abi3
SHA-256 checksum
How to use checksums
72484afbad5a3708f233c28c4ad17a16661102cb75633005515e1ff2232ac03f
BLAKE2b-256 checksum
How to use checksums
ad83d194523ff0890cd6fc2464836f3bac8f104199c6ed14afe953c2b6dbe117
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.36.4-cp313-abi3-musllinux_1_1_x86_64.whl

Download URL awscrt-0.36.4-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
2cb372a40cb14918a952a1caedb207c179096d3baab58fa36d0b8b6d3a0ea3bf
BLAKE2b-256 checksum
How to use checksums
8a1afdf9f4f1d706a91db53124391ab816fe713ce4c938cf5362a7c4199ec5bc
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.36.4-cp313-abi3-musllinux_1_1_aarch64.whl

Download URL awscrt-0.36.4-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
a76e45ba09f8c13f330c0827eacf6eea1d2dd315c7ba6359ebd5dd79b7cd0796
BLAKE2b-256 checksum
How to use checksums
1f235d9b6f5a3534870394df9e9ccf0c6c64680ffe1793f9965dda9d07274512
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.36.4-cp313-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.36.4-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
4004cc6bf45281e4a7144c36a202d934f465f64a785c4df5a24919d36b05e158
BLAKE2b-256 checksum
How to use checksums
9dcb0270ba4c74ba5c9bc7f474e3de019a7e4ad2cd607a8f233252de7fbc8349
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.36.4-cp313-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.36.4-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
fecb18c0b6baf5177fa766f24771cceb748ac6e5b0f2dfe4539d602c70b57365
BLAKE2b-256 checksum
How to use checksums
1f0abc2d57e4e2671fbaf1bfd9da2b0e09814c51300753cd9665d37190304400
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.36.4-cp313-abi3-macosx_10_15_universal2.whl

Download URL awscrt-0.36.4-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
7209fa21e1e0d61736f2ddff7a6cf08c781a18b8dc7a0ca6a1275cd185191a77
BLAKE2b-256 checksum
How to use checksums
b7f7864ed6016cdf7057246c9ac900a0e569e3aacb92fc8ae206e1324fb7e4dc
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.36.4-cp311-abi3-win_amd64.whl

Download URL awscrt-0.36.4-cp311-abi3-win_amd64.whl
Size 4.4 MB
Tags CPython 3.11 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
866d5c7de42371721d2ce20f5fad017ddf5fb03a359f864f406eac9c601cf80c
BLAKE2b-256 checksum
How to use checksums
c0a319b9c048622ab4ce967518cbf4322a0224b84f4dd27b81ded5e80d17d94f
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.36.4-cp311-abi3-win32.whl

Download URL awscrt-0.36.4-cp311-abi3-win32.whl
Size 4.2 MB
Tags CPython 3.11 Windows x86-32 abi3
SHA-256 checksum
How to use checksums
b8208ed97a4b4763c945d3698834197d3e57a6e0226b8f04e40d16732c17677f
BLAKE2b-256 checksum
How to use checksums
9bf1987f32aefbac7545b34ee24c6fdbd6564784b78e93c2cb407e0e42ef397e
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.36.4-cp311-abi3-musllinux_1_1_x86_64.whl

Download URL awscrt-0.36.4-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
fd5215f720316272f3d7a5f2400199fc44d840f6b8ea9e65d9311275417c30a8
BLAKE2b-256 checksum
How to use checksums
44d3e02c3b51ec10d41e555d7f575d9b00e58056fab59beae580e18b0d74b890
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.36.4-cp311-abi3-musllinux_1_1_aarch64.whl

Download URL awscrt-0.36.4-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
bd305b27656aca196f52128838feadc1f4303c5e6cd1497a1c052dea6f32e385
BLAKE2b-256 checksum
How to use checksums
7b259168ad8c86cd4e29edd05dd10b6470e5c94c949b0d379d59a4fd6e9fff65
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.36.4-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.36.4-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
226f6ca82f8f2b022453f39e5601e547dc35ef79325f423b789683475dd9aa7d
BLAKE2b-256 checksum
How to use checksums
f159e7b57e9edda5c3658a91ea760976cc1ab331398d142a630a87a9ada95cd3
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.36.4-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.36.4-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
89d43162bde3a011280e9381bf99d87adc81f4600841dc0be7ddadde46b09a16
BLAKE2b-256 checksum
How to use checksums
f88c9f0acea51230d45973e3a3f200b15d904ee230850be7f94e9c090a3db4a8
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.36.4-cp311-abi3-macosx_10_15_universal2.whl

Download URL awscrt-0.36.4-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
0989b1edacdf369aee118e456f3623e88b7972f155fbd81d03793275bdd09c19
BLAKE2b-256 checksum
How to use checksums
a30874e85574c4a76c6d640be60e539a3985561fff2034638f6f1d4699bb11a2
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.36.4-cp310-cp310-win_amd64.whl

Download URL awscrt-0.36.4-cp310-cp310-win_amd64.whl
Size 4.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
4e793588603927666f0c0901777ecb06c360ef6e04102d7ae2e998e4071851c5
BLAKE2b-256 checksum
How to use checksums
2f0523ef34995c23299801f79fb449a6ff1cad06ead692c9525d1daeca130035
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.36.4-cp310-cp310-win32.whl

Download URL awscrt-0.36.4-cp310-cp310-win32.whl
Size 4.2 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
9f507c86616c6d4b3c50513a51924fb9fb2c41854870ec41506cc8dd7452c70c
BLAKE2b-256 checksum
How to use checksums
ec995ad345a82102d7ca6f9888d26d2a2c85114ab3851f647f094ccdb6dd54c2
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.36.4-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL awscrt-0.36.4-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
95bb33fd141cbf259cc068e929ef6a58acb726405e328ebb1523f2606b0ff601
BLAKE2b-256 checksum
How to use checksums
4bf5efc5d45ba2bf220019e9d8f8dd5fbdc2fd1d399ec4d925bbd04f06b1c68a
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.36.4-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL awscrt-0.36.4-cp310-cp310-musllinux_1_1_aarch64.whl
Size 4.0 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
f02cb5d3542061f6b416a3c594a722c1d363403664de086339a9e4d2b85e0c52
BLAKE2b-256 checksum
How to use checksums
50ef65e10dd101520bb75298b4f78919ae3f5cc533d1c3dd8d27eff7306d7116
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.36.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.36.4-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
8238c7544316b9d1739d02cb4e26b1b0626eba0e0ecd02de331e89361327d3bf
BLAKE2b-256 checksum
How to use checksums
4a108b46b85358fff30e576ee95774fca775c27162a949b6efe086bed994edc7
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.36.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.36.4-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
451a602c9b69a6a58e362e21f2a4492f1a16bf659d308eea421c98cac08eacac
BLAKE2b-256 checksum
How to use checksums
7c3994469ee20b6932caa86c5aa26ec545987622ad9b80216565672692123f99
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.36.4-cp310-cp310-macosx_10_15_universal2.whl

Download URL awscrt-0.36.4-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
b36c8086755c3c01bebe4d2c02f08b1d72a55688066b67415b782b122e98c1a8
BLAKE2b-256 checksum
How to use checksums
db72d8ce8f14390bdafbc10b139d4707c52b01c51135d9b1b1d79d6d9b9926c7
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.36.4-cp39-cp39-win_amd64.whl

Download URL awscrt-0.36.4-cp39-cp39-win_amd64.whl
Size 4.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
9eb5d7e66c00498fcdd62f153cb3d9f595c484d3c23ce4330f3393108690ab81
BLAKE2b-256 checksum
How to use checksums
8839a339aa980c7e71ac4e42313731dfd105e1864bf671eb8cbd15edac8526b6
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.36.4-cp39-cp39-win32.whl

Download URL awscrt-0.36.4-cp39-cp39-win32.whl
Size 4.2 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
27f283ec59e6006a418819b3eaf3fbe26dfa9562e2bde7e5b35d5b6085732794
BLAKE2b-256 checksum
How to use checksums
399c571999e9f2250e686efe6120d52077d478d45d86d4013f2bd5874fddd573
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.36.4-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL awscrt-0.36.4-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
590cca315d26f99c8808a5fdb03a578620e78719304d02f52f3cfe8486deb5ff
BLAKE2b-256 checksum
How to use checksums
083f2f2714e1d34320c9c1549fbe4a04afd3e044e3baf09d91618b3a84800c6f
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.36.4-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL awscrt-0.36.4-cp39-cp39-musllinux_1_1_aarch64.whl
Size 4.0 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
e2bd1821ea20e73901634ebcdcd43dffbb7b19eff26f05ce545143ad53a28ad0
BLAKE2b-256 checksum
How to use checksums
ff79b8b4c728c540e9e147a160263e46106fc16d5659b74c6ddf390dc6010392
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.36.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL awscrt-0.36.4-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
1d4cfc11fffe75405486e318d7adc0b87ab2b0a655f9fc068f558e4a25f89159
BLAKE2b-256 checksum
How to use checksums
23a6431e489c3ec04004e546ff741701dad9cb7bb8bfc48414cccba8461c2a8a
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.36.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL awscrt-0.36.4-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
eae77d6506087a4b621b39b07d96e39585b360a152b40618e79b44a235fcb5f6
BLAKE2b-256 checksum
How to use checksums
e5095ca8ec72e3d84e032713b4e3d72032b84df85e0bbb4c638e8b7c3d4ded21
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.36.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL awscrt-0.36.4-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
b97f83afe54c78fd7556c174e43c6ae0a3c00add23d519e6d2504cb16d5c2c0e
BLAKE2b-256 checksum
How to use checksums
e06178bc4db3b8a4f4d665fe37a01536aa78a5de4ce5e32821338389ef5ae734
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.36.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL awscrt-0.36.4-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
9da46dd6046acab99df4fb8980f0e761ca083c93b1e098ea1e6aea4dac019fef
BLAKE2b-256 checksum
How to use checksums
4db8f1a360276519d11ede2f1e277bb56de759a0ae0237d8af9db7435c14255c
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.36.4-cp39-cp39-macosx_10_15_universal2.whl

Download URL awscrt-0.36.4-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
b0b02823ef54b7e7193d05b2fd58a6450f33397c2c0978e5372cb7e5d152d5f1
BLAKE2b-256 checksum
How to use checksums
d42f6dada974ed354740b5bb890a97e46d4e5eba8c2fc808114d5c305905f977
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.36.4-cp38-cp38-win_amd64.whl

Download URL awscrt-0.36.4-cp38-cp38-win_amd64.whl
Size 4.4 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
76a5c535e6fe15fec30683b985fe0db4aca27c916df54a79dbc6ca61d0a7fa47
BLAKE2b-256 checksum
How to use checksums
81af218932929b17dd356f130a5f761493a5e215ac55cfff2a27fa89671a1504
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.36.4-cp38-cp38-win32.whl

Download URL awscrt-0.36.4-cp38-cp38-win32.whl
Size 4.2 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
97865750f489ce92e55d326589343a3f5bbe4612a84d1c39f131684ab4fec130
BLAKE2b-256 checksum
How to use checksums
e14f609925dec40c5164dd5d2b711da1b9daed5123e57276d455fee694ef9e92
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.36.4-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL awscrt-0.36.4-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
8b37068ff63b5c9edc4465da1b2ff41f8865a55d3ca80d61fd2fb187115a3dc0
BLAKE2b-256 checksum
How to use checksums
143c4404af337a3edc134dace0e727551a22ea9beb08ddc39c15d7066b5cfeba
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.36.4-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL awscrt-0.36.4-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
389bbd5b9bb4df2f7cd1cde89814d15a295b9a3e2829d3ea9b5f5bb05fbaa913
BLAKE2b-256 checksum
How to use checksums
4cefc4e036ecd7697de8483d1506b934a7afc6e951e187c65a9df9653ba2ddcb
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.36.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL awscrt-0.36.4-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
9075bcfc8a80c15a9e2912cd9335b44122a12d08c94f1070bc8d81004dba115b
BLAKE2b-256 checksum
How to use checksums
13911078216b5ac319a1ee1a92c5ff9dfabb26d2c8e0f1ee3543f7c75d859007
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.36.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL awscrt-0.36.4-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
7c113db128111d34c8eaf4a65442b66ac91ee5069a08dbdabb24650ae7d5256f
BLAKE2b-256 checksum
How to use checksums
48f1136f1324cf4559c9b349fdcbf9e6b17f82bae5529e47fa3abac4001775e1
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.36.4-cp38-cp38-macosx_10_15_x86_64.whl

Download URL awscrt-0.36.4-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
1ed37b77bf7d205071098e1ff8ccfe958a62b2e4bcfc3b70cb65d21c767ce469
BLAKE2b-256 checksum
How to use checksums
ec8dc988d8d615a9336992261c553e9eb379b66f880d9a701861ef39aaf427e7
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.36.4 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