Looking for new maintainers
===========================
https://github.com/saghul/pycares/issues/139
pycares: Python interface for c-ares
====================================
pycares is a Python module which provides an interface to c-ares.
`c-ares <https://c-ares.org>`_ is a C library that performs
DNS requests and name resolutions asynchronously.
Documentation
-------------
http://readthedocs.org/docs/pycares/
Bundled c-ares
--------------
pycares currently bundles c-ares as a submodule for ease of building. Using the system
provided c-ares is possible if the ``PYCARES_USE_SYSTEM_LIB`` environment variable is
set to ``1`` when building.
NOTE: Versions prior to 4.0.0 used to embed a modified c-ares with extended TTL support.
That is no longer the case and as a result only A and AAAA records will have TTL information.
Follow this PR in uppstream c-ares, looks like TTLs will be added: https://github.com/c-ares/c-ares/pull/393
Installation
------------
GNU/Linux, macOS, Windows, others:
::
pip install pycares
FreeBSD:
::
cd /usr/ports/dns/py-pycares && make install
IDNA 2008 support
^^^^^^^^^^^^^^^^^
If the ``idna`` package is installed, pycares will support IDNA 2008 encoding otherwise the builtin idna codec will be used,
which provides IDNA 2003 support.
You can force this at installation time as follows:
::
pip install pycares[idna]
Running the test suite
----------------------
From the top level directory, run: ``python -m unittest -v``
NOTE: Running the tests requires internet access and are somewhat environment sensitive because real DNS quesries
are made, there is no mocking. If you observe a failure that the CI cannot reproduce, please try to setup an
environment as close as the current CI.
Using it from the cli, a la dig
-------------------------------
This module can be used directly from the command line in a similar fashion to dig (limited, of course):
::
$ python -m pycares google.com
;; QUESTION SECTION:
;google.com IN A
;; ANSWER SECTION:
google.com 300 IN A 172.217.17.142
$ python -m pycares mx google.com
;; QUESTION SECTION:
;google.com IN MX
;; ANSWER SECTION:
google.com 600 IN MX 50 alt4.aspmx.l.google.com
google.com 600 IN MX 10 aspmx.l.google.com
google.com 600 IN MX 40 alt3.aspmx.l.google.com
google.com 600 IN MX 20 alt1.aspmx.l.google.com
google.com 600 IN MX 30 alt2.aspmx.l.google.com
Author
------
Saúl Ibarra Corretgé <s@saghul.net>
License
-------
Unless stated otherwise on-file pycares uses the MIT license, check LICENSE file.
Supported Python versions
-------------------------
Python >= 3.9 are supported. Both CPython and PyPy are supported.
Contributing
------------
If you'd like to contribute, fork the project, make a patch and send a pull
request. Have a look at the surrounding code and please, make yours look
alike :-)
Raw data
{
"_id": null,
"home_page": "http://github.com/saghul/pycares",
"name": "pycares",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": "Sa\u00fal Ibarra Corretg\u00e9",
"author_email": "s@saghul.net",
"download_url": "https://files.pythonhosted.org/packages/e0/2f/5b46bb8e65070eb1f7f549d2f2e71db6b9899ef24ac9f82128014aeb1e25/pycares-4.10.0.tar.gz",
"platform": "POSIX",
"description": "Looking for new maintainers\n===========================\n\nhttps://github.com/saghul/pycares/issues/139\n\npycares: Python interface for c-ares\n====================================\n\npycares is a Python module which provides an interface to c-ares.\n`c-ares <https://c-ares.org>`_ is a C library that performs\nDNS requests and name resolutions asynchronously.\n\n\nDocumentation\n-------------\n\nhttp://readthedocs.org/docs/pycares/\n\n\nBundled c-ares\n--------------\n\npycares currently bundles c-ares as a submodule for ease of building. Using the system\nprovided c-ares is possible if the ``PYCARES_USE_SYSTEM_LIB`` environment variable is\nset to ``1`` when building.\n\nNOTE: Versions prior to 4.0.0 used to embed a modified c-ares with extended TTL support.\nThat is no longer the case and as a result only A and AAAA records will have TTL information.\nFollow this PR in uppstream c-ares, looks like TTLs will be added: https://github.com/c-ares/c-ares/pull/393\n\n\nInstallation\n------------\n\nGNU/Linux, macOS, Windows, others:\n\n::\n\n pip install pycares\n\nFreeBSD:\n\n::\n\n cd /usr/ports/dns/py-pycares && make install\n\n\nIDNA 2008 support\n^^^^^^^^^^^^^^^^^\n\nIf the ``idna`` package is installed, pycares will support IDNA 2008 encoding otherwise the builtin idna codec will be used,\nwhich provides IDNA 2003 support.\n\nYou can force this at installation time as follows:\n\n::\n\n pip install pycares[idna]\n\n\nRunning the test suite\n----------------------\n\nFrom the top level directory, run: ``python -m unittest -v``\n\nNOTE: Running the tests requires internet access and are somewhat environment sensitive because real DNS quesries\nare made, there is no mocking. If you observe a failure that the CI cannot reproduce, please try to setup an\nenvironment as close as the current CI.\n\n\nUsing it from the cli, a la dig\n-------------------------------\n\nThis module can be used directly from the command line in a similar fashion to dig (limited, of course):\n\n::\n\n $ python -m pycares google.com\n ;; QUESTION SECTION:\n ;google.com\t\t\tIN\tA\n\n ;; ANSWER SECTION:\n google.com\t\t300\tIN\tA\t172.217.17.142\n\n $ python -m pycares mx google.com\n ;; QUESTION SECTION:\n ;google.com\t\t\tIN\tMX\n\n ;; ANSWER SECTION:\n google.com\t\t600\tIN\tMX\t50 alt4.aspmx.l.google.com\n google.com\t\t600\tIN\tMX\t10 aspmx.l.google.com\n google.com\t\t600\tIN\tMX\t40 alt3.aspmx.l.google.com\n google.com\t\t600\tIN\tMX\t20 alt1.aspmx.l.google.com\n google.com\t\t600\tIN\tMX\t30 alt2.aspmx.l.google.com\n\n\nAuthor\n------\n\nSa\u00fal Ibarra Corretg\u00e9 <s@saghul.net>\n\n\nLicense\n-------\n\nUnless stated otherwise on-file pycares uses the MIT license, check LICENSE file.\n\n\nSupported Python versions\n-------------------------\n\nPython >= 3.9 are supported. Both CPython and PyPy are supported.\n\n\nContributing\n------------\n\nIf you'd like to contribute, fork the project, make a patch and send a pull\nrequest. Have a look at the surrounding code and please, make yours look\nalike :-)\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python interface for c-ares",
"version": "4.10.0",
"project_urls": {
"Homepage": "http://github.com/saghul/pycares"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "8553bab672a2be8fc8d8e27f53dd32b521c6e92d5ad5d952ea8ee7131a5e1cb4",
"md5": "909706912ca17c5034147f105fb62885",
"sha256": "d209ce5bf50cf06b72fa7d0eb9cb90fac094e6ada7d9a3b2dd2ba67de1809c25"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "909706912ca17c5034147f105fb62885",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 145813,
"upload_time": "2025-08-05T22:34:05",
"upload_time_iso_8601": "2025-08-05T22:34:05.680951Z",
"url": "https://files.pythonhosted.org/packages/85/53/bab672a2be8fc8d8e27f53dd32b521c6e92d5ad5d952ea8ee7131a5e1cb4/pycares-4.10.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e724e3e700026afb96bf1d3e9cc69124e9f678f87319a0c3675b019eb397d1e",
"md5": "a2c5f777e4048d039e798e9128bb2cd7",
"sha256": "34089bc561583210d81bd8a14c553390bb209076d280f74291da5a75793c84fc"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a2c5f777e4048d039e798e9128bb2cd7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 140833,
"upload_time": "2025-08-05T22:34:07",
"upload_time_iso_8601": "2025-08-05T22:34:07.388872Z",
"url": "https://files.pythonhosted.org/packages/3e/72/4e3e700026afb96bf1d3e9cc69124e9f678f87319a0c3675b019eb397d1e/pycares-4.10.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "28ae959062268c3842c3a40d5a78b247d4ae7745e39151cdce3df72eafde1e37",
"md5": "7b06cacd1148ff6f6d17a2858f3eab0a",
"sha256": "5dcd68e87c95c83cf3e5a9492635dc3be706c50a38ea67e02eb6a7741bca671f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "7b06cacd1148ff6f6d17a2858f3eab0a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 642596,
"upload_time": "2025-08-05T22:34:08",
"upload_time_iso_8601": "2025-08-05T22:34:08.574585Z",
"url": "https://files.pythonhosted.org/packages/28/ae/959062268c3842c3a40d5a78b247d4ae7745e39151cdce3df72eafde1e37/pycares-4.10.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e4e4cc90dabf487282c133c18f5412b1db5f043db1cbe06b6b0e481c6208b6c",
"md5": "68dff957a34c29b33f4816fc30fe0826",
"sha256": "967e53086bd84b3d7f7e1fc54a0ff2ffdd89d56bb10a392bffd9b810a396164f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "68dff957a34c29b33f4816fc30fe0826",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 690225,
"upload_time": "2025-08-05T22:34:10",
"upload_time_iso_8601": "2025-08-05T22:34:10.037277Z",
"url": "https://files.pythonhosted.org/packages/2e/4e/4cc90dabf487282c133c18f5412b1db5f043db1cbe06b6b0e481c6208b6c/pycares-4.10.0-cp310-cp310-manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2af687ae221bc005d0ad1a500cc7f4444471c8174a23d115da439fb6bad4ce0a",
"md5": "b96b562bdfb3222fb578228d5f1de291",
"sha256": "7063804e7fca5959f315ee13ab2b65bdf0f43ea18cd0c84e4b171436363e0b5f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "b96b562bdfb3222fb578228d5f1de291",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 682093,
"upload_time": "2025-08-05T22:34:11",
"upload_time_iso_8601": "2025-08-05T22:34:11.613176Z",
"url": "https://files.pythonhosted.org/packages/2a/f6/87ae221bc005d0ad1a500cc7f4444471c8174a23d115da439fb6bad4ce0a/pycares-4.10.0-cp310-cp310-manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f65e8a6ccd985c0016caaaf13ebbbef93511a56aacec3909133cacbf7d491696",
"md5": "0a30c10625cfae3d759bf05956354c5d",
"sha256": "27dbbc055336e79b47628fe890378b22126298bea5a1399fcd4ef9a12de9eb05"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0a30c10625cfae3d759bf05956354c5d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 643922,
"upload_time": "2025-08-05T22:34:13",
"upload_time_iso_8601": "2025-08-05T22:34:13.088204Z",
"url": "https://files.pythonhosted.org/packages/f6/5e/8a6ccd985c0016caaaf13ebbbef93511a56aacec3909133cacbf7d491696/pycares-4.10.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9b860788789b99fa164170d50c4b27b528ed210812e765c544e9979155b8fd4",
"md5": "4b50488e9bad93b057b09abac228313d",
"sha256": "f444226dc35afb35135a8a82c884e44d97aa4a034057d12acf1ed4879538a601"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4b50488e9bad93b057b09abac228313d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 626997,
"upload_time": "2025-08-05T22:34:14",
"upload_time_iso_8601": "2025-08-05T22:34:14.316325Z",
"url": "https://files.pythonhosted.org/packages/d9/b8/60788789b99fa164170d50c4b27b528ed210812e765c544e9979155b8fd4/pycares-4.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98162c29ef713044af7d4f1d00375802e6759f404c351491cc1e8f84beb8d4d1",
"md5": "cbb3962dcc09a09eb54e674e5453a81b",
"sha256": "2c953e6abf941e92cb1a4dca7be192b76eaac9e42a88e1c5380c79af82fa4aa7"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "cbb3962dcc09a09eb54e674e5453a81b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 673244,
"upload_time": "2025-08-05T22:34:15",
"upload_time_iso_8601": "2025-08-05T22:34:15.945829Z",
"url": "https://files.pythonhosted.org/packages/98/16/2c29ef713044af7d4f1d00375802e6759f404c351491cc1e8f84beb8d4d1/pycares-4.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64506d645ff640c85952d0f0c9875c8cb08f7e141eeeda2901fce9fb9258ce55",
"md5": "ea6fbb64df2e98ab03ab905364800987",
"sha256": "e0d4a963531e49413c7f0797280b10056ed3df52f8f5e5e25c16f274e85956ab"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "ea6fbb64df2e98ab03ab905364800987",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 656595,
"upload_time": "2025-08-05T22:34:17",
"upload_time_iso_8601": "2025-08-05T22:34:17.463560Z",
"url": "https://files.pythonhosted.org/packages/64/50/6d645ff640c85952d0f0c9875c8cb08f7e141eeeda2901fce9fb9258ce55/pycares-4.10.0-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c029b09750cbee34b302f0b34988c7df251b44887968c9a0c048ea5cc8a8d85",
"md5": "53c20233a8ec75c9d3660431ff7aa732",
"sha256": "202a1565a2c7b60647e52d5743c0b24b8d2e236665230e2c46e0e304fd170408"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "53c20233a8ec75c9d3660431ff7aa732",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 631900,
"upload_time": "2025-08-05T22:34:19",
"upload_time_iso_8601": "2025-08-05T22:34:19.178838Z",
"url": "https://files.pythonhosted.org/packages/4c/02/9b09750cbee34b302f0b34988c7df251b44887968c9a0c048ea5cc8a8d85/pycares-4.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bfe99673f2de7cc0fb4c1400d52547ce96b56800bb12db5fb5044c97f885014",
"md5": "d50631c87c06a7b7e5ddc6ed50b90741",
"sha256": "4b4aeecb56631fb640c35e076a9a095f9a41973d04849a83397479e57ffaff40"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "d50631c87c06a7b7e5ddc6ed50b90741",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 118785,
"upload_time": "2025-08-05T22:34:20",
"upload_time_iso_8601": "2025-08-05T22:34:20.179769Z",
"url": "https://files.pythonhosted.org/packages/2b/fe/99673f2de7cc0fb4c1400d52547ce96b56800bb12db5fb5044c97f885014/pycares-4.10.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e768bb96ad5c5e99c0b6c539ec0b36ebf0708a7dcb322caa8525df73325821db",
"md5": "cb66926a3426dd82bcc4ac00a9e3a25d",
"sha256": "5baa470fea401ec30d8f8292f190939ac3028637572fae46955122e6930d1609"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "cb66926a3426dd82bcc4ac00a9e3a25d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 144530,
"upload_time": "2025-08-05T22:34:21",
"upload_time_iso_8601": "2025-08-05T22:34:21.050245Z",
"url": "https://files.pythonhosted.org/packages/e7/68/bb96ad5c5e99c0b6c539ec0b36ebf0708a7dcb322caa8525df73325821db/pycares-4.10.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5bc07b2b0780a2e66d3d43122a27d582a792f2ad02ddc01c29461077763fd6f",
"md5": "f1a53efcc304b94ec43535b118149182",
"sha256": "afb22427ab950a490268db058248e9bdaf4f0bfd52cee5fb7cf670d2d5185c7b"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp310-cp310-win_arm64.whl",
"has_sig": false,
"md5_digest": "f1a53efcc304b94ec43535b118149182",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 115638,
"upload_time": "2025-08-05T22:34:22",
"upload_time_iso_8601": "2025-08-05T22:34:22.408329Z",
"url": "https://files.pythonhosted.org/packages/a5/bc/07b2b0780a2e66d3d43122a27d582a792f2ad02ddc01c29461077763fd6f/pycares-4.10.0-cp310-cp310-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "857e7154c999c25eaddbed7dbafe6491f905253fe4801220c59d52943fcf2e3c",
"md5": "637a95e006839789a4a99b58a882d8dc",
"sha256": "29f866c704e4c59789a01a0564d22de359a53a337b3edea4975888373ed934e2"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "637a95e006839789a4a99b58a882d8dc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 145822,
"upload_time": "2025-08-05T22:34:23",
"upload_time_iso_8601": "2025-08-05T22:34:23.341000Z",
"url": "https://files.pythonhosted.org/packages/85/7e/7154c999c25eaddbed7dbafe6491f905253fe4801220c59d52943fcf2e3c/pycares-4.10.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f582c327d53d014e9ebd5fb89ebba369a79ba8890377ea95821e262b5bdfc14e",
"md5": "eb62b33f0ad43a26bb1c940a059f9f28",
"sha256": "bdb1558665988cb84e56ccfc86c856f1fc3725e5d08a002ac4faeee65c2f36fa"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "eb62b33f0ad43a26bb1c940a059f9f28",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 140836,
"upload_time": "2025-08-05T22:34:24",
"upload_time_iso_8601": "2025-08-05T22:34:24.449953Z",
"url": "https://files.pythonhosted.org/packages/f5/82/c327d53d014e9ebd5fb89ebba369a79ba8890377ea95821e262b5bdfc14e/pycares-4.10.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf9234a20992cae06183209a2cf78fef875aae92b943892a4678e9b4b6fe9f02",
"md5": "f7f091cd997f4bc5a3f01ae5c6de0759",
"sha256": "9281bf62f03a708976c08755948c288f22a7cba5e4fe0b446dde673b08936a60"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "f7f091cd997f4bc5a3f01ae5c6de0759",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 642628,
"upload_time": "2025-08-05T22:34:25",
"upload_time_iso_8601": "2025-08-05T22:34:25.627077Z",
"url": "https://files.pythonhosted.org/packages/cf/92/34a20992cae06183209a2cf78fef875aae92b943892a4678e9b4b6fe9f02/pycares-4.10.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4d9e4d18b93e6f9257f613c7db5e73f3b38651c7214d8f4a83ee0431367b818",
"md5": "ce6e053a53ae1acc0da8593938bd2760",
"sha256": "8e93993bac49a5d6f0bd919084dd701995882b78db9a213e3773adb24b4dc46f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "ce6e053a53ae1acc0da8593938bd2760",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 690218,
"upload_time": "2025-08-05T22:34:26",
"upload_time_iso_8601": "2025-08-05T22:34:26.887237Z",
"url": "https://files.pythonhosted.org/packages/b4/d9/e4d18b93e6f9257f613c7db5e73f3b38651c7214d8f4a83ee0431367b818/pycares-4.10.0-cp311-cp311-manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff28c612a287febf5f10b441aeb284ba4e8bae8beb19110d5912331a42f26221",
"md5": "9e3214700bd1e16e964ab7660270629a",
"sha256": "6ab788f779b6161cd5129e8cd25ce25d7d91976a5ea6f0e16afdbdd20fe966f6"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "9e3214700bd1e16e964ab7660270629a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 682047,
"upload_time": "2025-08-05T22:34:28",
"upload_time_iso_8601": "2025-08-05T22:34:28.537756Z",
"url": "https://files.pythonhosted.org/packages/ff/28/c612a287febf5f10b441aeb284ba4e8bae8beb19110d5912331a42f26221/pycares-4.10.0-cp311-cp311-manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5cf82c82fb0704e704fc2a13ecc9438f2b7636e990a07fe59dd444f3743eeeae",
"md5": "9827b913210fa92e35a0eef1c7bdc128",
"sha256": "575da87e38e10608be0556edad1458d2374609e7baec7832465078d5ad5c7822"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "9827b913210fa92e35a0eef1c7bdc128",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 643950,
"upload_time": "2025-08-05T22:34:30",
"upload_time_iso_8601": "2025-08-05T22:34:30.299643Z",
"url": "https://files.pythonhosted.org/packages/5c/f8/2c82fb0704e704fc2a13ecc9438f2b7636e990a07fe59dd444f3743eeeae/pycares-4.10.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d7942c90ac5bcd188238dd1dd4b25ba19fd55c679f324e21173c70f74ccf5eb6",
"md5": "5509ba00c81e9ab74fd0010b25c4b2e7",
"sha256": "7217231366390755f32faeaf0f91ebec8f8a8056fe6e6340a7ee803c0feba05c"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5509ba00c81e9ab74fd0010b25c4b2e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 626958,
"upload_time": "2025-08-05T22:34:31",
"upload_time_iso_8601": "2025-08-05T22:34:31.856066Z",
"url": "https://files.pythonhosted.org/packages/d7/94/2c90ac5bcd188238dd1dd4b25ba19fd55c679f324e21173c70f74ccf5eb6/pycares-4.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b60ec33adef143a29330d426868077020d965be67d56c000194b540083878f0",
"md5": "f05e594d4027bc6dc5c7c37fffae3243",
"sha256": "531cb88285cd3b50d45020ff42dab8cefa65eecab5281dbec33c00258e20ca2d"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "f05e594d4027bc6dc5c7c37fffae3243",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 673191,
"upload_time": "2025-08-05T22:34:33",
"upload_time_iso_8601": "2025-08-05T22:34:33.732875Z",
"url": "https://files.pythonhosted.org/packages/4b/60/ec33adef143a29330d426868077020d965be67d56c000194b540083878f0/pycares-4.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfc880030f08c747972e3099257707d64ed5f8a4d6634038380e0c52b4629889",
"md5": "aba85461a446e0e47527fed6056fbc68",
"sha256": "db9187a95ea487b3f5b5878b1d3ba1f541c0bea6b83b7946cc4b5953de82bbc8"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "aba85461a446e0e47527fed6056fbc68",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 656580,
"upload_time": "2025-08-05T22:34:34",
"upload_time_iso_8601": "2025-08-05T22:34:34.953268Z",
"url": "https://files.pythonhosted.org/packages/df/c8/80030f08c747972e3099257707d64ed5f8a4d6634038380e0c52b4629889/pycares-4.10.0-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f2b30c678b680711fd125dbf29529d3c09410e358e156145ae38c39456fd8ac",
"md5": "29e3706fe8be8ce2e6eca856e92443ed",
"sha256": "cdb7232757ca6d6a8b8535ffbffde081271caef397f3b6002789f35f6743dea3"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "29e3706fe8be8ce2e6eca856e92443ed",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 631858,
"upload_time": "2025-08-05T22:34:36",
"upload_time_iso_8601": "2025-08-05T22:34:36.120591Z",
"url": "https://files.pythonhosted.org/packages/2f/2b/30c678b680711fd125dbf29529d3c09410e358e156145ae38c39456fd8ac/pycares-4.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e66e8ed0bdf8eb415f88266b5e5c8cb09eec84327d21101fb13c9f896bd187d0",
"md5": "f6c71a6e07e6904dc1a40105eb8270c9",
"sha256": "d2434724db49e65146983bd084f16f5780093906bb24522551282ae17ad5add0"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "f6c71a6e07e6904dc1a40105eb8270c9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 118782,
"upload_time": "2025-08-05T22:34:37",
"upload_time_iso_8601": "2025-08-05T22:34:37.987470Z",
"url": "https://files.pythonhosted.org/packages/e6/6e/8ed0bdf8eb415f88266b5e5c8cb09eec84327d21101fb13c9f896bd187d0/pycares-4.10.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4863e589a23aa0e916d02118bce3b59ef2a9c0cb6f11cffc385f57fed8d44fc",
"md5": "c1989055bcdc5f8ef59b5011d66b195f",
"sha256": "e11fe3fbcef622de29711d9a76c97995e4635e113ded1f33cab2bd4248e3c92c"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "c1989055bcdc5f8ef59b5011d66b195f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 144528,
"upload_time": "2025-08-05T22:34:39",
"upload_time_iso_8601": "2025-08-05T22:34:39.469697Z",
"url": "https://files.pythonhosted.org/packages/a4/86/3e589a23aa0e916d02118bce3b59ef2a9c0cb6f11cffc385f57fed8d44fc/pycares-4.10.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a68efb19f2708ba9d54a1f0de9765ed25867be4b2896bf2818da80f7ec6e7a0e",
"md5": "5c47f661a575dc4e7400f064504024df",
"sha256": "330e656182aa186b6a1b433bfcddbbc11850af5c54d2befa3b77ed289b44bc10"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "5c47f661a575dc4e7400f064504024df",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 115633,
"upload_time": "2025-08-05T22:34:40",
"upload_time_iso_8601": "2025-08-05T22:34:40.520825Z",
"url": "https://files.pythonhosted.org/packages/a6/8e/fb19f2708ba9d54a1f0de9765ed25867be4b2896bf2818da80f7ec6e7a0e/pycares-4.10.0-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6aacff843ee3e4e6c39e8582772bc75c0898e00c9859906b094569a09f64a1c8",
"md5": "1fd759ab72a066013bc83b15a70dbd74",
"sha256": "870354741adb5d212a521c33005b368b5c8baa81e2f0d3143e868c025c5bb32f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "1fd759ab72a066013bc83b15a70dbd74",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 145860,
"upload_time": "2025-08-05T22:34:41",
"upload_time_iso_8601": "2025-08-05T22:34:41.587428Z",
"url": "https://files.pythonhosted.org/packages/6a/ac/ff843ee3e4e6c39e8582772bc75c0898e00c9859906b094569a09f64a1c8/pycares-4.10.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eedb9cb8a2d3bdd138a62334320bf940ea321ae15bce8deac9078fcb2bb17dba",
"md5": "fff25957c90daed7e7cc9a21698f43bb",
"sha256": "8912544250edc3da6a1fc97ef9543f69ee4bc2812f90e17d294397382d1ecc80"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fff25957c90daed7e7cc9a21698f43bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 140889,
"upload_time": "2025-08-05T22:34:42",
"upload_time_iso_8601": "2025-08-05T22:34:42.738063Z",
"url": "https://files.pythonhosted.org/packages/ee/db/9cb8a2d3bdd138a62334320bf940ea321ae15bce8deac9078fcb2bb17dba/pycares-4.10.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d351c51e4bb52020388222ddf04d73ae32aba4fa1e17fe4decd7a842d85e5dfb",
"md5": "036c58f41576d80f264ace75dbeadc39",
"sha256": "49d896bb5ae3c571bc359d3076c1484fd4f99bb5138c1c597da1f57979238771"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "036c58f41576d80f264ace75dbeadc39",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 637789,
"upload_time": "2025-08-05T22:34:43",
"upload_time_iso_8601": "2025-08-05T22:34:43.876261Z",
"url": "https://files.pythonhosted.org/packages/d3/51/c51e4bb52020388222ddf04d73ae32aba4fa1e17fe4decd7a842d85e5dfb/pycares-4.10.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7572778c4210d7918f1955a0388cd2c2f9131620e8a8939094aad0e24ff95583",
"md5": "3f5bdea9a944902d48c4af33f53b2149",
"sha256": "08e3d70c714e3955dc5ccfe6abc132d2f410ca1c610375faee42fda6cc90ca0f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "3f5bdea9a944902d48c4af33f53b2149",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 687708,
"upload_time": "2025-08-05T22:34:45",
"upload_time_iso_8601": "2025-08-05T22:34:45.365230Z",
"url": "https://files.pythonhosted.org/packages/75/72/778c4210d7918f1955a0388cd2c2f9131620e8a8939094aad0e24ff95583/pycares-4.10.0-cp312-cp312-manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e3510913ee20bb03210c3ac841448d143b83185bbbc3b611b33ea80126c9d26",
"md5": "29e4e23b654a54a54676b5a979a38e23",
"sha256": "f4f76946b1d6eae7bdbfefef0f143efb8acf5b55e37d631f7ec947fc9a8d6b06"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "29e4e23b654a54a54676b5a979a38e23",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 678317,
"upload_time": "2025-08-05T22:34:46",
"upload_time_iso_8601": "2025-08-05T22:34:46.895892Z",
"url": "https://files.pythonhosted.org/packages/2e/35/10913ee20bb03210c3ac841448d143b83185bbbc3b611b33ea80126c9d26/pycares-4.10.0-cp312-cp312-manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cb46523d53a0644bb270c58f7186da0d80ce3f6fab481b27a9868f572044c03",
"md5": "9fc88f37bb74b1a9239f74a4987fd592",
"sha256": "cf99fbdb5f566320d5c1330e55de4f3cbe49ca42690b782db6380523bcfbb34b"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "9fc88f37bb74b1a9239f74a4987fd592",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 641024,
"upload_time": "2025-08-05T22:34:48",
"upload_time_iso_8601": "2025-08-05T22:34:48.727629Z",
"url": "https://files.pythonhosted.org/packages/0c/b4/6523d53a0644bb270c58f7186da0d80ce3f6fab481b27a9868f572044c03/pycares-4.10.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77dc00b6c06343e74eb637eef4d0f774998c1bafaf2df42cc448624f04c31530",
"md5": "8477ff7e6565ae66a9a411c91679f2fe",
"sha256": "ba103bbc7f85d0b7c386021cafed122317d05bee56c75c06c22707d8a0393a3d"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8477ff7e6565ae66a9a411c91679f2fe",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 622312,
"upload_time": "2025-08-05T22:34:50",
"upload_time_iso_8601": "2025-08-05T22:34:50.396058Z",
"url": "https://files.pythonhosted.org/packages/77/dc/00b6c06343e74eb637eef4d0f774998c1bafaf2df42cc448624f04c31530/pycares-4.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c0f0134aaa668f50d8cc3f322c9b2774773360647ceb081d1c3597546f9e002",
"md5": "c89b42fc87475e1a0e5b611df661fc00",
"sha256": "6f0e546194fa64e751e70e16239f54fbf34ba216f4d3c7b55ca8ac50a5d82eb5"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "c89b42fc87475e1a0e5b611df661fc00",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 670245,
"upload_time": "2025-08-05T22:34:52",
"upload_time_iso_8601": "2025-08-05T22:34:52.239472Z",
"url": "https://files.pythonhosted.org/packages/2c/0f/0134aaa668f50d8cc3f322c9b2774773360647ceb081d1c3597546f9e002/pycares-4.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1501892aa72b16baababb7a54255344793c7943d439566fd6f554dc00fb6ee3a",
"md5": "95970efe526cd77d6cd989e319dfe459",
"sha256": "5c32115f7004c1b9071c0f250c9092bacd9090bd31a289bd155d58a60d4434fa"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "95970efe526cd77d6cd989e319dfe459",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 652913,
"upload_time": "2025-08-05T22:34:53",
"upload_time_iso_8601": "2025-08-05T22:34:53.433026Z",
"url": "https://files.pythonhosted.org/packages/15/01/892aa72b16baababb7a54255344793c7943d439566fd6f554dc00fb6ee3a/pycares-4.10.0-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01cce0319118001fab9c00830a62ce7b1d6595825b43c12ac282860b2b48b7ba",
"md5": "0c684d6a351fd7b445bdb63c82a0f107",
"sha256": "259c9b6b4547e1400515a373c6910506f3cebe6e65bb9814be10e59c49dcb634"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0c684d6a351fd7b445bdb63c82a0f107",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 629195,
"upload_time": "2025-08-05T22:34:54",
"upload_time_iso_8601": "2025-08-05T22:34:54.521487Z",
"url": "https://files.pythonhosted.org/packages/01/cc/e0319118001fab9c00830a62ce7b1d6595825b43c12ac282860b2b48b7ba/pycares-4.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "602c5638e18ca83d9e42f005cf9dcebad9b24756aa55a62cdd63e860a366cf4e",
"md5": "cd227d61265a11109cc7af94a45a4a48",
"sha256": "f972732b3ce1300e6eec8670967920cae56b44df014fd63a793b990d930da64f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "cd227d61265a11109cc7af94a45a4a48",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 118867,
"upload_time": "2025-08-05T22:34:55",
"upload_time_iso_8601": "2025-08-05T22:34:55.563925Z",
"url": "https://files.pythonhosted.org/packages/60/2c/5638e18ca83d9e42f005cf9dcebad9b24756aa55a62cdd63e860a366cf4e/pycares-4.10.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca315284d053c3c0b956c7f3b9f846dca108eaca97b1e1f0f8b7601c7e4fd238",
"md5": "5909fa779d5491b6174dec8f185b4b3f",
"sha256": "489584abc1523d7e444b2b27a563d1c3c0c0852b40f3b453fa3a74cf10b38ebb"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5909fa779d5491b6174dec8f185b4b3f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 144512,
"upload_time": "2025-08-05T22:34:57",
"upload_time_iso_8601": "2025-08-05T22:34:57.375903Z",
"url": "https://files.pythonhosted.org/packages/ca/31/5284d053c3c0b956c7f3b9f846dca108eaca97b1e1f0f8b7601c7e4fd238/pycares-4.10.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "355fbb1594ae9a8640bec69e953944145f86a621084c39debbd1904f3369a85b",
"md5": "0912a3fb4cea0226a072ecf2f277f54f",
"sha256": "468aa3bb19e7f6f193ae5375d1b21722a0cad5726e17c9817bfefbcf29cd662e"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "0912a3fb4cea0226a072ecf2f277f54f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 115647,
"upload_time": "2025-08-05T22:34:58",
"upload_time_iso_8601": "2025-08-05T22:34:58.647371Z",
"url": "https://files.pythonhosted.org/packages/35/5f/bb1594ae9a8640bec69e953944145f86a621084c39debbd1904f3369a85b/pycares-4.10.0-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21bd7a1448f5f0852628520dc9cdff21b4d6f01f4ab5faaf208d030fba28e0e2",
"md5": "78ae03e25df281e5806bdf455712487a",
"sha256": "d4904ebd5e4d0c78e9fd56e6c974da005eaa721365961764922929e8e8f7dd0a"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "78ae03e25df281e5806bdf455712487a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 145861,
"upload_time": "2025-08-05T22:35:00",
"upload_time_iso_8601": "2025-08-05T22:35:00.010374Z",
"url": "https://files.pythonhosted.org/packages/21/bd/7a1448f5f0852628520dc9cdff21b4d6f01f4ab5faaf208d030fba28e0e2/pycares-4.10.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d6d0e436ddb540a06fa898b8b6cd135babe44893d31d439935eee42bcd4f07b",
"md5": "890eaff4072797666e08b03a4fc75bb2",
"sha256": "7144676e54b0686605333ec62ffdb7bb2b6cb4a6c53eed3e35ae3249dc64676b"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "890eaff4072797666e08b03a4fc75bb2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 140893,
"upload_time": "2025-08-05T22:35:01",
"upload_time_iso_8601": "2025-08-05T22:35:01.128579Z",
"url": "https://files.pythonhosted.org/packages/4d/6d/0e436ddb540a06fa898b8b6cd135babe44893d31d439935eee42bcd4f07b/pycares-4.10.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "227aec4734c1274205d0ac1419310464bfa5e1a96924a77312e760790c02769c",
"md5": "09313980120aeb9201223da5850e6c6f",
"sha256": "f9a259bf46cc51c51c7402a2bf32d1416f029b9a4af3de8b8973345520278092"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "09313980120aeb9201223da5850e6c6f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 637754,
"upload_time": "2025-08-05T22:35:02",
"upload_time_iso_8601": "2025-08-05T22:35:02.258996Z",
"url": "https://files.pythonhosted.org/packages/22/7a/ec4734c1274205d0ac1419310464bfa5e1a96924a77312e760790c02769c/pycares-4.10.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "121d306d071837073eccff6efb93560fdb4e53d53ca0c1002260bb34e074f706",
"md5": "79fc4b53c34d75e4f13ce66a677d780e",
"sha256": "1dcfdda868ad2cee8d171288a4cd725a9ad67498a2f679428874a917396d464e"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "79fc4b53c34d75e4f13ce66a677d780e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 687690,
"upload_time": "2025-08-05T22:35:03",
"upload_time_iso_8601": "2025-08-05T22:35:03.623658Z",
"url": "https://files.pythonhosted.org/packages/12/1d/306d071837073eccff6efb93560fdb4e53d53ca0c1002260bb34e074f706/pycares-4.10.0-cp313-cp313-manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ee92b517302d42a9ff101201b58e9e2cbd2458c0a1ed68cca7d4dc1397ed246",
"md5": "d1cc7733bca7847c9f1d2b08d5c80e2b",
"sha256": "f2d57bb27c884d130ac62d8c0ac57a158d27f8d75011f8700c7d44601f093652"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "d1cc7733bca7847c9f1d2b08d5c80e2b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 678273,
"upload_time": "2025-08-05T22:35:04",
"upload_time_iso_8601": "2025-08-05T22:35:04.794320Z",
"url": "https://files.pythonhosted.org/packages/5e/e9/2b517302d42a9ff101201b58e9e2cbd2458c0a1ed68cca7d4dc1397ed246/pycares-4.10.0-cp313-cp313-manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bbdde9ed896e752fb22141d6310f6680bcb62ea1d6aa07dc129d914377bd4b4",
"md5": "d209ace08131d0a4acba614d9a85ef57",
"sha256": "95f4d976bf2feb3f406aef6b1314845dc1384d2e4ea0c439c7d50631f2b6d166"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "d209ace08131d0a4acba614d9a85ef57",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 640968,
"upload_time": "2025-08-05T22:35:05",
"upload_time_iso_8601": "2025-08-05T22:35:05.928211Z",
"url": "https://files.pythonhosted.org/packages/2b/bd/de9ed896e752fb22141d6310f6680bcb62ea1d6aa07dc129d914377bd4b4/pycares-4.10.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "079fbe45f60277a0825d03feed2378a283ce514b4feea64785e917b926b8441e",
"md5": "0a43efdb0e1df55ad3784f7b2530336b",
"sha256": "f9eecd9e28e43254c6fb1c69518bd6b753bf18230579c23e7f272ac52036d41f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0a43efdb0e1df55ad3784f7b2530336b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 622316,
"upload_time": "2025-08-05T22:35:07",
"upload_time_iso_8601": "2025-08-05T22:35:07.058997Z",
"url": "https://files.pythonhosted.org/packages/07/9f/be45f60277a0825d03feed2378a283ce514b4feea64785e917b926b8441e/pycares-4.10.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9121ca7bd328d07c560a1fe0ba29008c24a48e88184d3ade658946aeaef25992",
"md5": "58c3bb42c86506232c9ecc5c4bc55d69",
"sha256": "f4f8ec43ce0db38152cded6939a3fa4d8aba888e323803cda99f67fa3053fa15"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "58c3bb42c86506232c9ecc5c4bc55d69",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 670246,
"upload_time": "2025-08-05T22:35:08",
"upload_time_iso_8601": "2025-08-05T22:35:08.213810Z",
"url": "https://files.pythonhosted.org/packages/91/21/ca7bd328d07c560a1fe0ba29008c24a48e88184d3ade658946aeaef25992/pycares-4.10.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "015647fda9dbc23c3acfe42fa6d57bb850db6ede65a2a9476641a54621166464",
"md5": "825dcffb08040477d14ddd5980294c50",
"sha256": "ef107d30a9d667c295db58897390c2d32c206eb1802b14d98ac643990be4e04f"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "825dcffb08040477d14ddd5980294c50",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 652930,
"upload_time": "2025-08-05T22:35:09",
"upload_time_iso_8601": "2025-08-05T22:35:09.701306Z",
"url": "https://files.pythonhosted.org/packages/01/56/47fda9dbc23c3acfe42fa6d57bb850db6ede65a2a9476641a54621166464/pycares-4.10.0-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8630cc865c630d5c9f72f488a89463aabfd33895984955c489f66b5a524f9573",
"md5": "a49b095bd21f9094f56f2f90f3917276",
"sha256": "56c843e69aad724dc5a795f32ebd6fec1d1592f58cabf89d2d148697c22c41be"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a49b095bd21f9094f56f2f90f3917276",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 629187,
"upload_time": "2025-08-05T22:35:10",
"upload_time_iso_8601": "2025-08-05T22:35:10.954837Z",
"url": "https://files.pythonhosted.org/packages/86/30/cc865c630d5c9f72f488a89463aabfd33895984955c489f66b5a524f9573/pycares-4.10.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92883ff7be2a4bf5a400309d3ffaf9aa58596f7dc6f6fcb99f844fc5e4994a49",
"md5": "47adbaf8300da90ba960ee7c667ca684",
"sha256": "4310259be37b586ba8cd0b4983689e4c18e15e03709bd88b1076494e91ff424b"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "47adbaf8300da90ba960ee7c667ca684",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 118869,
"upload_time": "2025-08-05T22:35:12",
"upload_time_iso_8601": "2025-08-05T22:35:12.375150Z",
"url": "https://files.pythonhosted.org/packages/92/88/3ff7be2a4bf5a400309d3ffaf9aa58596f7dc6f6fcb99f844fc5e4994a49/pycares-4.10.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "585fcac05cee0556388cabd0abc332021ed01391d6be0685be7b5daff45088f6",
"md5": "8bd2fa63f46dcc4d2133ee8bff99e87c",
"sha256": "893020d802afb54d929afda5289fe322b50110cd5386080178479a7381241f97"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "8bd2fa63f46dcc4d2133ee8bff99e87c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 144512,
"upload_time": "2025-08-05T22:35:13",
"upload_time_iso_8601": "2025-08-05T22:35:13.549622Z",
"url": "https://files.pythonhosted.org/packages/58/5f/cac05cee0556388cabd0abc332021ed01391d6be0685be7b5daff45088f6/pycares-4.10.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "452e89b6e83a716935752d62a3c0622a077a9d28f7c2645b7f9b90d6951b37ba",
"md5": "ebc0098bc05d8962a332e0d9eac423a7",
"sha256": "ffa3e0f7a13f287b575e64413f2f9af6cf9096e383d1fd40f2870591628d843b"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "ebc0098bc05d8962a332e0d9eac423a7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 115648,
"upload_time": "2025-08-05T22:35:15",
"upload_time_iso_8601": "2025-08-05T22:35:15.891213Z",
"url": "https://files.pythonhosted.org/packages/45/2e/89b6e83a716935752d62a3c0622a077a9d28f7c2645b7f9b90d6951b37ba/pycares-4.10.0-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "068589b6d4391d1bf8deeb583092bda714e0bf5dc2624485429f7741d60529c5",
"md5": "8cb4834c2b6db85182647b06d655bb18",
"sha256": "7c2fddd529e3a429d5d83ecf9cd508cc1f7380f50d9004b8735054b9e86655fb"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8cb4834c2b6db85182647b06d655bb18",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 145816,
"upload_time": "2025-08-05T22:35:16",
"upload_time_iso_8601": "2025-08-05T22:35:16.953387Z",
"url": "https://files.pythonhosted.org/packages/06/85/89b6d4391d1bf8deeb583092bda714e0bf5dc2624485429f7741d60529c5/pycares-4.10.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b42b6bc5dedc714965c38aa006d253a85303e9fb65e95b68c63e171a5bd3b43",
"md5": "e4deac8dea7cc1557a11c1784d1c9844",
"sha256": "67e27fa1e660fc5847f2e5bcd2284ef5c74ee5c87ab9248a772fcf8dc279e853"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e4deac8dea7cc1557a11c1784d1c9844",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 140816,
"upload_time": "2025-08-05T22:35:18",
"upload_time_iso_8601": "2025-08-05T22:35:18.107690Z",
"url": "https://files.pythonhosted.org/packages/2b/42/b6bc5dedc714965c38aa006d253a85303e9fb65e95b68c63e171a5bd3b43/pycares-4.10.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1df9bdb58ef40cd4a6279af4d4f16c2953b99262ba7a9ad61532bd5617e271fa",
"md5": "6e349ae1b14c3695872b882a61777bf3",
"sha256": "1add5d01e45698c8ca59123e693c23fd15caaed24b556a1af00316aa5ce13769"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "6e349ae1b14c3695872b882a61777bf3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 642531,
"upload_time": "2025-08-05T22:35:19",
"upload_time_iso_8601": "2025-08-05T22:35:19.277817Z",
"url": "https://files.pythonhosted.org/packages/1d/f9/bdb58ef40cd4a6279af4d4f16c2953b99262ba7a9ad61532bd5617e271fa/pycares-4.10.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "347c889f677e1a0bd43435ddf982c41cf728590c0031f3f8f40967676c8855e3",
"md5": "5de1f5df83d0a202273bbc94006c1e4c",
"sha256": "10e6f724e24fb46b40f4f1fb72308022bb3b5d08a827a0ab9e34971e1cbfc61d"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "5de1f5df83d0a202273bbc94006c1e4c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 690179,
"upload_time": "2025-08-05T22:35:20",
"upload_time_iso_8601": "2025-08-05T22:35:20.536241Z",
"url": "https://files.pythonhosted.org/packages/34/7c/889f677e1a0bd43435ddf982c41cf728590c0031f3f8f40967676c8855e3/pycares-4.10.0-cp39-cp39-manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f372255bb2cf18cdbb90384ac820422a24ec847287c22e46b0c2955091d1e15",
"md5": "9b6ee433eb597226a0f59e983ac0023c",
"sha256": "6ca443da2efece7252709a73506bf259e159804dd9cca344b61a6696d1790129"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "9b6ee433eb597226a0f59e983ac0023c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 682067,
"upload_time": "2025-08-05T22:35:22",
"upload_time_iso_8601": "2025-08-05T22:35:22.975438Z",
"url": "https://files.pythonhosted.org/packages/5f/37/2255bb2cf18cdbb90384ac820422a24ec847287c22e46b0c2955091d1e15/pycares-4.10.0-cp39-cp39-manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f9af5ff25719a819c23f91b62cdad5bf1febd55a90a83a389d4ba4506d93722",
"md5": "bfa570c1a41dbb7a46d424f7034dfdf9",
"sha256": "458fe77483605eb18ec42210dbe204805130c95f2776779faf256b64341ca5f2"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "bfa570c1a41dbb7a46d424f7034dfdf9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 643904,
"upload_time": "2025-08-05T22:35:24",
"upload_time_iso_8601": "2025-08-05T22:35:24.249786Z",
"url": "https://files.pythonhosted.org/packages/4f/9a/f5ff25719a819c23f91b62cdad5bf1febd55a90a83a389d4ba4506d93722/pycares-4.10.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6c629dbce24eb30ffbf44c0541273ee7d47e798ead56e09852f5dfb3b418516",
"md5": "904b644a99da93054aef7cee5931b167",
"sha256": "476b395c0a6cbfae3157389bea09d95af90b2865582371b7af0c446bd1d566e0"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "904b644a99da93054aef7cee5931b167",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 626978,
"upload_time": "2025-08-05T22:35:25",
"upload_time_iso_8601": "2025-08-05T22:35:25.467922Z",
"url": "https://files.pythonhosted.org/packages/c6/c6/29dbce24eb30ffbf44c0541273ee7d47e798ead56e09852f5dfb3b418516/pycares-4.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d21b1dc217b176b32d6e45c899ef9d6fab42a2b019783b541143f0ffb16026f",
"md5": "d4dc7967f641c5113d7a23e1c1ebe5c5",
"sha256": "25eb63e837b94130255a45e8481bf48957642b28e505243c7d471dfb4459f899"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "d4dc7967f641c5113d7a23e1c1ebe5c5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 673297,
"upload_time": "2025-08-05T22:35:26",
"upload_time_iso_8601": "2025-08-05T22:35:26.745809Z",
"url": "https://files.pythonhosted.org/packages/9d/21/b1dc217b176b32d6e45c899ef9d6fab42a2b019783b541143f0ffb16026f/pycares-4.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d01730542c3d7406625dabb7f0b62443e2117f9788e80e1527c412a695e37331",
"md5": "3f621f7ac60a9613aeb78d6aef4e882a",
"sha256": "fdd676b8f5d4b98ba87365c82b782dc27089813390cce944ca6d55e6b0904512"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "3f621f7ac60a9613aeb78d6aef4e882a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 656589,
"upload_time": "2025-08-05T22:35:28",
"upload_time_iso_8601": "2025-08-05T22:35:28.048368Z",
"url": "https://files.pythonhosted.org/packages/d0/17/30542c3d7406625dabb7f0b62443e2117f9788e80e1527c412a695e37331/pycares-4.10.0-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a13dacaacc52d8d4f521e1b548d36fe30e03b4911d80328a327ba160e5451771",
"md5": "957e269e7861f75690c76cc54c76e5cc",
"sha256": "283806ab6d18862a11e466ac7df9c5e0cd5adea1a5bec55d754d8fbf89b5c8a3"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "957e269e7861f75690c76cc54c76e5cc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 631879,
"upload_time": "2025-08-05T22:35:29",
"upload_time_iso_8601": "2025-08-05T22:35:29.413050Z",
"url": "https://files.pythonhosted.org/packages/a1/3d/acaacc52d8d4f521e1b548d36fe30e03b4911d80328a327ba160e5451771/pycares-4.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "419af04036efaff534c5962a925d6d8405f1c84f7522feedff38541dfe063c9c",
"md5": "ded6bb2001651a70b7e439a7089273e4",
"sha256": "d53ae1c3d3ea822334251de1e18966a5dd3a13d323f89b77f35603c71e8d6a78"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "ded6bb2001651a70b7e439a7089273e4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 118786,
"upload_time": "2025-08-05T22:35:30",
"upload_time_iso_8601": "2025-08-05T22:35:30.557039Z",
"url": "https://files.pythonhosted.org/packages/41/9a/f04036efaff534c5962a925d6d8405f1c84f7522feedff38541dfe063c9c/pycares-4.10.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b03775ed42289477a27bc90769b62cd06e06a4efe9ba81e9ec98b47a41c3df0",
"md5": "c2fa81b4e4ab27d3e4a30f60ef11b240",
"sha256": "6696a1a259b6f77d3f2183d5dab26a1d4e21d49ea54485419b02092ad169e4e5"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "c2fa81b4e4ab27d3e4a30f60ef11b240",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 144527,
"upload_time": "2025-08-05T22:35:31",
"upload_time_iso_8601": "2025-08-05T22:35:31.535245Z",
"url": "https://files.pythonhosted.org/packages/2b/03/775ed42289477a27bc90769b62cd06e06a4efe9ba81e9ec98b47a41c3df0/pycares-4.10.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1eaa12ea7792ba1b56a877b10a0ab8b5d37d986673ef6a850995197391d6b0f4",
"md5": "caa3f998c7b606621e35046e26e1427c",
"sha256": "620bde2908e7046e26f95283aa47c6558f109c9cf2ae3fb4b4feca4c3e42852e"
},
"downloads": -1,
"filename": "pycares-4.10.0-cp39-cp39-win_arm64.whl",
"has_sig": false,
"md5_digest": "caa3f998c7b606621e35046e26e1427c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 115635,
"upload_time": "2025-08-05T22:35:33",
"upload_time_iso_8601": "2025-08-05T22:35:33.113023Z",
"url": "https://files.pythonhosted.org/packages/1e/aa/12ea7792ba1b56a877b10a0ab8b5d37d986673ef6a850995197391d6b0f4/pycares-4.10.0-cp39-cp39-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e02f5b46bb8e65070eb1f7f549d2f2e71db6b9899ef24ac9f82128014aeb1e25",
"md5": "f940094c9038676c44f27a842ec38389",
"sha256": "9df70dce6e05afa5d477f48959170e569485e20dad1a089c4cf3b2d7ffbd8bf9"
},
"downloads": -1,
"filename": "pycares-4.10.0.tar.gz",
"has_sig": false,
"md5_digest": "f940094c9038676c44f27a842ec38389",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 654318,
"upload_time": "2025-08-05T22:35:34",
"upload_time_iso_8601": "2025-08-05T22:35:34.863768Z",
"url": "https://files.pythonhosted.org/packages/e0/2f/5b46bb8e65070eb1f7f549d2f2e71db6b9899ef24ac9f82128014aeb1e25/pycares-4.10.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-05 22:35:34",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "saghul",
"github_project": "pycares",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pycares"
}