## AWS CRT Python
[![Version](https://img.shields.io/pypi/v/awscrt.svg?style=flat)](https://pypi.org/project/awscrt/)
Python 3 bindings for the AWS Common Runtime.
* [API documentation](https://awslabs.github.io/aws-crt-python)
* [Development guide](guides/dev/README.md) for contributors to aws-crt-python's source code.
## License
This library is licensed under the Apache 2.0 License.
## Minimum Requirements:
* Python 3.8+
## Installation
To install from pip:
```bash
python3 -m pip install awscrt
```
To install from Github:
```bash
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](https://github.com/aws/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](https://github.com/aws/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:
```sh
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/](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:
```sh
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.
Raw data
{
"_id": null,
"home_page": "https://github.com/awslabs/aws-crt-python",
"name": "awscrt",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Amazon Web Services, Inc",
"author_email": "aws-sdk-common-runtime@amazon.com",
"download_url": "https://files.pythonhosted.org/packages/5e/8a/26cc74510b9745a2983e8b425bc7a4352b08517fc67b1601a5316934a8dc/awscrt-0.23.6.tar.gz",
"platform": null,
"description": "## AWS CRT Python\n\n[![Version](https://img.shields.io/pypi/v/awscrt.svg?style=flat)](https://pypi.org/project/awscrt/)\n\nPython 3 bindings for the AWS Common Runtime.\n\n* [API documentation](https://awslabs.github.io/aws-crt-python)\n* [Development guide](guides/dev/README.md) for contributors to aws-crt-python's source code.\n\n## License\n\nThis library is licensed under the Apache 2.0 License.\n\n## Minimum Requirements:\n\n* Python 3.8+\n\n## Installation\n\nTo install from pip:\n\n```bash\npython3 -m pip install awscrt\n```\n\nTo install from Github:\n\n```bash\ngit clone https://github.com/awslabs/aws-crt-python.git\ncd aws-crt-python\ngit submodule update --init\npython3 -m pip install .\n```\n\nTo use from your Python application, declare `awscrt` as a dependency in your `setup.py` file.\n\n### OpenSSL and LibCrypto (Unix only)\n\naws-crt-python does not use OpenSSL for TLS.\nOn Apple and Windows devices, the OS's default TLS library is used.\nOn Unix devices, [s2n-tls](https://github.com/aws/s2n-tls) is used.\nBut s2n-tls uses libcrypto, the cryptography math library bundled with OpenSSL.\n\nTo simplify installation, aws-crt-python has its own copy of libcrypto.\nThis lets you install a wheel from PyPI without having OpenSSL installed.\nUnix wheels on PyPI come with libcrypto statically compiled in.\nCode to build libcrypto comes from [AWS-LC](https://github.com/aws/aws-lc).\nAWS-LC's code is included in the PyPI source package,\nand the git repository includes it as a submodule.\n\nIf you need aws-crt-python to use the libcrypto included on your system,\nset environment variable `AWS_CRT_BUILD_USE_SYSTEM_LIBCRYPTO=1` while building from source:\n\n```sh\nAWS_CRT_BUILD_USE_SYSTEM_LIBCRYPTO=1 python3 -m pip install --no-binary :all: --verbose awscrt\n```\n( `--no-binary :all:` ensures you do not use the precompiled wheel from PyPI)\n\nYou can ignore all this on Windows and Apple platforms, where aws-crt-python\nuses the OS's default libraries for TLS and cryptography math.\n\n### AWS_CRT_BUILD_USE_SYSTEM_LIBS ###\n\naws-crt-python depends on several C libraries that make up the AWS Common Runtime (libaws-c-common, libaws-c-s3, etc).\nBy default, these libraries are built along with aws-crt-python and statically compiled in\n(their source code is under [crt/](crt/)).\n\nTo skip building these dependencies, because they're already available on your system,\nset environment variable `AWS_CRT_BUILD_USE_SYSTEM_LIBS=1` while building from source:\n\n```sh\nAWS_CRT_BUILD_USE_SYSTEM_LIBS=1 python3 -m pip install .\n```\n\nIf 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`\n\n## Mac-Only TLS Behavior\n\nPlease 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:\n\n```\nstatic: certificate has an existing certificate-key pair that was previously imported into the Keychain. Using key from Keychain instead of the one provided.\n```\n\n## Crash Handler\nYou 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.\n",
"bugtrack_url": null,
"license": "Apache 2.0",
"summary": "A common runtime for AWS Python projects",
"version": "0.23.6",
"project_urls": {
"Homepage": "https://github.com/awslabs/aws-crt-python"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "be1b45aad0571d6373a11482e7f2a401eebdf29b26f0ca52568c792e462e3607",
"md5": "ec5f959121962138c1847fd0c98e8108",
"sha256": "31c2c1c1327d72dbbcb816378f4edc64679b092f18f707499c1421d259229286"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "ec5f959121962138c1847fd0c98e8108",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1469593,
"upload_time": "2024-12-19T00:05:25",
"upload_time_iso_8601": "2024-12-19T00:05:25.601333Z",
"url": "https://files.pythonhosted.org/packages/be/1b/45aad0571d6373a11482e7f2a401eebdf29b26f0ca52568c792e462e3607/awscrt-0.23.6-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8228f52d7f2f0fc135e93bc4748d59d89d53969cc07b3aae601f7f3cd9ed4fca",
"md5": "84dee12c2148da0393b7a02882ea40f3",
"sha256": "d80ae51abbe37b334bc773b7fc33069a00c7dccfbfb2661922432e1ff26f5206"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "84dee12c2148da0393b7a02882ea40f3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 8396298,
"upload_time": "2024-12-19T00:05:29",
"upload_time_iso_8601": "2024-12-19T00:05:29.425791Z",
"url": "https://files.pythonhosted.org/packages/82/28/f52d7f2f0fc135e93bc4748d59d89d53969cc07b3aae601f7f3cd9ed4fca/awscrt-0.23.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ead40219c38053400a79ae6dcea482b2500f69c8b259e6506ce8f603bc585d0",
"md5": "1ed8d8d3237b599015e55c254a74adea",
"sha256": "6e99ddbc337b5a2b371aac530adab9698183f63727070347799abcffe43f8b2c"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1ed8d8d3237b599015e55c254a74adea",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 8660758,
"upload_time": "2024-12-19T00:05:31",
"upload_time_iso_8601": "2024-12-19T00:05:31.614608Z",
"url": "https://files.pythonhosted.org/packages/0e/ad/40219c38053400a79ae6dcea482b2500f69c8b259e6506ce8f603bc585d0/awscrt-0.23.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f923acb5f4e81e6e5b5b7c226e712b2b608fd6abf83b5c93ff58ba48cc471839",
"md5": "2fe54a25a7899110733319172d074e02",
"sha256": "90c560002113d61996a370f00200bfd984dddc8e4c3e0926a17fc3dee0550d96"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2fe54a25a7899110733319172d074e02",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 8500156,
"upload_time": "2024-12-19T00:05:35",
"upload_time_iso_8601": "2024-12-19T00:05:35.262947Z",
"url": "https://files.pythonhosted.org/packages/f9/23/acb5f4e81e6e5b5b7c226e712b2b608fd6abf83b5c93ff58ba48cc471839/awscrt-0.23.6-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d11b9e9cb5dba1a91b6a9b1aea090746328dcd0d71ada9bff1cf5a5d5e942d5",
"md5": "dc604aab546affa6991bd2a9a087a1dc",
"sha256": "09ae4f0e760d3d99ff41728385781dadfc1530ee1cdbf89009530f022e157999"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "dc604aab546affa6991bd2a9a087a1dc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 8878149,
"upload_time": "2024-12-19T00:05:39",
"upload_time_iso_8601": "2024-12-19T00:05:39.006141Z",
"url": "https://files.pythonhosted.org/packages/7d/11/b9e9cb5dba1a91b6a9b1aea090746328dcd0d71ada9bff1cf5a5d5e942d5/awscrt-0.23.6-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c179df2e2a4a035e35152f7927b5b509867a2df448bdecade493d6ce1eae2931",
"md5": "ed99662aa1bffc077abdebf13086d0ae",
"sha256": "b1fa00db754d8167c05a176313924644170942e036c7778a9f19bb12c7e7a4f7"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "ed99662aa1bffc077abdebf13086d0ae",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2579011,
"upload_time": "2024-12-19T00:05:42",
"upload_time_iso_8601": "2024-12-19T00:05:42.673852Z",
"url": "https://files.pythonhosted.org/packages/c1/79/df2e2a4a035e35152f7927b5b509867a2df448bdecade493d6ce1eae2931/awscrt-0.23.6-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e25d3360df939d564c6d2a8323ddd76a97fd111c85e9b987bdc1092c79f54d8",
"md5": "3521673249c91f380674a79b97d457dc",
"sha256": "21db23dd50a195316978149b8122292518b7a1377cb4b8c776a0df23bbb57351"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "3521673249c91f380674a79b97d457dc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2630702,
"upload_time": "2024-12-19T00:05:45",
"upload_time_iso_8601": "2024-12-19T00:05:45.776981Z",
"url": "https://files.pythonhosted.org/packages/9e/25/d3360df939d564c6d2a8323ddd76a97fd111c85e9b987bdc1092c79f54d8/awscrt-0.23.6-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e93e6c4f64f7bb3d175bc28f4724a8f0d13b0def6441c419a09ea4ef03127937",
"md5": "e84a7bd858728024bb0d7b22393508b5",
"sha256": "a27f0838663c9772a3066cb49f701c68124b76bd4ed0eb6529a45ae4ecc4ea42"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp311-abi3-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "e84a7bd858728024bb0d7b22393508b5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1469916,
"upload_time": "2024-12-19T00:05:47",
"upload_time_iso_8601": "2024-12-19T00:05:47.591050Z",
"url": "https://files.pythonhosted.org/packages/e9/3e/6c4f64f7bb3d175bc28f4724a8f0d13b0def6441c419a09ea4ef03127937/awscrt-0.23.6-cp311-abi3-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e48f5287d6df36568a7f79ca6ab9f151652104fb1e69cdf2eff2690de4872592",
"md5": "ec6ec8d90a11631a69dd615fb2e95c06",
"sha256": "de91f9c32d49ab0516cf3780665ba5aac6e8aae22ec4d4581bdc7495b2535295"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ec6ec8d90a11631a69dd615fb2e95c06",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 8361548,
"upload_time": "2024-12-19T00:05:51",
"upload_time_iso_8601": "2024-12-19T00:05:51.614981Z",
"url": "https://files.pythonhosted.org/packages/e4/8f/5287d6df36568a7f79ca6ab9f151652104fb1e69cdf2eff2690de4872592/awscrt-0.23.6-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad7d0e11bd4fce2bd149d7e4744db819132dbea896fd2d1554e10f95fe268c2d",
"md5": "4ea1f7c2da72c1580f400eb184c388c4",
"sha256": "8ad36b1702ec3b9bb41d1329468ea8e0a4de79d940ee1c83b0fb4f02e3ee798d"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4ea1f7c2da72c1580f400eb184c388c4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 8626889,
"upload_time": "2024-12-19T00:05:54",
"upload_time_iso_8601": "2024-12-19T00:05:54.727852Z",
"url": "https://files.pythonhosted.org/packages/ad/7d/0e11bd4fce2bd149d7e4744db819132dbea896fd2d1554e10f95fe268c2d/awscrt-0.23.6-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbd548e9490f6a5cec55f7c0abb6917734e48fd924a2232c4b3cdc96443cd5b5",
"md5": "bbb898c6d1954086a5cfad093ac913ba",
"sha256": "7633e57704d2490b8df41cedb1d8fbd6e96c69591a0e0e0657b3179e5d7f97cf"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp311-abi3-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bbb898c6d1954086a5cfad093ac913ba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 8445287,
"upload_time": "2024-12-19T00:05:58",
"upload_time_iso_8601": "2024-12-19T00:05:58.495887Z",
"url": "https://files.pythonhosted.org/packages/fb/d5/48e9490f6a5cec55f7c0abb6917734e48fd924a2232c4b3cdc96443cd5b5/awscrt-0.23.6-cp311-abi3-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c04dc2f3076a0e249ca30dd64d4d532f616a7fbfe9222eb4035fc1d1c3e8dc55",
"md5": "19d74b52c95589b9209c5d6330eaab5a",
"sha256": "dd3014297433de4851d6e70be977e3c182e743cb57683efb310e6f88497bac4e"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp311-abi3-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "19d74b52c95589b9209c5d6330eaab5a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 8824690,
"upload_time": "2024-12-19T00:06:01",
"upload_time_iso_8601": "2024-12-19T00:06:01.061315Z",
"url": "https://files.pythonhosted.org/packages/c0/4d/c2f3076a0e249ca30dd64d4d532f616a7fbfe9222eb4035fc1d1c3e8dc55/awscrt-0.23.6-cp311-abi3-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a36f473914899f0e69d031325626d8a9347bd775f593ffa3e3426ae2d677a5e1",
"md5": "3f233ac8d8bb9b44482a77d3c1fe9850",
"sha256": "9b3d426dfa1a26fc7b0ee16bd4350533d7866c76739c957c589235c59df8fae3"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp311-abi3-win32.whl",
"has_sig": false,
"md5_digest": "3f233ac8d8bb9b44482a77d3c1fe9850",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2576095,
"upload_time": "2024-12-19T00:06:04",
"upload_time_iso_8601": "2024-12-19T00:06:04.315649Z",
"url": "https://files.pythonhosted.org/packages/a3/6f/473914899f0e69d031325626d8a9347bd775f593ffa3e3426ae2d677a5e1/awscrt-0.23.6-cp311-abi3-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57036bf559e837af95d5d2961070cda0f9adf2861adddfaa371b01ff1d663a66",
"md5": "e695154fe459ae32f78e7e658f972fa4",
"sha256": "eae36d0c9e3147237c0da8278db69597572d164930df3d310cfc0177a86eebeb"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp311-abi3-win_amd64.whl",
"has_sig": false,
"md5_digest": "e695154fe459ae32f78e7e658f972fa4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2628620,
"upload_time": "2024-12-19T00:06:08",
"upload_time_iso_8601": "2024-12-19T00:06:08.371879Z",
"url": "https://files.pythonhosted.org/packages/57/03/6bf559e837af95d5d2961070cda0f9adf2861adddfaa371b01ff1d663a66/awscrt-0.23.6-cp311-abi3-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d25e1c00c05db896d1942bb9190ece282f206ac8a74bbdc1b2cc19839da2e12e",
"md5": "831848f8428f9195388dc3713a0b5433",
"sha256": "08f56ba0f99c90f761f9b802d236e614e46f26dc1585d4f46ad6b993b3e307c9"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp313-abi3-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "831848f8428f9195388dc3713a0b5433",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1463121,
"upload_time": "2024-12-19T00:06:10",
"upload_time_iso_8601": "2024-12-19T00:06:10.966960Z",
"url": "https://files.pythonhosted.org/packages/d2/5e/1c00c05db896d1942bb9190ece282f206ac8a74bbdc1b2cc19839da2e12e/awscrt-0.23.6-cp313-abi3-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39c20bf8d048844a9f5c956e431a58b726ced024b7e657b469779970d8278905",
"md5": "a90dcbe7706c812100e51916c8febdb8",
"sha256": "b9b12d0f839abb1d606d0308c33ddb8c661c926a5664b15eb5267c285062bf2e"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a90dcbe7706c812100e51916c8febdb8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 8354681,
"upload_time": "2024-12-19T00:06:14",
"upload_time_iso_8601": "2024-12-19T00:06:14.077231Z",
"url": "https://files.pythonhosted.org/packages/39/c2/0bf8d048844a9f5c956e431a58b726ced024b7e657b469779970d8278905/awscrt-0.23.6-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "822e671fe955cc057cccee92185761f9e04b892763d94299d3277fffda87b7fc",
"md5": "12c6913424949fe4eac605df8b6dc981",
"sha256": "a74fdb562d3bece49ecaa059cf0f13ef30ca746a001293f59dd4b1a9d9db738b"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp313-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "12c6913424949fe4eac605df8b6dc981",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 8623334,
"upload_time": "2024-12-19T00:06:16",
"upload_time_iso_8601": "2024-12-19T00:06:16.920377Z",
"url": "https://files.pythonhosted.org/packages/82/2e/671fe955cc057cccee92185761f9e04b892763d94299d3277fffda87b7fc/awscrt-0.23.6-cp313-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35c2c7bbd76993e9d1e7c6308c90880495fca23df8af91e1312fa599f7279496",
"md5": "d1d586b145886cd27c99d7a61fcf2998",
"sha256": "835f6e51c90149eebc92f93ecfda5b525357311d9975dcb70a202f15cd3f77c8"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp313-abi3-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d1d586b145886cd27c99d7a61fcf2998",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 8441455,
"upload_time": "2024-12-19T00:06:19",
"upload_time_iso_8601": "2024-12-19T00:06:19.411681Z",
"url": "https://files.pythonhosted.org/packages/35/c2/c7bbd76993e9d1e7c6308c90880495fca23df8af91e1312fa599f7279496/awscrt-0.23.6-cp313-abi3-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57756d324bf519a9465d10b48a40d7d0a0b0504286d2e61efc2c94d7a6c341b4",
"md5": "7d903186fd13595cf190ccdae442f21e",
"sha256": "7439006320e22ff2640dcdc5a61c553e7107d74c310341fbeb852d6e8f52f76a"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp313-abi3-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "7d903186fd13595cf190ccdae442f21e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 8819618,
"upload_time": "2024-12-19T00:06:21",
"upload_time_iso_8601": "2024-12-19T00:06:21.917794Z",
"url": "https://files.pythonhosted.org/packages/57/75/6d324bf519a9465d10b48a40d7d0a0b0504286d2e61efc2c94d7a6c341b4/awscrt-0.23.6-cp313-abi3-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74532caf6c8917384d1631b2fc02db5daee87a77b6c8973ee5951d4b683ed410",
"md5": "ecde139b3bbc8665ff79e9df5c8db11c",
"sha256": "37b9f33d2ae7d4eca98cc3f0c947d454967caf0e6bc9a32accd6a552f520d72a"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp313-abi3-win32.whl",
"has_sig": false,
"md5_digest": "ecde139b3bbc8665ff79e9df5c8db11c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2574355,
"upload_time": "2024-12-19T00:06:23",
"upload_time_iso_8601": "2024-12-19T00:06:23.952858Z",
"url": "https://files.pythonhosted.org/packages/74/53/2caf6c8917384d1631b2fc02db5daee87a77b6c8973ee5951d4b683ed410/awscrt-0.23.6-cp313-abi3-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02c9f577fcf3235be81bc8f04a977fd46307a4b0c713e68e66fe6254587b85fa",
"md5": "2260e3da511ce9908596e66586293d44",
"sha256": "4ffad15d9bcbd9cb610a9a7850378d9564f6ceaa6b346086944f5d108c93f270"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp313-abi3-win_amd64.whl",
"has_sig": false,
"md5_digest": "2260e3da511ce9908596e66586293d44",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2626789,
"upload_time": "2024-12-19T00:06:25",
"upload_time_iso_8601": "2024-12-19T00:06:25.452359Z",
"url": "https://files.pythonhosted.org/packages/02/c9/f577fcf3235be81bc8f04a977fd46307a4b0c713e68e66fe6254587b85fa/awscrt-0.23.6-cp313-abi3-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df7865597a1b87a77134b11097683af1a278793c22bc9505eede8179b041664c",
"md5": "af205af464f50a27583a2cd88a390ff9",
"sha256": "ee0b46b90adcb9b7aac772771c15306ef94c291272e7a7b46a84df4d443abb33"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "af205af464f50a27583a2cd88a390ff9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 787199,
"upload_time": "2024-12-19T00:06:28",
"upload_time_iso_8601": "2024-12-19T00:06:28.159879Z",
"url": "https://files.pythonhosted.org/packages/df/78/65597a1b87a77134b11097683af1a278793c22bc9505eede8179b041664c/awscrt-0.23.6-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b734700a0fb1987ff10d42e2bc11b547cd6936f561933e304f3744fb7dc6cbff",
"md5": "a351536d3c1ea3819879b58b95d8af2f",
"sha256": "cb40f3b1ca61fec0172b04044904bac73483ee1f406278327daec49811debb4f"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a351536d3c1ea3819879b58b95d8af2f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 8404082,
"upload_time": "2024-12-19T00:06:31",
"upload_time_iso_8601": "2024-12-19T00:06:31.108359Z",
"url": "https://files.pythonhosted.org/packages/b7/34/700a0fb1987ff10d42e2bc11b547cd6936f561933e304f3744fb7dc6cbff/awscrt-0.23.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "925c943b08f22e9c5ce5f6a180d829f8d3260291b0546036a87ab1b20f8663f4",
"md5": "8bee7cd7c7de291abd66ce455e457caf",
"sha256": "99687622aea7e7b4d1007833bea6ebe9114f12feece9abe9d548c3fc0a6fd393"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8bee7cd7c7de291abd66ce455e457caf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 8668298,
"upload_time": "2024-12-19T00:06:33",
"upload_time_iso_8601": "2024-12-19T00:06:33.673258Z",
"url": "https://files.pythonhosted.org/packages/92/5c/943b08f22e9c5ce5f6a180d829f8d3260291b0546036a87ab1b20f8663f4/awscrt-0.23.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4da02625347d0335124dd76a229122744c30621f2383dd4fb76765d68acdfa3c",
"md5": "737cbcb53bfc22de967eede413744e63",
"sha256": "11083d69397fa80a9d73ffa1fff5d060051f6ba7637c81baa9e9c8b9b89bb01d"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "737cbcb53bfc22de967eede413744e63",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7505513,
"upload_time": "2024-12-19T00:06:38",
"upload_time_iso_8601": "2024-12-19T00:06:38.991536Z",
"url": "https://files.pythonhosted.org/packages/4d/a0/2625347d0335124dd76a229122744c30621f2383dd4fb76765d68acdfa3c/awscrt-0.23.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cb17b58156c5cb3cc4a637208afea3ae75db6e0471b3778ebecef51c5481713",
"md5": "4422b8165edd1f51d3a7331edb5be122",
"sha256": "6583284103f3057eb8a5aa199cbaf326bef3ad25c44069c5593463a31a04e834"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "4422b8165edd1f51d3a7331edb5be122",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7902214,
"upload_time": "2024-12-19T00:06:42",
"upload_time_iso_8601": "2024-12-19T00:06:42.407617Z",
"url": "https://files.pythonhosted.org/packages/2c/b1/7b58156c5cb3cc4a637208afea3ae75db6e0471b3778ebecef51c5481713/awscrt-0.23.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0779331a6f524b26c6efd2ceef1c83a449b0344367f69aacf0872dd0d1548bdb",
"md5": "9ee60f2359899ed3e5d448a43d63e5d6",
"sha256": "9050326ffeb4f368311b8124cfc4771dd4b7a807602daeb0f56803e265df1ca5"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9ee60f2359899ed3e5d448a43d63e5d6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 8509792,
"upload_time": "2024-12-19T00:06:44",
"upload_time_iso_8601": "2024-12-19T00:06:44.553517Z",
"url": "https://files.pythonhosted.org/packages/07/79/331a6f524b26c6efd2ceef1c83a449b0344367f69aacf0872dd0d1548bdb/awscrt-0.23.6-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25eda8ad883639ca4730681944e213a18db8d70c96a46bb1914deb5324961cca",
"md5": "4750347d89040931f1c9ef9a8e770647",
"sha256": "12080a695efcfe752755d2806fc640bc4a2f44b824b89e9beb5e0737a2c78cb8"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4750347d89040931f1c9ef9a8e770647",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 8885073,
"upload_time": "2024-12-19T00:06:47",
"upload_time_iso_8601": "2024-12-19T00:06:47.164731Z",
"url": "https://files.pythonhosted.org/packages/25/ed/a8ad883639ca4730681944e213a18db8d70c96a46bb1914deb5324961cca/awscrt-0.23.6-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45f6a69b40c02a8a4a8d5ad2f03427dbcad121eaca7b143df5a5c5b53f638239",
"md5": "ea476371e0c2890b0a77fcde8692ddfd",
"sha256": "1d4d7d8db451c6605ea3620d9f90653145a4e17557cd305fd3d6c301cc2f2bb9"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "ea476371e0c2890b0a77fcde8692ddfd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2577276,
"upload_time": "2024-12-19T00:06:50",
"upload_time_iso_8601": "2024-12-19T00:06:50.553467Z",
"url": "https://files.pythonhosted.org/packages/45/f6/a69b40c02a8a4a8d5ad2f03427dbcad121eaca7b143df5a5c5b53f638239/awscrt-0.23.6-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f558c0ec155c39857b26e5571d3ba454abff8bed4c78f9552a78027070bc0fab",
"md5": "9f62402ec8bb84979687267f920952d1",
"sha256": "c7f7a473309f676ebe67caf8ce816b74519d0fad304e8fcf53820a95a19fb7f4"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "9f62402ec8bb84979687267f920952d1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2630244,
"upload_time": "2024-12-19T00:06:53",
"upload_time_iso_8601": "2024-12-19T00:06:53.873929Z",
"url": "https://files.pythonhosted.org/packages/f5/58/c0ec155c39857b26e5571d3ba454abff8bed4c78f9552a78027070bc0fab/awscrt-0.23.6-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c971908547b66b42b44a8fd69a8932ffd498de8045f39ae98ae198957427b376",
"md5": "b893071422da7aa2f347e9b935b26d09",
"sha256": "37641b52f93482d8ba48c4c52f8a678ec61aa12719e5e0fbe5b122ec976b0d53"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "b893071422da7aa2f347e9b935b26d09",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1469719,
"upload_time": "2024-12-19T00:06:56",
"upload_time_iso_8601": "2024-12-19T00:06:56.707510Z",
"url": "https://files.pythonhosted.org/packages/c9/71/908547b66b42b44a8fd69a8932ffd498de8045f39ae98ae198957427b376/awscrt-0.23.6-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6efdda0e6cbd591464d0974f0bd594ca57aeb8b924a85dae9b0c80cffcd4df5",
"md5": "f54c45861c35c304afdb1581371f02db",
"sha256": "6d5fe52e53d755b081af6adca99d11741c6f29329042c47523a47186cfffe86a"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f54c45861c35c304afdb1581371f02db",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 8394332,
"upload_time": "2024-12-19T00:06:58",
"upload_time_iso_8601": "2024-12-19T00:06:58.806208Z",
"url": "https://files.pythonhosted.org/packages/a6/ef/dda0e6cbd591464d0974f0bd594ca57aeb8b924a85dae9b0c80cffcd4df5/awscrt-0.23.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a69ca3ae6ea4c143d330f6b46378ae18d455e916de17f4346a12c06096dc73e7",
"md5": "f77af3abaf0eee30ebb193a0e699c88e",
"sha256": "35f700bac0816e68d6e2ad7e957b542d63bbce129827a0d975c6f6310308529c"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f77af3abaf0eee30ebb193a0e699c88e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 8658559,
"upload_time": "2024-12-19T00:07:01",
"upload_time_iso_8601": "2024-12-19T00:07:01.723476Z",
"url": "https://files.pythonhosted.org/packages/a6/9c/a3ae6ea4c143d330f6b46378ae18d455e916de17f4346a12c06096dc73e7/awscrt-0.23.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce41ef37dcd7e3f6276da861f0b819ec4dd45bda5824f1debba52721641eda29",
"md5": "e359aa4ee920b51670aa3be7c604e89b",
"sha256": "58f69e1919a0790708f0a7bcddaff3ea6c691802b35303d486f224774f041ede"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e359aa4ee920b51670aa3be7c604e89b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7495709,
"upload_time": "2024-12-19T00:07:04",
"upload_time_iso_8601": "2024-12-19T00:07:04.110916Z",
"url": "https://files.pythonhosted.org/packages/ce/41/ef37dcd7e3f6276da861f0b819ec4dd45bda5824f1debba52721641eda29/awscrt-0.23.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e619db189aa2fe72bc2f119850ff0d701506c96a44cd9e71787e43e9d5bcfce7",
"md5": "291792c3954a5b83c6d165556df9ba72",
"sha256": "e42e8a2690ec59724cdc74cbefd0dc7cbab6bdcdcc5857f1b0f4d38cb39a8bc3"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "291792c3954a5b83c6d165556df9ba72",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7893383,
"upload_time": "2024-12-19T00:07:07",
"upload_time_iso_8601": "2024-12-19T00:07:07.794893Z",
"url": "https://files.pythonhosted.org/packages/e6/19/db189aa2fe72bc2f119850ff0d701506c96a44cd9e71787e43e9d5bcfce7/awscrt-0.23.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7e0630813db4a6e799d04a40e3ecb6d7a360cb7fa6105b435effaf5f2aeaac3",
"md5": "3930633bd10b16df92856d8153091cbc",
"sha256": "1697892623af97a0f0c841ef78b133c2b7c5066d3349bfce90aa994c5f9060f1"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3930633bd10b16df92856d8153091cbc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 8496264,
"upload_time": "2024-12-19T00:07:11",
"upload_time_iso_8601": "2024-12-19T00:07:11.298266Z",
"url": "https://files.pythonhosted.org/packages/c7/e0/630813db4a6e799d04a40e3ecb6d7a360cb7fa6105b435effaf5f2aeaac3/awscrt-0.23.6-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "946db9e75568ccbef4d357281fed486e45ecccb22c17bd8e04dfecf6aaf2c0dc",
"md5": "cafbd66dd49d48aab50dde7df01ddf4f",
"sha256": "90349ecb3cefeee10347aa60601333ecb06b7b29db938f11533c375e71faa66f"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "cafbd66dd49d48aab50dde7df01ddf4f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 8873932,
"upload_time": "2024-12-19T00:07:13",
"upload_time_iso_8601": "2024-12-19T00:07:13.925192Z",
"url": "https://files.pythonhosted.org/packages/94/6d/b9e75568ccbef4d357281fed486e45ecccb22c17bd8e04dfecf6aaf2c0dc/awscrt-0.23.6-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2119b8a59dedbb78d2a0eed2ec54e001862c9f376790119dcd3e97c9e71eceae",
"md5": "1b7a4a6ae6238b57a657dec9b92263b8",
"sha256": "20e75ae8cc67501a102ed4ba6f558c4fd0e995f08ff65d1ddf7b7db2d9850b11"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "1b7a4a6ae6238b57a657dec9b92263b8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2577513,
"upload_time": "2024-12-19T00:07:17",
"upload_time_iso_8601": "2024-12-19T00:07:17.716379Z",
"url": "https://files.pythonhosted.org/packages/21/19/b8a59dedbb78d2a0eed2ec54e001862c9f376790119dcd3e97c9e71eceae/awscrt-0.23.6-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "457c7fcfbafbfc62b196a7f67a176831a20fb9469014715311a404418942998b",
"md5": "1347be3f9e7d457aed21bdf8b5436926",
"sha256": "bbe57efeff7674db6f57dbfcae74f81ae17530f018c929fb70c98bc5eda436f0"
},
"downloads": -1,
"filename": "awscrt-0.23.6-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "1347be3f9e7d457aed21bdf8b5436926",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2630033,
"upload_time": "2024-12-19T00:07:20",
"upload_time_iso_8601": "2024-12-19T00:07:20.555702Z",
"url": "https://files.pythonhosted.org/packages/45/7c/7fcfbafbfc62b196a7f67a176831a20fb9469014715311a404418942998b/awscrt-0.23.6-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e8a26cc74510b9745a2983e8b425bc7a4352b08517fc67b1601a5316934a8dc",
"md5": "5a9393a603c63059fb21f46efdf6f246",
"sha256": "14c4f81344ec79771c9aa93800594296ee7eaa49db0fb9fd15ab662a21fadf8a"
},
"downloads": -1,
"filename": "awscrt-0.23.6.tar.gz",
"has_sig": false,
"md5_digest": "5a9393a603c63059fb21f46efdf6f246",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 72529450,
"upload_time": "2024-12-19T00:07:27",
"upload_time_iso_8601": "2024-12-19T00:07:27.306208Z",
"url": "https://files.pythonhosted.org/packages/5e/8a/26cc74510b9745a2983e8b425bc7a4352b08517fc67b1601a5316934a8dc/awscrt-0.23.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-19 00:07:27",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "awslabs",
"github_project": "aws-crt-python",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "awscrt"
}