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/d7/b1/94daaa50b6d2fa14c6b4981ca24fa4e7aa33a7519962c76170072ffb06ee/pycares-4.5.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.5.0",
"project_urls": {
"Homepage": "http://github.com/saghul/pycares"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "91e9109c7ed1db9a9b30720c528f54a219ef1c07f16f364bc28b1f6bbcdb7932",
"md5": "8bbf82097cfbc42085b8fc8b5118e8ba",
"sha256": "13a82fad8239d6fbcf916099bee17d8b5666d0ddb77dace431e0f7961c9427ab"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8bbf82097cfbc42085b8fc8b5118e8ba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 74833,
"upload_time": "2024-11-26T07:20:56",
"upload_time_iso_8601": "2024-11-26T07:20:56.871591Z",
"url": "https://files.pythonhosted.org/packages/91/e9/109c7ed1db9a9b30720c528f54a219ef1c07f16f364bc28b1f6bbcdb7932/pycares-4.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2053b01a1f890cb270896ee6898a07a33cb6abe9fcc2c1cef8d719f5a2f2d1f",
"md5": "4e937c976dfd03204e6e106e8af22d6e",
"sha256": "fefc7bebbe39b2e3b4b9615471233a8f7356b96129a7db9030313a3ae4ecc42d"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4e937c976dfd03204e6e106e8af22d6e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 71320,
"upload_time": "2024-11-26T07:20:58",
"upload_time_iso_8601": "2024-11-26T07:20:58.589650Z",
"url": "https://files.pythonhosted.org/packages/e2/05/3b01a1f890cb270896ee6898a07a33cb6abe9fcc2c1cef8d719f5a2f2d1f/pycares-4.5.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34154d2e3da5b3ed93d0f8cca785729ce50279c6f8a0855b040f19ff6ca57b12",
"md5": "0c50724f43c1c9297274cbfe928c6ff4",
"sha256": "e322e8ce810026f6e0c7c2a254b9ed02191ab8d42fa2ce6808ede1bdccab8e65"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0c50724f43c1c9297274cbfe928c6ff4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 289130,
"upload_time": "2024-11-26T07:20:59",
"upload_time_iso_8601": "2024-11-26T07:20:59.474073Z",
"url": "https://files.pythonhosted.org/packages/34/15/4d2e3da5b3ed93d0f8cca785729ce50279c6f8a0855b040f19ff6ca57b12/pycares-4.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86b08d137cf324e0991fd0a70e2b289126b706b71ca2cbad294039ef54819e04",
"md5": "3c5aecad4c16a366b113ce210d6a3160",
"sha256": "723ba0803b016294430e40e544503fed9164949b694342c2552ab189e2b688ef"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3c5aecad4c16a366b113ce210d6a3160",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 303788,
"upload_time": "2024-11-26T07:21:00",
"upload_time_iso_8601": "2024-11-26T07:21:00.641276Z",
"url": "https://files.pythonhosted.org/packages/86/b0/8d137cf324e0991fd0a70e2b289126b706b71ca2cbad294039ef54819e04/pycares-4.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ceb6c82bb7f5b04278b294f802713fd19c00cab761b8c3b5f0179e5f75829cd1",
"md5": "59c3440b36ebb151392e6eda4e06db2e",
"sha256": "e48b20b59cdc929cc712a8b22e89c273256e482b49bb8999af98d2c6fc4563c2"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "59c3440b36ebb151392e6eda4e06db2e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 293243,
"upload_time": "2024-11-26T07:21:01",
"upload_time_iso_8601": "2024-11-26T07:21:01.764700Z",
"url": "https://files.pythonhosted.org/packages/ce/b6/c82bb7f5b04278b294f802713fd19c00cab761b8c3b5f0179e5f75829cd1/pycares-4.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3b66673cb88e128bedb3d6c675429d5de4b17f35ffc45dc5b5508393c38626a",
"md5": "e42d6f357e94e194f28cb5d9fb6e3e45",
"sha256": "de6e55bd9af595b112ac6080ac0a0d52b5853d0d8e6d01ac65ff09e51e62490a"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e42d6f357e94e194f28cb5d9fb6e3e45",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 288571,
"upload_time": "2024-11-26T07:21:02",
"upload_time_iso_8601": "2024-11-26T07:21:02.852053Z",
"url": "https://files.pythonhosted.org/packages/d3/b6/6673cb88e128bedb3d6c675429d5de4b17f35ffc45dc5b5508393c38626a/pycares-4.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "417ddd90ec643b28941575afcbcb29ce01d25c3eac199e674445349b77ace327",
"md5": "e95d957fe1bf12c0090205f44cd76a17",
"sha256": "a6f4b9063e3dd70460400367917698f209c10aabb68bf70b09e364895444487d"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e95d957fe1bf12c0090205f44cd76a17",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 269914,
"upload_time": "2024-11-26T07:21:03",
"upload_time_iso_8601": "2024-11-26T07:21:03.917415Z",
"url": "https://files.pythonhosted.org/packages/41/7d/dd90ec643b28941575afcbcb29ce01d25c3eac199e674445349b77ace327/pycares-4.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab5382f52dc86d00a2df90acef03d549b2afedba00184228f2420c112e5146d6",
"md5": "3825fde2f55d3e2ddc2a79231abce75f",
"sha256": "95522d4840d702fd766439a7c7cd747935aa54cf0b8675e9fadd8414dd9dd0df"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3825fde2f55d3e2ddc2a79231abce75f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 277881,
"upload_time": "2024-11-26T07:21:05",
"upload_time_iso_8601": "2024-11-26T07:21:05.746311Z",
"url": "https://files.pythonhosted.org/packages/ab/53/82f52dc86d00a2df90acef03d549b2afedba00184228f2420c112e5146d6/pycares-4.5.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ebb24fe9fed26c110fd2c219cdf133bab7e18e73896bda8960be50c896cfc66",
"md5": "e1d7596f3c983c9aa69ee378f1bec870",
"sha256": "e4709ce4fd9dbee24b1397f71a2adb3267323bb5ad5e7fde3f87873d172dd156"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e1d7596f3c983c9aa69ee378f1bec870",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 263704,
"upload_time": "2024-11-26T07:21:06",
"upload_time_iso_8601": "2024-11-26T07:21:06.802292Z",
"url": "https://files.pythonhosted.org/packages/2e/bb/24fe9fed26c110fd2c219cdf133bab7e18e73896bda8960be50c896cfc66/pycares-4.5.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "831bc33e94fd0de4a67a833818e920ab4541aeca8adf067d780fa031ffef0d7c",
"md5": "3bc23185949e653370def41784d678ca",
"sha256": "8addbf3408af1010f50fd67ef634a6cb239ccb9c534c32a40713f3b8d306a98e"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "3bc23185949e653370def41784d678ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 297410,
"upload_time": "2024-11-26T07:21:07",
"upload_time_iso_8601": "2024-11-26T07:21:07.895343Z",
"url": "https://files.pythonhosted.org/packages/83/1b/c33e94fd0de4a67a833818e920ab4541aeca8adf067d780fa031ffef0d7c/pycares-4.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8790266f05bb0781d1705a14140c9a6742dcbd7be6fad96a2d2c807193b1b285",
"md5": "440d87bc87f21c1fa525ce3d85af830c",
"sha256": "d0428ef42fcf575e197047e6a47892404faa34231902a453b3dfed66af4178b3"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "440d87bc87f21c1fa525ce3d85af830c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 290483,
"upload_time": "2024-11-26T07:21:09",
"upload_time_iso_8601": "2024-11-26T07:21:09.701910Z",
"url": "https://files.pythonhosted.org/packages/87/90/266f05bb0781d1705a14140c9a6742dcbd7be6fad96a2d2c807193b1b285/pycares-4.5.0-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "185fe8b5b142075c0dfeb7f980fec17c8f970955ede842f0234f360e5a3c5610",
"md5": "f0c583135253c6639d09e7dfc2ac0dc0",
"sha256": "aed5c2732f3a6bdbbfab202267d37044ca1162f690b9d34b7ece97ba43f27453"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f0c583135253c6639d09e7dfc2ac0dc0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 279970,
"upload_time": "2024-11-26T07:21:11",
"upload_time_iso_8601": "2024-11-26T07:21:11.443997Z",
"url": "https://files.pythonhosted.org/packages/18/5f/e8b5b142075c0dfeb7f980fec17c8f970955ede842f0234f360e5a3c5610/pycares-4.5.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b30ae42a4aa2c456e62485128c984a2c8e078966b4047d016651e1570f34c027",
"md5": "0205ed79a02c0260b29bad583b80b559",
"sha256": "b1859ea770a7abec40a6d02b5ab03c2396c4900c01f4e50ddb6c0dca4c2a6a7c"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "0205ed79a02c0260b29bad583b80b559",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 61603,
"upload_time": "2024-11-26T07:21:12",
"upload_time_iso_8601": "2024-11-26T07:21:12.425738Z",
"url": "https://files.pythonhosted.org/packages/b3/0a/e42a4aa2c456e62485128c984a2c8e078966b4047d016651e1570f34c027/pycares-4.5.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "23b4013b9a19b589f936730a1d858cad25c9fdabf8d91968ec6918c3228842cf",
"md5": "9d29b39fcea69ead7303b32ae1a38bfe",
"sha256": "9f87d8da20a3a80ab05fe80c14a62bf078bd726ca6af609edbeb376fb97d50ab"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "9d29b39fcea69ead7303b32ae1a38bfe",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 76534,
"upload_time": "2024-11-26T07:21:13",
"upload_time_iso_8601": "2024-11-26T07:21:13.923982Z",
"url": "https://files.pythonhosted.org/packages/23/b4/013b9a19b589f936730a1d858cad25c9fdabf8d91968ec6918c3228842cf/pycares-4.5.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "65720dbd1169058924af1f8f1c1421fba64b7fb0ab2b8a489789f17c4b8527ee",
"md5": "7dfeabc12f46a1a378614dc71f912e9d",
"sha256": "5ca7a1dba7b88290710db45012e0903c21c839fa0a2b9ddc100bba8e66bfb251"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7dfeabc12f46a1a378614dc71f912e9d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 74837,
"upload_time": "2024-11-26T07:21:15",
"upload_time_iso_8601": "2024-11-26T07:21:15.471805Z",
"url": "https://files.pythonhosted.org/packages/65/72/0dbd1169058924af1f8f1c1421fba64b7fb0ab2b8a489789f17c4b8527ee/pycares-4.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a5597d90ab79e16e641c35a9b53b437e6556993ea904af2e1ce8982a6b8191b",
"md5": "b94b990d2121b96c59cdbd5b17d3d130",
"sha256": "160e92588cdf1a0fa3a7015f47990b508d50efd9109ea4d719dee31c058f0648"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b94b990d2121b96c59cdbd5b17d3d130",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 71314,
"upload_time": "2024-11-26T07:21:16",
"upload_time_iso_8601": "2024-11-26T07:21:16.362240Z",
"url": "https://files.pythonhosted.org/packages/4a/55/97d90ab79e16e641c35a9b53b437e6556993ea904af2e1ce8982a6b8191b/pycares-4.5.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5291c152c9e90e9ea7b2bc6381abecdc52ccf1f18b5aa5e67c3a4264f9ae1b22",
"md5": "316d7e60048729db05ec3c77b99ab5d3",
"sha256": "0f38e45d23660ed1dafdb956fd263ae4735530ef1578aa2bf2caabb94cee4523"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "316d7e60048729db05ec3c77b99ab5d3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 289122,
"upload_time": "2024-11-26T07:21:17",
"upload_time_iso_8601": "2024-11-26T07:21:17.919542Z",
"url": "https://files.pythonhosted.org/packages/52/91/c152c9e90e9ea7b2bc6381abecdc52ccf1f18b5aa5e67c3a4264f9ae1b22/pycares-4.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebafe28bd3aa1c87b624ba8a422f5f86ff7a2eee6d2137c3f43c5de543b5d0e3",
"md5": "36c757e65cea3b98340c7a0dc4414fe3",
"sha256": "f742acc6d29a99ffc14e3f154b3848ea05c5533b71065e0f0a0fd99c527491b2"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "36c757e65cea3b98340c7a0dc4414fe3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 303778,
"upload_time": "2024-11-26T07:21:18",
"upload_time_iso_8601": "2024-11-26T07:21:18.996166Z",
"url": "https://files.pythonhosted.org/packages/eb/af/e28bd3aa1c87b624ba8a422f5f86ff7a2eee6d2137c3f43c5de543b5d0e3/pycares-4.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30cd7b584e8aba8efb33bd1447cd66cf30512a9d989aae76c7baaf7ffd87c9b1",
"md5": "0f9145421c83fdae4b94b6454f1d60fe",
"sha256": "ceaf71bcd7b6447705e689b8fee8836c20c6148511a90122981f524a84bfcca9"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0f9145421c83fdae4b94b6454f1d60fe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 293217,
"upload_time": "2024-11-26T07:21:20",
"upload_time_iso_8601": "2024-11-26T07:21:20.082409Z",
"url": "https://files.pythonhosted.org/packages/30/cd/7b584e8aba8efb33bd1447cd66cf30512a9d989aae76c7baaf7ffd87c9b1/pycares-4.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb06a3def79dcf29671bb5582c0654d9461f865001254b1b52226dd2958270e4",
"md5": "2a47110acbfe74d920ad5fe556c38708",
"sha256": "cdc3c0be7b5b83e78e28818fecd0405bd401110dd6e2e66f7f10713c1188362c"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2a47110acbfe74d920ad5fe556c38708",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 288559,
"upload_time": "2024-11-26T07:21:21",
"upload_time_iso_8601": "2024-11-26T07:21:21.294419Z",
"url": "https://files.pythonhosted.org/packages/bb/06/a3def79dcf29671bb5582c0654d9461f865001254b1b52226dd2958270e4/pycares-4.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6bfbfe3c26ba45d0a0c3bd16a296725760c9787e828839dab8458ef96ab43a92",
"md5": "564f711e056dbfaea8c11eb078aff600",
"sha256": "fd458ee69800195247aa19b5675c5914cbc091c5a220e4f0e96777a31bb555c1"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "564f711e056dbfaea8c11eb078aff600",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 269861,
"upload_time": "2024-11-26T07:21:22",
"upload_time_iso_8601": "2024-11-26T07:21:22.630132Z",
"url": "https://files.pythonhosted.org/packages/6b/fb/fe3c26ba45d0a0c3bd16a296725760c9787e828839dab8458ef96ab43a92/pycares-4.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a505163aedb018de14b6b94ebd183ff94b914d900cdc7c3ee65ebc845e44463e",
"md5": "f78e22190621bed36b144065d72aaf5c",
"sha256": "0a6649d713df73266708642fc3d04f110c0a66bee510fbce4cc5fed79df42083"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f78e22190621bed36b144065d72aaf5c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 277840,
"upload_time": "2024-11-26T07:21:23",
"upload_time_iso_8601": "2024-11-26T07:21:23.749449Z",
"url": "https://files.pythonhosted.org/packages/a5/05/163aedb018de14b6b94ebd183ff94b914d900cdc7c3ee65ebc845e44463e/pycares-4.5.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa6eed28d24cf7a8ade789a25db4e3885bdf8ffb1276e00f958c7de452f6383f",
"md5": "947318ec1697323a1ee185e371abf4e0",
"sha256": "ac57d7bda925c10b997434e7ce30a2c3689c2e96bab9fd0a1165d5577378eecd"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "947318ec1697323a1ee185e371abf4e0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 263680,
"upload_time": "2024-11-26T07:21:25",
"upload_time_iso_8601": "2024-11-26T07:21:25.444641Z",
"url": "https://files.pythonhosted.org/packages/fa/6e/ed28d24cf7a8ade789a25db4e3885bdf8ffb1276e00f958c7de452f6383f/pycares-4.5.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5576ae8e641c0f9ea6a98b9143a4b6a619ed4b35451b121265f4fded7c8d638d",
"md5": "89bd70747601dde3df3aa9d2773f8e5a",
"sha256": "ba17d8e5eeec4b2e0eb1a6a840bae9e62cd1c1c9cbc8dc9db9d1b9fdf33d0b54"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "89bd70747601dde3df3aa9d2773f8e5a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 297460,
"upload_time": "2024-11-26T07:21:26",
"upload_time_iso_8601": "2024-11-26T07:21:26.570623Z",
"url": "https://files.pythonhosted.org/packages/55/76/ae8e641c0f9ea6a98b9143a4b6a619ed4b35451b121265f4fded7c8d638d/pycares-4.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c16a6f6cf9ca531cfce8d9e0b635a779c514e7aa7eccf9a4d89fb0d32eb102d",
"md5": "c8254c9ed8b85946b66fa23a173011db",
"sha256": "9e9b7d1a8de703283e4735c0e532ba4bc600e88de872dcd1a9a4950cf74d9f4f"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "c8254c9ed8b85946b66fa23a173011db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 290514,
"upload_time": "2024-11-26T07:21:27",
"upload_time_iso_8601": "2024-11-26T07:21:27.618369Z",
"url": "https://files.pythonhosted.org/packages/2c/16/a6f6cf9ca531cfce8d9e0b635a779c514e7aa7eccf9a4d89fb0d32eb102d/pycares-4.5.0-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e6183f4ae4c6222766ac9326ebd383d985b016b9875d7412e01a5d18550e19d",
"md5": "9fd06968dbef2a8a5c3f36bc9569f3be",
"sha256": "4c6922ecbe458c13a4a2c1177bbce38abc44b5f086bc82115a92eab34418915f"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9fd06968dbef2a8a5c3f36bc9569f3be",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 279964,
"upload_time": "2024-11-26T07:21:28",
"upload_time_iso_8601": "2024-11-26T07:21:28.697426Z",
"url": "https://files.pythonhosted.org/packages/8e/61/83f4ae4c6222766ac9326ebd383d985b016b9875d7412e01a5d18550e19d/pycares-4.5.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09a82d6e68eca2cb05d6dce0a5ca8aa8720f4aa2abc97679ebe649c97f3b6e4e",
"md5": "b96cd6e51afdd120a36e94f2dcfcdff8",
"sha256": "1004b8a17614e33410b4b1bb68360977667f1cc9ab2dbcfb27240d6703e4cb6a"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "b96cd6e51afdd120a36e94f2dcfcdff8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 61604,
"upload_time": "2024-11-26T07:21:29",
"upload_time_iso_8601": "2024-11-26T07:21:29.688327Z",
"url": "https://files.pythonhosted.org/packages/09/a8/2d6e68eca2cb05d6dce0a5ca8aa8720f4aa2abc97679ebe649c97f3b6e4e/pycares-4.5.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75d6a5d3752b62a4a728c03ce39e4aa9689fc275f1a408fa4f887ff31f01ee52",
"md5": "7a15e27191cf2547b4b5501d907b8fac",
"sha256": "2c9c1055c622258a0f315560b2880a372363484b87cbef48af092624804caa72"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "7a15e27191cf2547b4b5501d907b8fac",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 76534,
"upload_time": "2024-11-26T07:21:30",
"upload_time_iso_8601": "2024-11-26T07:21:30.598827Z",
"url": "https://files.pythonhosted.org/packages/75/d6/a5d3752b62a4a728c03ce39e4aa9689fc275f1a408fa4f887ff31f01ee52/pycares-4.5.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d2d786d62dec9edb3cbba1a11ef0b9558483659f049d14175d41cbef156cde4c",
"md5": "844a38394fd7730d6494e9398aa30fd2",
"sha256": "506efbe5017807747ccd1bdcb3c2f6e64635bc01fee01a50c0b97d649018c162"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "844a38394fd7730d6494e9398aa30fd2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 74921,
"upload_time": "2024-11-26T07:21:31",
"upload_time_iso_8601": "2024-11-26T07:21:31.487793Z",
"url": "https://files.pythonhosted.org/packages/d2/d7/86d62dec9edb3cbba1a11ef0b9558483659f049d14175d41cbef156cde4c/pycares-4.5.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3cdb6aa863a70eec7989b70bd8b666b1b7cb13e446deaad416e2acf69f227e21",
"md5": "0ec1f2a267ae1f3cb5fa5c74080003d6",
"sha256": "c469ec9fbe0526f45a98f67c1ea55be03abf30809c4f9c9be4bc93fb6806304d"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0ec1f2a267ae1f3cb5fa5c74080003d6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 71331,
"upload_time": "2024-11-26T07:21:32",
"upload_time_iso_8601": "2024-11-26T07:21:32.354333Z",
"url": "https://files.pythonhosted.org/packages/3c/db/6aa863a70eec7989b70bd8b666b1b7cb13e446deaad416e2acf69f227e21/pycares-4.5.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26642a5338c4d5c72211a7d5bda9c8350086ad9d02c66a2f3cb4933be8daa6ba",
"md5": "56f1bd2875521e71309963238c67f78e",
"sha256": "597c0950ede240c3a779f023fcf2442207fc11e570d3ca4ccdbb0db5bbaf2588"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "56f1bd2875521e71309963238c67f78e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 290337,
"upload_time": "2024-11-26T07:21:33",
"upload_time_iso_8601": "2024-11-26T07:21:33.928684Z",
"url": "https://files.pythonhosted.org/packages/26/64/2a5338c4d5c72211a7d5bda9c8350086ad9d02c66a2f3cb4933be8daa6ba/pycares-4.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3062e9186156e2fc88b1687c2e926b8987c6d11b568a23d9ff7be1863b7050fd",
"md5": "b3a4187026723097e04643ec302f7ce1",
"sha256": "9aa0da03c4df6ed0f87dd52a293bd0508734515041cc5be0f85d9edc1814914f"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b3a4187026723097e04643ec302f7ce1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 304297,
"upload_time": "2024-11-26T07:21:34",
"upload_time_iso_8601": "2024-11-26T07:21:34.964307Z",
"url": "https://files.pythonhosted.org/packages/30/62/e9186156e2fc88b1687c2e926b8987c6d11b568a23d9ff7be1863b7050fd/pycares-4.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed88823401c364d38dc5079502516bbb44a8884f92b55bb219cf91208a7b9fb0",
"md5": "88a05a1721661a5aac06ac51e43e34a7",
"sha256": "aea1ebf52767c777d10a1b3d03844b9b05cc892714b3ee177d5d9fbff74fb9fa"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "88a05a1721661a5aac06ac51e43e34a7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 294281,
"upload_time": "2024-11-26T07:21:36",
"upload_time_iso_8601": "2024-11-26T07:21:36.075706Z",
"url": "https://files.pythonhosted.org/packages/ed/88/823401c364d38dc5079502516bbb44a8884f92b55bb219cf91208a7b9fb0/pycares-4.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3485a1b9b944436a8274918b9b6247fe3e2456993955f597992a0ed1e480b9f",
"md5": "b658f48974c2807e02417168a11738e1",
"sha256": "eb20d84269ddffb177b6048e3bc03d0b9ffe17592093d900d5544805958d86b3"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b658f48974c2807e02417168a11738e1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 289879,
"upload_time": "2024-11-26T07:21:37",
"upload_time_iso_8601": "2024-11-26T07:21:37.106190Z",
"url": "https://files.pythonhosted.org/packages/e3/48/5a1b9b944436a8274918b9b6247fe3e2456993955f597992a0ed1e480b9f/pycares-4.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e96d32dab745bd2c50d696e463d65ae72c3bd2f5dbd909aead41d2080f7b33d",
"md5": "40d5a192f27a0177adf07bb9b8a32b81",
"sha256": "3125df81b657971ee5c0333f8f560ba0151db1eb7cf04aea7d783bb433b306c1"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "40d5a192f27a0177adf07bb9b8a32b81",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 270617,
"upload_time": "2024-11-26T07:21:38",
"upload_time_iso_8601": "2024-11-26T07:21:38.160827Z",
"url": "https://files.pythonhosted.org/packages/1e/96/d32dab745bd2c50d696e463d65ae72c3bd2f5dbd909aead41d2080f7b33d/pycares-4.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49be02485d69c5f883e24cf13880b9dd85cb90e353470f3f12f3708fbefce953",
"md5": "eff8528e7da922713d7d3ff418a62755",
"sha256": "525c77ea44546c12f379641aee163585d403cf50e29b04a06059d6aac894e956"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "eff8528e7da922713d7d3ff418a62755",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 278552,
"upload_time": "2024-11-26T07:21:39",
"upload_time_iso_8601": "2024-11-26T07:21:39.223689Z",
"url": "https://files.pythonhosted.org/packages/49/be/02485d69c5f883e24cf13880b9dd85cb90e353470f3f12f3708fbefce953/pycares-4.5.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4bae88d4359c73adf7458595184ee620fbed2d6e53abbd1440b221696d3888e5",
"md5": "47191bd2cea39c256db7369ea8ad8faa",
"sha256": "1fd87cb26b317a9988abfcfa4e4dbc55d5f20177e5979ad4d854468a9246c187"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "47191bd2cea39c256db7369ea8ad8faa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 263719,
"upload_time": "2024-11-26T07:21:40",
"upload_time_iso_8601": "2024-11-26T07:21:40.956505Z",
"url": "https://files.pythonhosted.org/packages/4b/ae/88d4359c73adf7458595184ee620fbed2d6e53abbd1440b221696d3888e5/pycares-4.5.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e246a799f616558f0ea2380af76e73c6f246af8bce81dec0107cf2b14493f47",
"md5": "f44fb0d427d56faada63adea950dc6b1",
"sha256": "a90aecd41188884e57ae32507a2c6b010c60b791a253083761bbb37a488ecaed"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "f44fb0d427d56faada63adea950dc6b1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 297729,
"upload_time": "2024-11-26T07:21:42",
"upload_time_iso_8601": "2024-11-26T07:21:42.041305Z",
"url": "https://files.pythonhosted.org/packages/4e/24/6a799f616558f0ea2380af76e73c6f246af8bce81dec0107cf2b14493f47/pycares-4.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14c5d00ea25938e441081608a4c1a4ee91b3e6a021606a109cb251752aa3bfed",
"md5": "fbcd9c3cf052d9851394571725281743",
"sha256": "0d3de65cab653979dcc491e03f596566c9d40346c9deb088e0f9fe70600d8737"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "fbcd9c3cf052d9851394571725281743",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 291630,
"upload_time": "2024-11-26T07:21:43",
"upload_time_iso_8601": "2024-11-26T07:21:43.719001Z",
"url": "https://files.pythonhosted.org/packages/14/c5/d00ea25938e441081608a4c1a4ee91b3e6a021606a109cb251752aa3bfed/pycares-4.5.0-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bdbc1425763b3d2883039842272e3d295226f91f79d9936d70f93da1b25c371a",
"md5": "15c030a93b4ab208b7a4db77d525ac16",
"sha256": "27a77b43604b3ba24e4fc49fd3ea59f50f7d89c7255f1f1ea46928b26cccacfa"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "15c030a93b4ab208b7a4db77d525ac16",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 281153,
"upload_time": "2024-11-26T07:21:44",
"upload_time_iso_8601": "2024-11-26T07:21:44.740199Z",
"url": "https://files.pythonhosted.org/packages/bd/bc/1425763b3d2883039842272e3d295226f91f79d9936d70f93da1b25c371a/pycares-4.5.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5bac8ab1c930a93442e363d49660329fc597b8e84b4d81eee64129f9611f24a",
"md5": "b1c5cafad6b5f99c5f0313d289efdf6c",
"sha256": "6028cb8766f0fea1d2caa69fac23621fbe2cff9ce6968374e165737258703a33"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "b1c5cafad6b5f99c5f0313d289efdf6c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 61624,
"upload_time": "2024-11-26T07:21:45",
"upload_time_iso_8601": "2024-11-26T07:21:45.746081Z",
"url": "https://files.pythonhosted.org/packages/e5/ba/c8ab1c930a93442e363d49660329fc597b8e84b4d81eee64129f9611f24a/pycares-4.5.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c0d71cc9403bf599c3f30d51d37c9639794a607c448a121a0a7447d59dbb6f07",
"md5": "6c117eb41beb6d21c6eccd31af7177bb",
"sha256": "2ce10672c4cfd1c5fb6718e8b25f0336ca11c89aab88aa6df53dafc4e41df740"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "6c117eb41beb6d21c6eccd31af7177bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 76546,
"upload_time": "2024-11-26T07:21:46",
"upload_time_iso_8601": "2024-11-26T07:21:46.633498Z",
"url": "https://files.pythonhosted.org/packages/c0/d7/1cc9403bf599c3f30d51d37c9639794a607c448a121a0a7447d59dbb6f07/pycares-4.5.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "328bb48b6a7c4234d682fb9f0d6904a09333711642b760c79a6a7b2f53cbe76e",
"md5": "272298a79857f812b7fa18c9eab3a613",
"sha256": "011cd670da7caf55664c944abb71ec39af82b837f8d48da7cf0eec80f5682c4c"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "272298a79857f812b7fa18c9eab3a613",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 74919,
"upload_time": "2024-11-26T07:21:48",
"upload_time_iso_8601": "2024-11-26T07:21:48.227183Z",
"url": "https://files.pythonhosted.org/packages/32/8b/b48b6a7c4234d682fb9f0d6904a09333711642b760c79a6a7b2f53cbe76e/pycares-4.5.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb573bec0d830efe9521a4706581fa9cc74825d7996104d773c8c971925a3989",
"md5": "967214edbec5d769f05ead5022082f95",
"sha256": "b5c67930497fb2b1dbcaa85f8c4188fc2cb62e41d787deeed2d33cfe9dd6bf52"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "967214edbec5d769f05ead5022082f95",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 71334,
"upload_time": "2024-11-26T07:21:49",
"upload_time_iso_8601": "2024-11-26T07:21:49.158227Z",
"url": "https://files.pythonhosted.org/packages/fb/57/3bec0d830efe9521a4706581fa9cc74825d7996104d773c8c971925a3989/pycares-4.5.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7941e6e41f0f72f32e8e32922b085e5df6a9d0a6dd3f5d41cfe213d8849b15e",
"md5": "c9d0a8174b8d02c492c2956856fe019a",
"sha256": "2d435a3b8468c656a7e7180dd7c4794510f6c612c33ad61a0fff6e440621f8b5"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c9d0a8174b8d02c492c2956856fe019a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 290310,
"upload_time": "2024-11-26T07:21:50",
"upload_time_iso_8601": "2024-11-26T07:21:50.095847Z",
"url": "https://files.pythonhosted.org/packages/b7/94/1e6e41f0f72f32e8e32922b085e5df6a9d0a6dd3f5d41cfe213d8849b15e/pycares-4.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a24524ea7bd19edb9392f32a4fcd2eaf11c98fdaeffd28588b4d2bec4ed9b08",
"md5": "c8818ac5b916516bbfaf8fe4eda6e195",
"sha256": "8371f5ee1efb33d6276e275d152c9c5605e5f2e58a9e168519ec1f9e13dd95ae"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c8818ac5b916516bbfaf8fe4eda6e195",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 304230,
"upload_time": "2024-11-26T07:21:51",
"upload_time_iso_8601": "2024-11-26T07:21:51.204123Z",
"url": "https://files.pythonhosted.org/packages/1a/24/524ea7bd19edb9392f32a4fcd2eaf11c98fdaeffd28588b4d2bec4ed9b08/pycares-4.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec07a019facc86438181af5cfb045b8d8fe8eeed41117c0abdb6c81acc430e17",
"md5": "3a52fa9ca2afe2fad2f6500bb77ef69a",
"sha256": "c76a9096fd5dc49c61c5235ea7032e8b43f4382800d64ca1e0e0cda700c082aa"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3a52fa9ca2afe2fad2f6500bb77ef69a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 294256,
"upload_time": "2024-11-26T07:21:52",
"upload_time_iso_8601": "2024-11-26T07:21:52.343376Z",
"url": "https://files.pythonhosted.org/packages/ec/07/a019facc86438181af5cfb045b8d8fe8eeed41117c0abdb6c81acc430e17/pycares-4.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a39050f08b6970a40861e5466ec965f9cf505812d7db51d7d4f15b84102dc2c6",
"md5": "f42740eb779fc4248c0d6c48798590da",
"sha256": "b604af76b57469ff68b44e9e4c857eaee43bc5035f4f183f07f4f7149191fe1b"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f42740eb779fc4248c0d6c48798590da",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 289866,
"upload_time": "2024-11-26T07:21:53",
"upload_time_iso_8601": "2024-11-26T07:21:53.369127Z",
"url": "https://files.pythonhosted.org/packages/a3/90/50f08b6970a40861e5466ec965f9cf505812d7db51d7d4f15b84102dc2c6/pycares-4.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b94476696e6dba0f166990d033c7889c47dc14db830ed424552020c830d5d409",
"md5": "0f5d30106b7118e4b96e80fc372ee5e2",
"sha256": "c589bd4f9160bfdb2f8080cf564bb120a4312cf091db07fe417f8e58a896a63c"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0f5d30106b7118e4b96e80fc372ee5e2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 270588,
"upload_time": "2024-11-26T07:21:54",
"upload_time_iso_8601": "2024-11-26T07:21:54.599810Z",
"url": "https://files.pythonhosted.org/packages/b9/44/76696e6dba0f166990d033c7889c47dc14db830ed424552020c830d5d409/pycares-4.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00a1788ffea09b7a57cd9e66610ba5b189d2a0d85853e95b79de547351bd6665",
"md5": "652a59eb153c991d9f8b5ab37f422da0",
"sha256": "361262805bb09742c364ec0117842043c950339e38561009bcabbb6ac89458ef"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "652a59eb153c991d9f8b5ab37f422da0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 278568,
"upload_time": "2024-11-26T07:21:55",
"upload_time_iso_8601": "2024-11-26T07:21:55.904163Z",
"url": "https://files.pythonhosted.org/packages/00/a1/788ffea09b7a57cd9e66610ba5b189d2a0d85853e95b79de547351bd6665/pycares-4.5.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39badfc4d79a7aefc034d79c9ccf32f47ce9e4a2a5d42f26f2cae7627aafefd1",
"md5": "b897a1e2d4d2e4492ccfd1dd52561a4e",
"sha256": "6d2afb3c0776467055bf33db843ef483d25639be0f32e3a13ef5d4dc64098bf5"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b897a1e2d4d2e4492ccfd1dd52561a4e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 263702,
"upload_time": "2024-11-26T07:21:57",
"upload_time_iso_8601": "2024-11-26T07:21:57.655847Z",
"url": "https://files.pythonhosted.org/packages/39/ba/dfc4d79a7aefc034d79c9ccf32f47ce9e4a2a5d42f26f2cae7627aafefd1/pycares-4.5.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20786819d2c283ce7b53ef639fff44f15ea46dd5dd57307f25d46fb41d83966c",
"md5": "fb8906d43fe238461f847a870dc06c73",
"sha256": "bc7a1d8ed7c7a4de17706a3c89b305b02eb64c778897e6727c043e5b9dd0d853"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "fb8906d43fe238461f847a870dc06c73",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 297722,
"upload_time": "2024-11-26T07:21:58",
"upload_time_iso_8601": "2024-11-26T07:21:58.747621Z",
"url": "https://files.pythonhosted.org/packages/20/78/6819d2c283ce7b53ef639fff44f15ea46dd5dd57307f25d46fb41d83966c/pycares-4.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd0d6776b00eb6ea3d2742ac4f4e1d4bf170168d0923effffa1963e3b4619019",
"md5": "22f29bba444c16fe4ca6dd24c0b1256e",
"sha256": "5703ec878b5c1efacdbf24ceaedfa606112fc67af5564f4db99c2c210f3ffadc"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "22f29bba444c16fe4ca6dd24c0b1256e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 291628,
"upload_time": "2024-11-26T07:22:00",
"upload_time_iso_8601": "2024-11-26T07:22:00.560346Z",
"url": "https://files.pythonhosted.org/packages/bd/0d/6776b00eb6ea3d2742ac4f4e1d4bf170168d0923effffa1963e3b4619019/pycares-4.5.0-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1329c329ec7ef6cd88335676d71ed8a059d0fd2f5adcff3ab3537e03327955fa",
"md5": "8343b81729082b69d24afe8ebf8db1cf",
"sha256": "d87758e09dbf52c27ed7cf7bc7eaf8b3226217d10c52b03d61a14d59f40fcae1"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8343b81729082b69d24afe8ebf8db1cf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 281161,
"upload_time": "2024-11-26T07:22:01",
"upload_time_iso_8601": "2024-11-26T07:22:01.698630Z",
"url": "https://files.pythonhosted.org/packages/13/29/c329ec7ef6cd88335676d71ed8a059d0fd2f5adcff3ab3537e03327955fa/pycares-4.5.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02c4aadb6b4a60b040bd6c4de31d971d4a07f54af274594a368de06170ede457",
"md5": "68b331b3042a818db5e480007b5d7b93",
"sha256": "3316d490b4ce1a69f034881ac1ea7608f5f24ea5293db24ab574ac70b7d7e407"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "68b331b3042a818db5e480007b5d7b93",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 61624,
"upload_time": "2024-11-26T07:22:02",
"upload_time_iso_8601": "2024-11-26T07:22:02.796474Z",
"url": "https://files.pythonhosted.org/packages/02/c4/aadb6b4a60b040bd6c4de31d971d4a07f54af274594a368de06170ede457/pycares-4.5.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "323833889749dde2c3ecab5039d72459769d8714665ba3038e718f514c556517",
"md5": "88b26548e5e624cdd34f674a14206fb4",
"sha256": "018e700fb0d1a2db5ec96e404ffa85ed97cc96e96d6af0bb9548111e37cf36a3"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "88b26548e5e624cdd34f674a14206fb4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 76546,
"upload_time": "2024-11-26T07:22:03",
"upload_time_iso_8601": "2024-11-26T07:22:03.726605Z",
"url": "https://files.pythonhosted.org/packages/32/38/33889749dde2c3ecab5039d72459769d8714665ba3038e718f514c556517/pycares-4.5.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68c4db5755746616ac22316a0be3f8211e9b641b9d5fedb844fb3dd4170d66b8",
"md5": "08b35149f76e572349b052ec32798aee",
"sha256": "78c9890d93108c70708babee8a783e6021233f1f0a763d3634add6fd429aae58"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "08b35149f76e572349b052ec32798aee",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 74833,
"upload_time": "2024-11-26T07:22:04",
"upload_time_iso_8601": "2024-11-26T07:22:04.654576Z",
"url": "https://files.pythonhosted.org/packages/68/c4/db5755746616ac22316a0be3f8211e9b641b9d5fedb844fb3dd4170d66b8/pycares-4.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "824bd9f129cce92e0b4dd7f01953a5cfcb479488d7aafcb04245fcb98957ea2f",
"md5": "f2e1e035e0b8bafa8b8709fadbfcf44b",
"sha256": "ba69f8123995aa3df99f6ebc726fc6a4b08e467a957b215c0a82749b901d5eed"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f2e1e035e0b8bafa8b8709fadbfcf44b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 71326,
"upload_time": "2024-11-26T07:22:05",
"upload_time_iso_8601": "2024-11-26T07:22:05.587073Z",
"url": "https://files.pythonhosted.org/packages/82/4b/d9f129cce92e0b4dd7f01953a5cfcb479488d7aafcb04245fcb98957ea2f/pycares-4.5.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "714777c2350ce1b5384f3e3e4fbe93cb083ddf7ebdceaa3c8adee315b9c8644e",
"md5": "207a9f1d479473f231ab3eb114521650",
"sha256": "32d33c4ffae31d1b544adebe0b9aee2be1fb18aedd3f4f91e41c495ccbafd6d8"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "207a9f1d479473f231ab3eb114521650",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 289125,
"upload_time": "2024-11-26T07:22:06",
"upload_time_iso_8601": "2024-11-26T07:22:06.622184Z",
"url": "https://files.pythonhosted.org/packages/71/47/77c2350ce1b5384f3e3e4fbe93cb083ddf7ebdceaa3c8adee315b9c8644e/pycares-4.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "901e4d1c33c37890b80bb18ab11fb5a133dda61b9dd57f0523efba85042eb483",
"md5": "e9a1ca008cd766a3c7c1f503f871e42b",
"sha256": "17a060cfc469828abf7f5945964d505bd8c0a756942fee159538f7885169752e"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e9a1ca008cd766a3c7c1f503f871e42b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 303752,
"upload_time": "2024-11-26T07:22:07",
"upload_time_iso_8601": "2024-11-26T07:22:07.769564Z",
"url": "https://files.pythonhosted.org/packages/90/1e/4d1c33c37890b80bb18ab11fb5a133dda61b9dd57f0523efba85042eb483/pycares-4.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "413b8cf5b258843d04d518d526a1fa26a8360141de4d5ed787f5cc8e3aa75d0a",
"md5": "29d6af36141052ae48f7e899fc22849b",
"sha256": "c1d0d5e69fa29e41b590a9dd5842454e8f34e2b928c92540aaf87e0161de8120"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "29d6af36141052ae48f7e899fc22849b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 293251,
"upload_time": "2024-11-26T07:22:09",
"upload_time_iso_8601": "2024-11-26T07:22:09.192343Z",
"url": "https://files.pythonhosted.org/packages/41/3b/8cf5b258843d04d518d526a1fa26a8360141de4d5ed787f5cc8e3aa75d0a/pycares-4.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d32d9098475e2f4e7ec9b05bf198eac35397999e09187f23b6d0c24ff293cb1c",
"md5": "76d98768acc2566a0e5c92cdd2a32c6a",
"sha256": "f096699c46f5dde2c7a8d91501a36d2d58500f4d63682e2ec14a0fed7cca6402"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "76d98768acc2566a0e5c92cdd2a32c6a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 288578,
"upload_time": "2024-11-26T07:22:10",
"upload_time_iso_8601": "2024-11-26T07:22:10.291887Z",
"url": "https://files.pythonhosted.org/packages/d3/2d/9098475e2f4e7ec9b05bf198eac35397999e09187f23b6d0c24ff293cb1c/pycares-4.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93de212661af53343cead925e8ad84cd8b636ee317ab49442f1fc26e797543b6",
"md5": "45a906a95d96ef7d4591d166aa839ce7",
"sha256": "429fe2065581a64a5f024f507b5f679bf37ea0ed39c3ba6289dba907e1c8a8f4"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "45a906a95d96ef7d4591d166aa839ce7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 269901,
"upload_time": "2024-11-26T07:22:11",
"upload_time_iso_8601": "2024-11-26T07:22:11.517737Z",
"url": "https://files.pythonhosted.org/packages/93/de/212661af53343cead925e8ad84cd8b636ee317ab49442f1fc26e797543b6/pycares-4.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95ff171d5d58f7047f53f274209741c0e6860786aaaecbaf8f509313ab1c8265",
"md5": "350814e88a0bfff1770057ad96737290",
"sha256": "9ea2f6d48e64b413b97b41b47392087b452af9bf9f9d4d6d05305a159f45909f"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "350814e88a0bfff1770057ad96737290",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 277888,
"upload_time": "2024-11-26T07:22:13",
"upload_time_iso_8601": "2024-11-26T07:22:13.348127Z",
"url": "https://files.pythonhosted.org/packages/95/ff/171d5d58f7047f53f274209741c0e6860786aaaecbaf8f509313ab1c8265/pycares-4.5.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80be04c6c8dd3005bef108f5ef6c8c9c4efd43097c0da83cb33090a2d6a4245b",
"md5": "7e4f09306b629b0ce30532fae817142d",
"sha256": "96d3aecd747a3fcd1e12c1ea1481b0813b4e0e80d40f314db7a86dda5bb1bd94"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7e4f09306b629b0ce30532fae817142d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 263702,
"upload_time": "2024-11-26T07:22:14",
"upload_time_iso_8601": "2024-11-26T07:22:14.466295Z",
"url": "https://files.pythonhosted.org/packages/80/be/04c6c8dd3005bef108f5ef6c8c9c4efd43097c0da83cb33090a2d6a4245b/pycares-4.5.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f66da7656251db768e9e0ebcc7289f50d7492cefa23dbc0bb26d8b7db367a72",
"md5": "0293c2ac78e37937968b066a428ae952",
"sha256": "32919f6eda7f5ea4df3e64149fc5792b0d455277d23d6d0fc365142062f35d80"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "0293c2ac78e37937968b066a428ae952",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 297412,
"upload_time": "2024-11-26T07:22:15",
"upload_time_iso_8601": "2024-11-26T07:22:15.876984Z",
"url": "https://files.pythonhosted.org/packages/4f/66/da7656251db768e9e0ebcc7289f50d7492cefa23dbc0bb26d8b7db367a72/pycares-4.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9e6cb9e7dc8f840d48c90891101331c8e89dee2e5470522815cd4c02b8b4142",
"md5": "e39eaec07dee0b30f054a264eaa5e1e0",
"sha256": "37add862461f9a3fc7ee4dd8b68465812b39456e21cebd5a33c414131ac05060"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "e39eaec07dee0b30f054a264eaa5e1e0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 290455,
"upload_time": "2024-11-26T07:22:17",
"upload_time_iso_8601": "2024-11-26T07:22:17.658248Z",
"url": "https://files.pythonhosted.org/packages/f9/e6/cb9e7dc8f840d48c90891101331c8e89dee2e5470522815cd4c02b8b4142/pycares-4.5.0-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd62851b9dfd2059e2ec8c6ccaab5c4d6c0029e50e598d539f5a45cbe9317a79",
"md5": "54f5b265db02cbf6f2cffb3edbc37d0b",
"sha256": "ed1d050d2c6d74a77c1b6c51fd99426cc000b4202a50d28d6ca75f7433099a6b"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "54f5b265db02cbf6f2cffb3edbc37d0b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 279968,
"upload_time": "2024-11-26T07:22:18",
"upload_time_iso_8601": "2024-11-26T07:22:18.867826Z",
"url": "https://files.pythonhosted.org/packages/bd/62/851b9dfd2059e2ec8c6ccaab5c4d6c0029e50e598d539f5a45cbe9317a79/pycares-4.5.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46e631a5a91b80173064215a98cb9cef2ae368c06b069081b28848022ea65c23",
"md5": "e122a9abd3c204ade7662771fb7cb358",
"sha256": "887ac451ffe6e39ee46d3d0989c7bb829933d77e1dad5776511d825fc7e6a25b"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "e122a9abd3c204ade7662771fb7cb358",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 61605,
"upload_time": "2024-11-26T07:22:20",
"upload_time_iso_8601": "2024-11-26T07:22:20.112283Z",
"url": "https://files.pythonhosted.org/packages/46/e6/31a5a91b80173064215a98cb9cef2ae368c06b069081b28848022ea65c23/pycares-4.5.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3311f7635f22b90848ec785ad9b41a66e6aa5e22b0ef2c0e05bbe1784fd4bd8d",
"md5": "64e8dfa24902a2dd6c19982c39dcde44",
"sha256": "5c8b87c05740595bc8051dc98e51f022f003750e7da90f62f7a9fd50e330b196"
},
"downloads": -1,
"filename": "pycares-4.5.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "64e8dfa24902a2dd6c19982c39dcde44",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 76535,
"upload_time": "2024-11-26T07:22:21",
"upload_time_iso_8601": "2024-11-26T07:22:21.102984Z",
"url": "https://files.pythonhosted.org/packages/33/11/f7635f22b90848ec785ad9b41a66e6aa5e22b0ef2c0e05bbe1784fd4bd8d/pycares-4.5.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7b194daaa50b6d2fa14c6b4981ca24fa4e7aa33a7519962c76170072ffb06ee",
"md5": "5824db5d38e1aa13a412e2b8bbe52160",
"sha256": "025b6c2ffea4e9fb8f9a097381c2fecb24aff23fbd6906e70da22ec9ba60e19d"
},
"downloads": -1,
"filename": "pycares-4.5.0.tar.gz",
"has_sig": false,
"md5_digest": "5824db5d38e1aa13a412e2b8bbe52160",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 821554,
"upload_time": "2024-11-26T07:22:22",
"upload_time_iso_8601": "2024-11-26T07:22:22.143049Z",
"url": "https://files.pythonhosted.org/packages/d7/b1/94daaa50b6d2fa14c6b4981ca24fa4e7aa33a7519962c76170072ffb06ee/pycares-4.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-26 07:22:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "saghul",
"github_project": "pycares",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pycares"
}