pycares


Namepycares JSON
Version 4.4.0 PyPI version JSON
download
home_pagehttp://github.com/saghul/pycares
SummaryPython interface for c-ares
upload_time2023-10-06 20:15:55
maintainer
docs_urlNone
authorSaúl Ibarra Corretgé
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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.8 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": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Sa\u00fal Ibarra Corretg\u00e9",
    "author_email": "s@saghul.net",
    "download_url": "https://files.pythonhosted.org/packages/1b/8f/daf60bbc06f4a3cd1cfb0ab807057151287df6f5c78f2e0d298acc9193ac/pycares-4.4.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.8 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.4.0",
    "project_urls": {
        "Homepage": "http://github.com/saghul/pycares"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55cb33b0630643cbb3d31db068d5b5beb94ff3040675d1e01fc8d82806bd9c08",
                "md5": "57901b39a8bf0728cf2a0e52e7c61176",
                "sha256": "24da119850841d16996713d9c3374ca28a21deee056d609fbbed29065d17e1f6"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "57901b39a8bf0728cf2a0e52e7c61176",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 136793,
            "upload_time": "2023-10-06T20:14:37",
            "upload_time_iso_8601": "2023-10-06T20:14:37.514915Z",
            "url": "https://files.pythonhosted.org/packages/55/cb/33b0630643cbb3d31db068d5b5beb94ff3040675d1e01fc8d82806bd9c08/pycares-4.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78f041526dea77b2d8659ac5bdef847ec89a268b12f6e5d517990aa7c109c76d",
                "md5": "a6d82600845c1504acee97be4ee0e83c",
                "sha256": "8f64cb58729689d4d0e78f0bfb4c25ce2f851d0274c0273ac751795c04b8798a"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6d82600845c1504acee97be4ee0e83c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 75549,
            "upload_time": "2023-10-06T20:14:39",
            "upload_time_iso_8601": "2023-10-06T20:14:39.546407Z",
            "url": "https://files.pythonhosted.org/packages/78/f0/41526dea77b2d8659ac5bdef847ec89a268b12f6e5d517990aa7c109c76d/pycares-4.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fee65cd11152277b185a41414c922674082b45e685d79684476d69e1679346b",
                "md5": "7e3d51b11e8fb31655dbc64c9e645deb",
                "sha256": "d33e2a1120887e89075f7f814ec144f66a6ce06a54f5722ccefc62fbeda83cff"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e3d51b11e8fb31655dbc64c9e645deb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 289307,
            "upload_time": "2023-10-06T20:14:41",
            "upload_time_iso_8601": "2023-10-06T20:14:41.013869Z",
            "url": "https://files.pythonhosted.org/packages/1f/ee/65cd11152277b185a41414c922674082b45e685d79684476d69e1679346b/pycares-4.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a94c5f3dfecaabfb9cd18d436f79a19839f3ddde23190a9f4910fc6e163aeeb0",
                "md5": "5d7e2aed2b42d9371aba726aa0a04783",
                "sha256": "c680fef1b502ee680f8f0b95a41af4ec2c234e50e16c0af5bbda31999d3584bd"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d7e2aed2b42d9371aba726aa0a04783",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 288748,
            "upload_time": "2023-10-06T20:14:42",
            "upload_time_iso_8601": "2023-10-06T20:14:42.852538Z",
            "url": "https://files.pythonhosted.org/packages/a9/4c/5f3dfecaabfb9cd18d436f79a19839f3ddde23190a9f4910fc6e163aeeb0/pycares-4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9850487b9fadec27213bd5a033eff38f4ae12b1b918cf0b20bcb27587226fa3b",
                "md5": "1c08b58cdf26227ccf3497e666725b03",
                "sha256": "fff16b09042ba077f7b8aa5868d1d22456f0002574d0ba43462b10a009331677"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1c08b58cdf26227ccf3497e666725b03",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 270076,
            "upload_time": "2023-10-06T20:14:44",
            "upload_time_iso_8601": "2023-10-06T20:14:44.858763Z",
            "url": "https://files.pythonhosted.org/packages/98/50/487b9fadec27213bd5a033eff38f4ae12b1b918cf0b20bcb27587226fa3b/pycares-4.4.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": "77c26388d5a49586f1392b0695229b32afcfcb43c25ca915c716be7c7d1693c8",
                "md5": "9af0083aeae7882c0a6729b99cd4603a",
                "sha256": "229a1675eb33bc9afb1fc463e73ee334950ccc485bc83a43f6ae5839fb4d5fa3"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9af0083aeae7882c0a6729b99cd4603a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 280750,
            "upload_time": "2023-10-06T20:14:46",
            "upload_time_iso_8601": "2023-10-06T20:14:46.174708Z",
            "url": "https://files.pythonhosted.org/packages/77/c2/6388d5a49586f1392b0695229b32afcfcb43c25ca915c716be7c7d1693c8/pycares-4.4.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08e6aa6dc24ede6bc21caf9a2c7d9bc295bdc789041115ba02593e4ac55d5a73",
                "md5": "97a968bb213ec921afe3bc28400e8e29",
                "sha256": "3aebc73e5ad70464f998f77f2da2063aa617cbd8d3e8174dd7c5b4518f967153"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "97a968bb213ec921afe3bc28400e8e29",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 260052,
            "upload_time": "2023-10-06T20:14:47",
            "upload_time_iso_8601": "2023-10-06T20:14:47.788531Z",
            "url": "https://files.pythonhosted.org/packages/08/e6/aa6dc24ede6bc21caf9a2c7d9bc295bdc789041115ba02593e4ac55d5a73/pycares-4.4.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56a9aa2510512ad4e30acecaf950f8e9921c0b40585425b50993c7670a4188dc",
                "md5": "98c4a5835d7ff6cefd14496d01ecf300",
                "sha256": "6ef64649eba56448f65e26546d85c860709844d2fc22ef14d324fe0b27f761a9"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98c4a5835d7ff6cefd14496d01ecf300",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 282161,
            "upload_time": "2023-10-06T20:14:49",
            "upload_time_iso_8601": "2023-10-06T20:14:49.693430Z",
            "url": "https://files.pythonhosted.org/packages/56/a9/aa2510512ad4e30acecaf950f8e9921c0b40585425b50993c7670a4188dc/pycares-4.4.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cebe43e0a20e7dc5ec3260edc41f4b684ef08de7e3a8ccee812f1ef874b5b1ea",
                "md5": "6342941a7203dd4c53b41fe261241d13",
                "sha256": "4afc2644423f4eef97857a9fd61be9758ce5e336b4b0bd3d591238bb4b8b03e0"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "6342941a7203dd4c53b41fe261241d13",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 61526,
            "upload_time": "2023-10-06T20:14:51",
            "upload_time_iso_8601": "2023-10-06T20:14:51.021611Z",
            "url": "https://files.pythonhosted.org/packages/ce/be/43e0a20e7dc5ec3260edc41f4b684ef08de7e3a8ccee812f1ef874b5b1ea/pycares-4.4.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9c04a36d105b4930aee9d452f7593efd1b9a0c068bd5b91ed2009b7aad6b50e",
                "md5": "5fb8c2ce0b2389861b2715fc2e4dddb3",
                "sha256": "5ed4e04af4012f875b78219d34434a6d08a67175150ac1b79eb70ab585d4ba8c"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5fb8c2ce0b2389861b2715fc2e4dddb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 76270,
            "upload_time": "2023-10-06T20:14:53",
            "upload_time_iso_8601": "2023-10-06T20:14:53.234438Z",
            "url": "https://files.pythonhosted.org/packages/f9/c0/4a36d105b4930aee9d452f7593efd1b9a0c068bd5b91ed2009b7aad6b50e/pycares-4.4.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3d5e3ef66b2a7616014df1b4276dca26e456ac3dcb938a1866eab989caae6b7",
                "md5": "ac1ae40cc8ef75d7402fd204a7d50f7c",
                "sha256": "bce8db2fc6f3174bd39b81405210b9b88d7b607d33e56a970c34a0c190da0490"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ac1ae40cc8ef75d7402fd204a7d50f7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 136788,
            "upload_time": "2023-10-06T20:14:54",
            "upload_time_iso_8601": "2023-10-06T20:14:54.348179Z",
            "url": "https://files.pythonhosted.org/packages/f3/d5/e3ef66b2a7616014df1b4276dca26e456ac3dcb938a1866eab989caae6b7/pycares-4.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66082f100f98734285175a84edef9cfeb1aad82af9ecebc96b911ca6cc44e012",
                "md5": "f22b966926e8fb5d13b81b9c32c0b084",
                "sha256": "9a0303428d013ccf5c51de59c83f9127aba6200adb7fd4be57eddb432a1edd2a"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f22b966926e8fb5d13b81b9c32c0b084",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 75550,
            "upload_time": "2023-10-06T20:14:55",
            "upload_time_iso_8601": "2023-10-06T20:14:55.727192Z",
            "url": "https://files.pythonhosted.org/packages/66/08/2f100f98734285175a84edef9cfeb1aad82af9ecebc96b911ca6cc44e012/pycares-4.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f5b395d946686d14c4fd91320d7d058ec28124782bb61794bbdcd7e2d9e7f3d",
                "md5": "48610580c0bc3f5c6c575ed96a712cf5",
                "sha256": "afb91792f1556f97be7f7acb57dc7756d89c5a87bd8b90363a77dbf9ea653817"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48610580c0bc3f5c6c575ed96a712cf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 289299,
            "upload_time": "2023-10-06T20:14:57",
            "upload_time_iso_8601": "2023-10-06T20:14:57.065967Z",
            "url": "https://files.pythonhosted.org/packages/7f/5b/395d946686d14c4fd91320d7d058ec28124782bb61794bbdcd7e2d9e7f3d/pycares-4.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83ee504e8ca86cc523ec02deb8407ceca51f69324f631c0ba0919227af632671",
                "md5": "d3c3ccb30fdf428d4627110cef533c72",
                "sha256": "b61579cecf1f4d616e5ea31a6e423a16680ab0d3a24a2ffe7bb1d4ee162477ff"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3c3ccb30fdf428d4627110cef533c72",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 288734,
            "upload_time": "2023-10-06T20:14:58",
            "upload_time_iso_8601": "2023-10-06T20:14:58.416037Z",
            "url": "https://files.pythonhosted.org/packages/83/ee/504e8ca86cc523ec02deb8407ceca51f69324f631c0ba0919227af632671/pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4259bd7076ec5f4106bbe165bb9c5c14b571e66de1fe11f20793273a899b8b9d",
                "md5": "3aa025ec7335c76bff1a22418cd073c9",
                "sha256": "b7af06968cbf6851566e806bf3e72825b0e6671832a2cbe840be1d2d65350710"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3aa025ec7335c76bff1a22418cd073c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 270024,
            "upload_time": "2023-10-06T20:14:59",
            "upload_time_iso_8601": "2023-10-06T20:14:59.950347Z",
            "url": "https://files.pythonhosted.org/packages/42/59/bd7076ec5f4106bbe165bb9c5c14b571e66de1fe11f20793273a899b8b9d/pycares-4.4.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": "627ab398d414ad986c4fce8c5f4a15b51fc3a1e190e6f3a8f31147cbdba07582",
                "md5": "e628b8958f0ad70487a13af517f25b5a",
                "sha256": "ceb12974367b0a68a05d52f4162b29f575d241bd53de155efe632bf2c943c7f6"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e628b8958f0ad70487a13af517f25b5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 280771,
            "upload_time": "2023-10-06T20:15:02",
            "upload_time_iso_8601": "2023-10-06T20:15:02.131308Z",
            "url": "https://files.pythonhosted.org/packages/62/7a/b398d414ad986c4fce8c5f4a15b51fc3a1e190e6f3a8f31147cbdba07582/pycares-4.4.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fb3d1f8ddbab19f6f460a9d9cca4437e260943cd57c4b6ae0ce2cb95f2bc04d",
                "md5": "a836c77163968e5b3db6351b0b8472e7",
                "sha256": "2eeec144bcf6a7b6f2d74d6e70cbba7886a84dd373c886f06cb137a07de4954c"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a836c77163968e5b3db6351b0b8472e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 260096,
            "upload_time": "2023-10-06T20:15:03",
            "upload_time_iso_8601": "2023-10-06T20:15:03.959661Z",
            "url": "https://files.pythonhosted.org/packages/1f/b3/d1f8ddbab19f6f460a9d9cca4437e260943cd57c4b6ae0ce2cb95f2bc04d/pycares-4.4.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d95516dfca7df5b3b221b26f352c2fc1a609fcd342d50d04afe2ca0c72793ed",
                "md5": "ac6c8d2c76260f407b19d17867fc9fd4",
                "sha256": "e3a6f7cfdfd11eb5493d6d632e582408c8f3b429f295f8799c584c108b28db6f"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac6c8d2c76260f407b19d17867fc9fd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 282137,
            "upload_time": "2023-10-06T20:15:05",
            "upload_time_iso_8601": "2023-10-06T20:15:05.290344Z",
            "url": "https://files.pythonhosted.org/packages/4d/95/516dfca7df5b3b221b26f352c2fc1a609fcd342d50d04afe2ca0c72793ed/pycares-4.4.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb28f6521e123522c1fcfc689dbe2d637dec6f07c1240e0159f2bf7dbd8d896b",
                "md5": "6f7604c073219fd3efc0871ad31298a9",
                "sha256": "34736a2ffaa9c08ca9c707011a2d7b69074bbf82d645d8138bba771479b2362f"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "6f7604c073219fd3efc0871ad31298a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 61527,
            "upload_time": "2023-10-06T20:15:06",
            "upload_time_iso_8601": "2023-10-06T20:15:06.787671Z",
            "url": "https://files.pythonhosted.org/packages/fb/28/f6521e123522c1fcfc689dbe2d637dec6f07c1240e0159f2bf7dbd8d896b/pycares-4.4.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b97320f43ece4ff781b5dfbb5d9c98669ec831795c0efc68da1c00e0e4cf7ff9",
                "md5": "328ea6ee6e7032fa14addcc7a3b03e7d",
                "sha256": "eb66c30eb11e877976b7ead13632082a8621df648c408b8e15cdb91a452dd502"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "328ea6ee6e7032fa14addcc7a3b03e7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 76269,
            "upload_time": "2023-10-06T20:15:07",
            "upload_time_iso_8601": "2023-10-06T20:15:07.859924Z",
            "url": "https://files.pythonhosted.org/packages/b9/73/20f43ece4ff781b5dfbb5d9c98669ec831795c0efc68da1c00e0e4cf7ff9/pycares-4.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f8b5a7c02b040a04047c2d6866ddf43a32e55dc67fcca4465917557ce43ba6a",
                "md5": "dbdf13eff9fbc28908c57ae02192dd10",
                "sha256": "fd644505a8cfd7f6584d33a9066d4e3d47700f050ef1490230c962de5dfb28c6"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "dbdf13eff9fbc28908c57ae02192dd10",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 136855,
            "upload_time": "2023-10-06T20:15:08",
            "upload_time_iso_8601": "2023-10-06T20:15:08.938288Z",
            "url": "https://files.pythonhosted.org/packages/7f/8b/5a7c02b040a04047c2d6866ddf43a32e55dc67fcca4465917557ce43ba6a/pycares-4.4.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90993e57353374b012af59011538314668c72d2104c83346f25da48fbf38b75b",
                "md5": "45ff0630f9c46e778b790063b723ec17",
                "sha256": "52084961262232ec04bd75f5043aed7e5d8d9695e542ff691dfef0110209f2d4"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45ff0630f9c46e778b790063b723ec17",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 75581,
            "upload_time": "2023-10-06T20:15:10",
            "upload_time_iso_8601": "2023-10-06T20:15:10.289397Z",
            "url": "https://files.pythonhosted.org/packages/90/99/3e57353374b012af59011538314668c72d2104c83346f25da48fbf38b75b/pycares-4.4.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae647fc939696479cabe85c4bb8dfda78ff32e862c1c1e51af745dcf86413597",
                "md5": "db182e53f14128bc014d3091b6c4e1e6",
                "sha256": "a0c5368206057884cde18602580083aeaad9b860e2eac14fd253543158ce1e93"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "db182e53f14128bc014d3091b6c4e1e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 290509,
            "upload_time": "2023-10-06T20:15:11",
            "upload_time_iso_8601": "2023-10-06T20:15:11.881808Z",
            "url": "https://files.pythonhosted.org/packages/ae/64/7fc939696479cabe85c4bb8dfda78ff32e862c1c1e51af745dcf86413597/pycares-4.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef0df5f42970787482f759523b55093f9dcb040ec8b4973d5b00b39da2b7b34f",
                "md5": "fc45dd64983da33c389e533059ebe644",
                "sha256": "112a4979c695b1c86f6782163d7dec58d57a3b9510536dcf4826550f9053dd9a"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc45dd64983da33c389e533059ebe644",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 290054,
            "upload_time": "2023-10-06T20:15:13",
            "upload_time_iso_8601": "2023-10-06T20:15:13.839372Z",
            "url": "https://files.pythonhosted.org/packages/ef/0d/f5f42970787482f759523b55093f9dcb040ec8b4973d5b00b39da2b7b34f/pycares-4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b9b374dd4149993860cee5f895a9a9d84b767c06eeb26a8892c1dfbb98e3252",
                "md5": "bbc1c677847d155a786fced37da34837",
                "sha256": "8d186dafccdaa3409194c0f94db93c1a5d191145a275f19da6591f9499b8e7b8"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bbc1c677847d155a786fced37da34837",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 270786,
            "upload_time": "2023-10-06T20:15:15",
            "upload_time_iso_8601": "2023-10-06T20:15:15.171559Z",
            "url": "https://files.pythonhosted.org/packages/6b/9b/374dd4149993860cee5f895a9a9d84b767c06eeb26a8892c1dfbb98e3252/pycares-4.4.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": "29c57fcdf6564bfcfa75214ed16eb5b5d60a646010d08c6f4140209a6d0ffd93",
                "md5": "a2b56d7b836930a308095c6b0233687f",
                "sha256": "64965dc19c578a683ea73487a215a8897276224e004d50eeb21f0bc7a0b63c88"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a2b56d7b836930a308095c6b0233687f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 282138,
            "upload_time": "2023-10-06T20:15:16",
            "upload_time_iso_8601": "2023-10-06T20:15:16.487477Z",
            "url": "https://files.pythonhosted.org/packages/29/c5/7fcdf6564bfcfa75214ed16eb5b5d60a646010d08c6f4140209a6d0ffd93/pycares-4.4.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "536eb5487ac50acdfbb8429de0fae2905807c892eec167929cb6326592cf9012",
                "md5": "fe5053303980026f12c7de323b3ed7df",
                "sha256": "ed2a38e34bec6f2586435f6ff0bc5fe11d14bebd7ed492cf739a424e81681540"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "fe5053303980026f12c7de323b3ed7df",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 260851,
            "upload_time": "2023-10-06T20:15:18",
            "upload_time_iso_8601": "2023-10-06T20:15:18.100072Z",
            "url": "https://files.pythonhosted.org/packages/53/6e/b5487ac50acdfbb8429de0fae2905807c892eec167929cb6326592cf9012/pycares-4.4.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a655e978a17db1eef47bf2b6b560b07b449e0aaf79e09580245f7316fbda5646",
                "md5": "1c8414bebcb4c48d071019c1eda94a80",
                "sha256": "94d6962db81541eb0396d2f0dfcbb18cdb8c8b251d165efc2d974ae652c547d4"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c8414bebcb4c48d071019c1eda94a80",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 283226,
            "upload_time": "2023-10-06T20:15:19",
            "upload_time_iso_8601": "2023-10-06T20:15:19.491463Z",
            "url": "https://files.pythonhosted.org/packages/a6/55/e978a17db1eef47bf2b6b560b07b449e0aaf79e09580245f7316fbda5646/pycares-4.4.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2ebae8685a2900c3cf8c052df6536632b1025b7ad55e65d81b44c32385eb283",
                "md5": "f65a8ac1342f135279cb5d6c49c7fdeb",
                "sha256": "1168a48a834813aa80f412be2df4abaf630528a58d15c704857448b20b1675c0"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "f65a8ac1342f135279cb5d6c49c7fdeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 61542,
            "upload_time": "2023-10-06T20:15:20",
            "upload_time_iso_8601": "2023-10-06T20:15:20.700967Z",
            "url": "https://files.pythonhosted.org/packages/c2/eb/ae8685a2900c3cf8c052df6536632b1025b7ad55e65d81b44c32385eb283/pycares-4.4.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d372e6af5a0670eb0b5beadef95479387af22b0ed7088e180677be04bf076476",
                "md5": "83d69ea110871d8ce89f665257aa7021",
                "sha256": "db24c4e7fea4a052c6e869cbf387dd85d53b9736cfe1ef5d8d568d1ca925e977"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "83d69ea110871d8ce89f665257aa7021",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 76252,
            "upload_time": "2023-10-06T20:15:21",
            "upload_time_iso_8601": "2023-10-06T20:15:21.908607Z",
            "url": "https://files.pythonhosted.org/packages/d3/72/e6af5a0670eb0b5beadef95479387af22b0ed7088e180677be04bf076476/pycares-4.4.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0da00ca56016a3f0800bdc517bee84bb8fb72db274f177f9a3fa6b06cc54747",
                "md5": "c23330aa0e316467f68e0c1d19b78ed1",
                "sha256": "21a5a0468861ec7df7befa69050f952da13db5427ae41ffe4713bc96291d1d95"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c23330aa0e316467f68e0c1d19b78ed1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 136794,
            "upload_time": "2023-10-06T20:15:23",
            "upload_time_iso_8601": "2023-10-06T20:15:23.310514Z",
            "url": "https://files.pythonhosted.org/packages/c0/da/00ca56016a3f0800bdc517bee84bb8fb72db274f177f9a3fa6b06cc54747/pycares-4.4.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c1d4c7bcb95bf7d7c342852f20250a0bd6dd5acfe6411cdd3ec898018fb103a",
                "md5": "f7f744c4437e35442907c70bc11d6129",
                "sha256": "22c00bf659a9fa44d7b405cf1cd69b68b9d37537899898d8cbe5dffa4016b273"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7f744c4437e35442907c70bc11d6129",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 75522,
            "upload_time": "2023-10-06T20:15:26",
            "upload_time_iso_8601": "2023-10-06T20:15:26.015466Z",
            "url": "https://files.pythonhosted.org/packages/6c/1d/4c7bcb95bf7d7c342852f20250a0bd6dd5acfe6411cdd3ec898018fb103a/pycares-4.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec2c69f5f2607fd77dd34df572ba2638de170d1a5a04d33ccf7a2309716188ea",
                "md5": "d072eccb8dcc0060ad29ba4c95dafa6c",
                "sha256": "23aa3993a352491a47fcf17867f61472f32f874df4adcbb486294bd9fbe8abee"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d072eccb8dcc0060ad29ba4c95dafa6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 289537,
            "upload_time": "2023-10-06T20:15:27",
            "upload_time_iso_8601": "2023-10-06T20:15:27.328041Z",
            "url": "https://files.pythonhosted.org/packages/ec/2c/69f5f2607fd77dd34df572ba2638de170d1a5a04d33ccf7a2309716188ea/pycares-4.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f64cb3d91df268fa1ef94a7578aef7b8740a68fa360a204d9fdf95b187d3dd8",
                "md5": "68c0426d54868fb40b22d11e3498b9b8",
                "sha256": "813d661cbe2e37d87da2d16b7110a6860e93ddb11735c6919c8a3545c7b9c8d8"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68c0426d54868fb40b22d11e3498b9b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 288958,
            "upload_time": "2023-10-06T20:15:29",
            "upload_time_iso_8601": "2023-10-06T20:15:29.242142Z",
            "url": "https://files.pythonhosted.org/packages/5f/64/cb3d91df268fa1ef94a7578aef7b8740a68fa360a204d9fdf95b187d3dd8/pycares-4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf4a3f7f450fd76d4222f65c3a9a963c4e11acd1bdee7dfddcd496e3b13b1dc6",
                "md5": "63ffe213fbb59607f19826f133ee8495",
                "sha256": "77cf5a2fd5583c670de41a7f4a7b46e5cbabe7180d8029f728571f4d2e864084"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "63ffe213fbb59607f19826f133ee8495",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 270271,
            "upload_time": "2023-10-06T20:15:30",
            "upload_time_iso_8601": "2023-10-06T20:15:30.959463Z",
            "url": "https://files.pythonhosted.org/packages/bf/4a/3f7f450fd76d4222f65c3a9a963c4e11acd1bdee7dfddcd496e3b13b1dc6/pycares-4.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "540a8b870cb9918282b3a389d0e4a948b4dae9f25932e132c82f5e3681d15900",
                "md5": "7e58340297b181cf4d3c4b404f32506f",
                "sha256": "3eaa6681c0a3e3f3868c77aca14b7760fed35fdfda2fe587e15c701950e7bc69"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e58340297b181cf4d3c4b404f32506f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 281272,
            "upload_time": "2023-10-06T20:15:32",
            "upload_time_iso_8601": "2023-10-06T20:15:32.401585Z",
            "url": "https://files.pythonhosted.org/packages/54/0a/8b870cb9918282b3a389d0e4a948b4dae9f25932e132c82f5e3681d15900/pycares-4.4.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6089f846679846ba53869146a1bea741d1b541344c2ccc52a047383c54ea63da",
                "md5": "bc69cf978cf8d7a8dfc379084f2014a2",
                "sha256": "ad58e284a658a8a6a84af2e0b62f2f961f303cedfe551854d7bd40c3cbb61912"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bc69cf978cf8d7a8dfc379084f2014a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 260464,
            "upload_time": "2023-10-06T20:15:33",
            "upload_time_iso_8601": "2023-10-06T20:15:33.634613Z",
            "url": "https://files.pythonhosted.org/packages/60/89/f846679846ba53869146a1bea741d1b541344c2ccc52a047383c54ea63da/pycares-4.4.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ca04a74f8076793a5d9ff479e4e015db8f8ea376697df7730f043b26ffa10bd",
                "md5": "880472114d3869259be6e73a63e1646b",
                "sha256": "bfb89ca9e3d0a9b5332deeb666b2ede9d3469107742158f4aeda5ce032d003f4"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "880472114d3869259be6e73a63e1646b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 282610,
            "upload_time": "2023-10-06T20:15:36",
            "upload_time_iso_8601": "2023-10-06T20:15:36.766661Z",
            "url": "https://files.pythonhosted.org/packages/9c/a0/4a74f8076793a5d9ff479e4e015db8f8ea376697df7730f043b26ffa10bd/pycares-4.4.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07f2a4a0806f934cf45a8000dcec92c10b5816be2a547c9fbeba3149316aa3a0",
                "md5": "6744332f5c4c0c1b7591ea9e0b6f73b3",
                "sha256": "f36bdc1562142e3695555d2f4ac0cb69af165eddcefa98efc1c79495b533481f"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "6744332f5c4c0c1b7591ea9e0b6f73b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 61522,
            "upload_time": "2023-10-06T20:15:38",
            "upload_time_iso_8601": "2023-10-06T20:15:38.011087Z",
            "url": "https://files.pythonhosted.org/packages/07/f2/a4a0806f934cf45a8000dcec92c10b5816be2a547c9fbeba3149316aa3a0/pycares-4.4.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34d59f4496b9ee6f2699e1a87d2b690ec528f9f98defdcd8813ff676401c3a7e",
                "md5": "102f0c5731622cd22d967af49acb4bf7",
                "sha256": "902461a92b6a80fd5041a2ec5235680c7cc35e43615639ec2a40e63fca2dfb51"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "102f0c5731622cd22d967af49acb4bf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 76263,
            "upload_time": "2023-10-06T20:15:39",
            "upload_time_iso_8601": "2023-10-06T20:15:39.720533Z",
            "url": "https://files.pythonhosted.org/packages/34/d5/9f4496b9ee6f2699e1a87d2b690ec528f9f98defdcd8813ff676401c3a7e/pycares-4.4.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd861a7fb93388b01f346a40f69bb2f46d273c14684e8e13fe4e99655a0ff173",
                "md5": "ae6a6be31c4ad286988971d0178ea566",
                "sha256": "7bddc6adba8f699728f7fc1c9ce8cef359817ad78e2ed52b9502cb5f8dc7f741"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ae6a6be31c4ad286988971d0178ea566",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 136790,
            "upload_time": "2023-10-06T20:15:41",
            "upload_time_iso_8601": "2023-10-06T20:15:41.054709Z",
            "url": "https://files.pythonhosted.org/packages/bd/86/1a7fb93388b01f346a40f69bb2f46d273c14684e8e13fe4e99655a0ff173/pycares-4.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae6605e68cf6e4ad975ba10fa2c2583307be656c0b8faf287d84b43bd5982278",
                "md5": "ef85f8a9bedababd639a89b45b816013",
                "sha256": "cb49d5805cd347c404f928c5ae7c35e86ba0c58ffa701dbe905365e77ce7d641"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef85f8a9bedababd639a89b45b816013",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 75523,
            "upload_time": "2023-10-06T20:15:42",
            "upload_time_iso_8601": "2023-10-06T20:15:42.512546Z",
            "url": "https://files.pythonhosted.org/packages/ae/66/05e68cf6e4ad975ba10fa2c2583307be656c0b8faf287d84b43bd5982278/pycares-4.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "652b0fabaeab0b3b7539441e5a7160933fa0be5d21887509fb4adc5513bdf54e",
                "md5": "513759409a4421c25a4afb3f186800e5",
                "sha256": "56cf3349fa3a2e67ed387a7974c11d233734636fe19facfcda261b411af14d80"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "513759409a4421c25a4afb3f186800e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 289296,
            "upload_time": "2023-10-06T20:15:44",
            "upload_time_iso_8601": "2023-10-06T20:15:44.063354Z",
            "url": "https://files.pythonhosted.org/packages/65/2b/0fabaeab0b3b7539441e5a7160933fa0be5d21887509fb4adc5513bdf54e/pycares-4.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9998eff13d45e851af650a83dc265d60d323b3ce362f6b87f59fd04cf7d66459",
                "md5": "4b3ff51f9c992a071b183e201cf1c90d",
                "sha256": "8bf2eaa83a5987e48fa63302f0fe7ce3275cfda87b34d40fef9ce703fb3ac002"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b3ff51f9c992a071b183e201cf1c90d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 288745,
            "upload_time": "2023-10-06T20:15:45",
            "upload_time_iso_8601": "2023-10-06T20:15:45.527458Z",
            "url": "https://files.pythonhosted.org/packages/99/98/eff13d45e851af650a83dc265d60d323b3ce362f6b87f59fd04cf7d66459/pycares-4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae7e50239124b3845b0d8f923a8cd970f1787560a051d310db71258364c70ecb",
                "md5": "09c369d3530defc080c9b711e468c553",
                "sha256": "82bba2ab77eb5addbf9758d514d9bdef3c1bfe7d1649a47bd9a0d55a23ef478b"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "09c369d3530defc080c9b711e468c553",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 270070,
            "upload_time": "2023-10-06T20:15:46",
            "upload_time_iso_8601": "2023-10-06T20:15:46.795917Z",
            "url": "https://files.pythonhosted.org/packages/ae/7e/50239124b3845b0d8f923a8cd970f1787560a051d310db71258364c70ecb/pycares-4.4.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": "ab59586c90c29032fe42561f91601267c9ea1569305c5b0a6a4cdcd0d4721940",
                "md5": "d4cfa18f759c328edd92aa5fbf3fc45c",
                "sha256": "c6a8bde63106f162fca736e842a916853cad3c8d9d137e11c9ffa37efa818b02"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d4cfa18f759c328edd92aa5fbf3fc45c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 280807,
            "upload_time": "2023-10-06T20:15:48",
            "upload_time_iso_8601": "2023-10-06T20:15:48.146789Z",
            "url": "https://files.pythonhosted.org/packages/ab/59/586c90c29032fe42561f91601267c9ea1569305c5b0a6a4cdcd0d4721940/pycares-4.4.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9224e66bd84d7b4103f471ea45093b8fc76595326705ebcb5e9a0500e3454316",
                "md5": "2c9c613fbd2b3827d8a8afc4a213c19f",
                "sha256": "f5f646eec041db6ffdbcaf3e0756fb92018f7af3266138c756bb09d2b5baadec"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2c9c613fbd2b3827d8a8afc4a213c19f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 260063,
            "upload_time": "2023-10-06T20:15:49",
            "upload_time_iso_8601": "2023-10-06T20:15:49.671264Z",
            "url": "https://files.pythonhosted.org/packages/92/24/e66bd84d7b4103f471ea45093b8fc76595326705ebcb5e9a0500e3454316/pycares-4.4.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6dd2e0e12f8bb567610c6217c80632676df0d4c0579b44164868dd86a1f19226",
                "md5": "27d275da9a685f917503b20777807365",
                "sha256": "9dc04c54c6ea615210c1b9e803d0e2d2255f87a3d5d119b6482c8f0dfa15b26b"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27d275da9a685f917503b20777807365",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 282136,
            "upload_time": "2023-10-06T20:15:51",
            "upload_time_iso_8601": "2023-10-06T20:15:51.177440Z",
            "url": "https://files.pythonhosted.org/packages/6d/d2/e0e12f8bb567610c6217c80632676df0d4c0579b44164868dd86a1f19226/pycares-4.4.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67d888a4905c8155b81edea6b58e21defa29468ed949cb493ee043f890b7d9bc",
                "md5": "9bc6345fc00bc9673ddbe96c44af95ba",
                "sha256": "97892cced5794d721fb4ff8765764aa4ea48fe8b2c3820677505b96b83d4ef47"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "9bc6345fc00bc9673ddbe96c44af95ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 61528,
            "upload_time": "2023-10-06T20:15:53",
            "upload_time_iso_8601": "2023-10-06T20:15:53.042161Z",
            "url": "https://files.pythonhosted.org/packages/67/d8/88a4905c8155b81edea6b58e21defa29468ed949cb493ee043f890b7d9bc/pycares-4.4.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "482b0974eef572092bbfbab38a4d173cefaaf3bdf640ac70a125cf7d955cad90",
                "md5": "e2a569522a8069f7eaabf020c5d2bea0",
                "sha256": "917f08f0b5d9324e9a34211e68d27447c552b50ab967044776bbab7e42a553a2"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e2a569522a8069f7eaabf020c5d2bea0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 76267,
            "upload_time": "2023-10-06T20:15:54",
            "upload_time_iso_8601": "2023-10-06T20:15:54.337703Z",
            "url": "https://files.pythonhosted.org/packages/48/2b/0974eef572092bbfbab38a4d173cefaaf3bdf640ac70a125cf7d955cad90/pycares-4.4.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b8fdaf60bbc06f4a3cd1cfb0ab807057151287df6f5c78f2e0d298acc9193ac",
                "md5": "ff4e54e91e32484b189b1e28758ec8c7",
                "sha256": "f47579d508f2f56eddd16ce72045782ad3b1b3b678098699e2b6a1b30733e1c2"
            },
            "downloads": -1,
            "filename": "pycares-4.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ff4e54e91e32484b189b1e28758ec8c7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 821630,
            "upload_time": "2023-10-06T20:15:55",
            "upload_time_iso_8601": "2023-10-06T20:15:55.539059Z",
            "url": "https://files.pythonhosted.org/packages/1b/8f/daf60bbc06f4a3cd1cfb0ab807057151287df6f5c78f2e0d298acc9193ac/pycares-4.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-06 20:15:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "saghul",
    "github_project": "pycares",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pycares"
}
        
Elapsed time: 0.12042s