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 .

To use from your Python application, declare awscrt as a dependency in your setup.py file.

OpenSSL and LibCrypto (Unix only)

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)

You can ignore all this on Windows and Apple platforms, where aws-crt-python uses the OS's default libraries for TLS and cryptography math.

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

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.

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.

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

Uploaded Source

Built Distributions

awscrt-0.23.6-cp313-abi3-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13+ Windows x86-64

awscrt-0.23.6-cp313-abi3-win32.whl (2.6 MB view details)

Uploaded CPython 3.13+ Windows x86

awscrt-0.23.6-cp313-abi3-musllinux_1_1_x86_64.whl (8.8 MB view details)

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

awscrt-0.23.6-cp313-abi3-musllinux_1_1_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.13+ musllinux: musl 1.1+ ARM64

awscrt-0.23.6-cp313-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

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

awscrt-0.23.6-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.13+ manylinux: glibc 2.17+ ARM64

awscrt-0.23.6-cp313-abi3-macosx_10_13_universal2.whl (1.5 MB view details)

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

awscrt-0.23.6-cp311-abi3-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11+ Windows x86-64

awscrt-0.23.6-cp311-abi3-win32.whl (2.6 MB view details)

Uploaded CPython 3.11+ Windows x86

awscrt-0.23.6-cp311-abi3-musllinux_1_1_x86_64.whl (8.8 MB view details)

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

awscrt-0.23.6-cp311-abi3-musllinux_1_1_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.11+ musllinux: musl 1.1+ ARM64

awscrt-0.23.6-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

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

awscrt-0.23.6-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.11+ manylinux: glibc 2.17+ ARM64

awscrt-0.23.6-cp311-abi3-macosx_10_9_universal2.whl (1.5 MB view details)

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

awscrt-0.23.6-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

awscrt-0.23.6-cp310-cp310-win32.whl (2.6 MB view details)

Uploaded CPython 3.10 Windows x86

awscrt-0.23.6-cp310-cp310-musllinux_1_1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

awscrt-0.23.6-cp310-cp310-musllinux_1_1_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

awscrt-0.23.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

awscrt-0.23.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

awscrt-0.23.6-cp310-cp310-macosx_10_9_universal2.whl (1.5 MB view details)

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

awscrt-0.23.6-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

awscrt-0.23.6-cp39-cp39-win32.whl (2.6 MB view details)

Uploaded CPython 3.9 Windows x86

awscrt-0.23.6-cp39-cp39-musllinux_1_1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

awscrt-0.23.6-cp39-cp39-musllinux_1_1_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

awscrt-0.23.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

awscrt-0.23.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

awscrt-0.23.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

awscrt-0.23.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (7.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

awscrt-0.23.6-cp39-cp39-macosx_10_9_universal2.whl (1.5 MB view details)

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

awscrt-0.23.6-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

awscrt-0.23.6-cp38-cp38-win32.whl (2.6 MB view details)

Uploaded CPython 3.8 Windows x86

awscrt-0.23.6-cp38-cp38-musllinux_1_1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

awscrt-0.23.6-cp38-cp38-musllinux_1_1_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

awscrt-0.23.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

awscrt-0.23.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

awscrt-0.23.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

awscrt-0.23.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (7.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

awscrt-0.23.6-cp38-cp38-macosx_10_9_x86_64.whl (787.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awscrt-0.23.6.tar.gz
  • Upload date:
  • Size: 72.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6.tar.gz
Algorithm Hash digest
SHA256 14c4f81344ec79771c9aa93800594296ee7eaa49db0fb9fd15ab662a21fadf8a
MD5 5a9393a603c63059fb21f46efdf6f246
BLAKE2b-256 5e8a26cc74510b9745a2983e8b425bc7a4352b08517fc67b1601a5316934a8dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp313-abi3-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp313-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4ffad15d9bcbd9cb610a9a7850378d9564f6ceaa6b346086944f5d108c93f270
MD5 2260e3da511ce9908596e66586293d44
BLAKE2b-256 02c9f577fcf3235be81bc8f04a977fd46307a4b0c713e68e66fe6254587b85fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp313-abi3-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 37b9f33d2ae7d4eca98cc3f0c947d454967caf0e6bc9a32accd6a552f520d72a
MD5 ecde139b3bbc8665ff79e9df5c8db11c
BLAKE2b-256 74532caf6c8917384d1631b2fc02db5daee87a77b6c8973ee5951d4b683ed410

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp313-abi3-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.13+, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp313-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7439006320e22ff2640dcdc5a61c553e7107d74c310341fbeb852d6e8f52f76a
MD5 7d903186fd13595cf190ccdae442f21e
BLAKE2b-256 57756d324bf519a9465d10b48a40d7d0a0b0504286d2e61efc2c94d7a6c341b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp313-abi3-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.13+, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp313-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 835f6e51c90149eebc92f93ecfda5b525357311d9975dcb70a202f15cd3f77c8
MD5 d1d586b145886cd27c99d7a61fcf2998
BLAKE2b-256 35c2c7bbd76993e9d1e7c6308c90880495fca23df8af91e1312fa599f7279496

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp313-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.13+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp313-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a74fdb562d3bece49ecaa059cf0f13ef30ca746a001293f59dd4b1a9d9db738b
MD5 12c6913424949fe4eac605df8b6dc981
BLAKE2b-256 822e671fe955cc057cccee92185761f9e04b892763d94299d3277fffda87b7fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.13+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9b12d0f839abb1d606d0308c33ddb8c661c926a5664b15eb5267c285062bf2e
MD5 a90dcbe7706c812100e51916c8febdb8
BLAKE2b-256 39c20bf8d048844a9f5c956e431a58b726ced024b7e657b469779970d8278905

See more details on using hashes here.

File details

Details for the file awscrt-0.23.6-cp313-abi3-macosx_10_13_universal2.whl.

File metadata

  • Download URL: awscrt-0.23.6-cp313-abi3-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13+, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp313-abi3-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 08f56ba0f99c90f761f9b802d236e614e46f26dc1585d4f46ad6b993b3e307c9
MD5 831848f8428f9195388dc3713a0b5433
BLAKE2b-256 d25e1c00c05db896d1942bb9190ece282f206ac8a74bbdc1b2cc19839da2e12e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 eae36d0c9e3147237c0da8278db69597572d164930df3d310cfc0177a86eebeb
MD5 e695154fe459ae32f78e7e658f972fa4
BLAKE2b-256 57036bf559e837af95d5d2961070cda0f9adf2861adddfaa371b01ff1d663a66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp311-abi3-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 9b3d426dfa1a26fc7b0ee16bd4350533d7866c76739c957c589235c59df8fae3
MD5 3f233ac8d8bb9b44482a77d3c1fe9850
BLAKE2b-256 a36f473914899f0e69d031325626d8a9347bd775f593ffa3e3426ae2d677a5e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp311-abi3-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.11+, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dd3014297433de4851d6e70be977e3c182e743cb57683efb310e6f88497bac4e
MD5 19d74b52c95589b9209c5d6330eaab5a
BLAKE2b-256 c04dc2f3076a0e249ca30dd64d4d532f616a7fbfe9222eb4035fc1d1c3e8dc55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp311-abi3-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.11+, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7633e57704d2490b8df41cedb1d8fbd6e96c69591a0e0e0657b3179e5d7f97cf
MD5 bbb898c6d1954086a5cfad093ac913ba
BLAKE2b-256 fbd548e9490f6a5cec55f7c0abb6917734e48fd924a2232c4b3cdc96443cd5b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ad36b1702ec3b9bb41d1329468ea8e0a4de79d940ee1c83b0fb4f02e3ee798d
MD5 4ea1f7c2da72c1580f400eb184c388c4
BLAKE2b-256 ad7d0e11bd4fce2bd149d7e4744db819132dbea896fd2d1554e10f95fe268c2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.11+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de91f9c32d49ab0516cf3780665ba5aac6e8aae22ec4d4581bdc7495b2535295
MD5 ec6ec8d90a11631a69dd615fb2e95c06
BLAKE2b-256 e48f5287d6df36568a7f79ca6ab9f151652104fb1e69cdf2eff2690de4872592

See more details on using hashes here.

File details

Details for the file awscrt-0.23.6-cp311-abi3-macosx_10_9_universal2.whl.

File metadata

  • Download URL: awscrt-0.23.6-cp311-abi3-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11+, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp311-abi3-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a27f0838663c9772a3066cb49f701c68124b76bd4ed0eb6529a45ae4ecc4ea42
MD5 e84a7bd858728024bb0d7b22393508b5
BLAKE2b-256 e93e6c4f64f7bb3d175bc28f4724a8f0d13b0def6441c419a09ea4ef03127937

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21db23dd50a195316978149b8122292518b7a1377cb4b8c776a0df23bbb57351
MD5 3521673249c91f380674a79b97d457dc
BLAKE2b-256 9e25d3360df939d564c6d2a8323ddd76a97fd111c85e9b987bdc1092c79f54d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b1fa00db754d8167c05a176313924644170942e036c7778a9f19bb12c7e7a4f7
MD5 ed99662aa1bffc077abdebf13086d0ae
BLAKE2b-256 c179df2e2a4a035e35152f7927b5b509867a2df448bdecade493d6ce1eae2931

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 09ae4f0e760d3d99ff41728385781dadfc1530ee1cdbf89009530f022e157999
MD5 dc604aab546affa6991bd2a9a087a1dc
BLAKE2b-256 7d11b9e9cb5dba1a91b6a9b1aea090746328dcd0d71ada9bff1cf5a5d5e942d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 90c560002113d61996a370f00200bfd984dddc8e4c3e0926a17fc3dee0550d96
MD5 2fe54a25a7899110733319172d074e02
BLAKE2b-256 f923acb5f4e81e6e5b5b7c226e712b2b608fd6abf83b5c93ff58ba48cc471839

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e99ddbc337b5a2b371aac530adab9698183f63727070347799abcffe43f8b2c
MD5 1ed8d8d3237b599015e55c254a74adea
BLAKE2b-256 0ead40219c38053400a79ae6dcea482b2500f69c8b259e6506ce8f603bc585d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d80ae51abbe37b334bc773b7fc33069a00c7dccfbfb2661922432e1ff26f5206
MD5 84dee12c2148da0393b7a02882ea40f3
BLAKE2b-256 8228f52d7f2f0fc135e93bc4748d59d89d53969cc07b3aae601f7f3cd9ed4fca

See more details on using hashes here.

File details

Details for the file awscrt-0.23.6-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: awscrt-0.23.6-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 31c2c1c1327d72dbbcb816378f4edc64679b092f18f707499c1421d259229286
MD5 ec5f959121962138c1847fd0c98e8108
BLAKE2b-256 be1b45aad0571d6373a11482e7f2a401eebdf29b26f0ca52568c792e462e3607

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bbe57efeff7674db6f57dbfcae74f81ae17530f018c929fb70c98bc5eda436f0
MD5 1347be3f9e7d457aed21bdf8b5436926
BLAKE2b-256 457c7fcfbafbfc62b196a7f67a176831a20fb9469014715311a404418942998b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 20e75ae8cc67501a102ed4ba6f558c4fd0e995f08ff65d1ddf7b7db2d9850b11
MD5 1b7a4a6ae6238b57a657dec9b92263b8
BLAKE2b-256 2119b8a59dedbb78d2a0eed2ec54e001862c9f376790119dcd3e97c9e71eceae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 90349ecb3cefeee10347aa60601333ecb06b7b29db938f11533c375e71faa66f
MD5 cafbd66dd49d48aab50dde7df01ddf4f
BLAKE2b-256 946db9e75568ccbef4d357281fed486e45ecccb22c17bd8e04dfecf6aaf2c0dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1697892623af97a0f0c841ef78b133c2b7c5066d3349bfce90aa994c5f9060f1
MD5 3930633bd10b16df92856d8153091cbc
BLAKE2b-256 c7e0630813db4a6e799d04a40e3ecb6d7a360cb7fa6105b435effaf5f2aeaac3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35f700bac0816e68d6e2ad7e957b542d63bbce129827a0d975c6f6310308529c
MD5 f77af3abaf0eee30ebb193a0e699c88e
BLAKE2b-256 a69ca3ae6ea4c143d330f6b46378ae18d455e916de17f4346a12c06096dc73e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d5fe52e53d755b081af6adca99d11741c6f29329042c47523a47186cfffe86a
MD5 f54c45861c35c304afdb1581371f02db
BLAKE2b-256 a6efdda0e6cbd591464d0974f0bd594ca57aeb8b924a85dae9b0c80cffcd4df5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e42e8a2690ec59724cdc74cbefd0dc7cbab6bdcdcc5857f1b0f4d38cb39a8bc3
MD5 291792c3954a5b83c6d165556df9ba72
BLAKE2b-256 e619db189aa2fe72bc2f119850ff0d701506c96a44cd9e71787e43e9d5bcfce7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58f69e1919a0790708f0a7bcddaff3ea6c691802b35303d486f224774f041ede
MD5 e359aa4ee920b51670aa3be7c604e89b
BLAKE2b-256 ce41ef37dcd7e3f6276da861f0b819ec4dd45bda5824f1debba52721641eda29

See more details on using hashes here.

File details

Details for the file awscrt-0.23.6-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: awscrt-0.23.6-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 37641b52f93482d8ba48c4c52f8a678ec61aa12719e5e0fbe5b122ec976b0d53
MD5 b893071422da7aa2f347e9b935b26d09
BLAKE2b-256 c971908547b66b42b44a8fd69a8932ffd498de8045f39ae98ae198957427b376

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c7f7a473309f676ebe67caf8ce816b74519d0fad304e8fcf53820a95a19fb7f4
MD5 9f62402ec8bb84979687267f920952d1
BLAKE2b-256 f558c0ec155c39857b26e5571d3ba454abff8bed4c78f9552a78027070bc0fab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1d4d7d8db451c6605ea3620d9f90653145a4e17557cd305fd3d6c301cc2f2bb9
MD5 ea476371e0c2890b0a77fcde8692ddfd
BLAKE2b-256 45f6a69b40c02a8a4a8d5ad2f03427dbcad121eaca7b143df5a5c5b53f638239

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 12080a695efcfe752755d2806fc640bc4a2f44b824b89e9beb5e0737a2c78cb8
MD5 4750347d89040931f1c9ef9a8e770647
BLAKE2b-256 25eda8ad883639ca4730681944e213a18db8d70c96a46bb1914deb5324961cca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9050326ffeb4f368311b8124cfc4771dd4b7a807602daeb0f56803e265df1ca5
MD5 9ee60f2359899ed3e5d448a43d63e5d6
BLAKE2b-256 0779331a6f524b26c6efd2ceef1c83a449b0344367f69aacf0872dd0d1548bdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99687622aea7e7b4d1007833bea6ebe9114f12feece9abe9d548c3fc0a6fd393
MD5 8bee7cd7c7de291abd66ce455e457caf
BLAKE2b-256 925c943b08f22e9c5ce5f6a180d829f8d3260291b0546036a87ab1b20f8663f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb40f3b1ca61fec0172b04044904bac73483ee1f406278327daec49811debb4f
MD5 a351536d3c1ea3819879b58b95d8af2f
BLAKE2b-256 b734700a0fb1987ff10d42e2bc11b547cd6936f561933e304f3744fb7dc6cbff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6583284103f3057eb8a5aa199cbaf326bef3ad25c44069c5593463a31a04e834
MD5 4422b8165edd1f51d3a7331edb5be122
BLAKE2b-256 2cb17b58156c5cb3cc4a637208afea3ae75db6e0471b3778ebecef51c5481713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 11083d69397fa80a9d73ffa1fff5d060051f6ba7637c81baa9e9c8b9b89bb01d
MD5 737cbcb53bfc22de967eede413744e63
BLAKE2b-256 4da02625347d0335124dd76a229122744c30621f2383dd4fb76765d68acdfa3c

See more details on using hashes here.

File details

Details for the file awscrt-0.23.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awscrt-0.23.6-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 787.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.9

File hashes

Hashes for awscrt-0.23.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee0b46b90adcb9b7aac772771c15306ef94c291272e7a7b46a84df4d443abb33
MD5 af205af464f50a27583a2cd88a390ff9
BLAKE2b-256 df7865597a1b87a77134b11097683af1a278793c22bc9505eede8179b041664c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page