Skip to main content

Python interface for c-ares

Project description

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 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 :-)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycares-4.6.0.tar.gz (822.1 kB view details)

Uploaded Source

Built Distributions

pycares-4.6.0-cp313-cp313-win_amd64.whl (77.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

pycares-4.6.0-cp313-cp313-win32.whl (62.2 kB view details)

Uploaded CPython 3.13 Windows x86

pycares-4.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (281.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pycares-4.6.0-cp313-cp313-musllinux_1_2_s390x.whl (292.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

pycares-4.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl (298.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

pycares-4.6.0-cp313-cp313-musllinux_1_2_i686.whl (264.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pycares-4.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (279.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pycares-4.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pycares-4.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (295.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

pycares-4.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (305.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

pycares-4.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pycares-4.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (271.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pycares-4.6.0-cp313-cp313-macosx_11_0_arm64.whl (72.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pycares-4.6.0-cp313-cp313-macosx_10_13_x86_64.whl (75.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pycares-4.6.0-cp312-cp312-win_amd64.whl (77.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

pycares-4.6.0-cp312-cp312-win32.whl (62.2 kB view details)

Uploaded CPython 3.12 Windows x86

pycares-4.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (281.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pycares-4.6.0-cp312-cp312-musllinux_1_2_s390x.whl (292.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

pycares-4.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl (298.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

pycares-4.6.0-cp312-cp312-musllinux_1_2_i686.whl (264.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pycares-4.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (279.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pycares-4.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pycares-4.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (295.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pycares-4.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (305.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pycares-4.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pycares-4.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (271.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pycares-4.6.0-cp312-cp312-macosx_11_0_arm64.whl (72.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pycares-4.6.0-cp312-cp312-macosx_10_13_x86_64.whl (75.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pycares-4.6.0-cp311-cp311-win_amd64.whl (77.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

pycares-4.6.0-cp311-cp311-win32.whl (62.2 kB view details)

Uploaded CPython 3.11 Windows x86

pycares-4.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (280.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pycares-4.6.0-cp311-cp311-musllinux_1_2_s390x.whl (291.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

pycares-4.6.0-cp311-cp311-musllinux_1_2_ppc64le.whl (298.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

pycares-4.6.0-cp311-cp311-musllinux_1_2_i686.whl (264.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pycares-4.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (278.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pycares-4.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pycares-4.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (294.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pycares-4.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pycares-4.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pycares-4.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (270.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pycares-4.6.0-cp311-cp311-macosx_11_0_arm64.whl (72.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pycares-4.6.0-cp311-cp311-macosx_10_9_x86_64.whl (75.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pycares-4.6.0-cp310-cp310-win_amd64.whl (77.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pycares-4.6.0-cp310-cp310-win32.whl (62.2 kB view details)

Uploaded CPython 3.10 Windows x86

pycares-4.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (280.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pycares-4.6.0-cp310-cp310-musllinux_1_2_s390x.whl (291.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

pycares-4.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl (298.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

pycares-4.6.0-cp310-cp310-musllinux_1_2_i686.whl (264.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pycares-4.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (278.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pycares-4.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pycares-4.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (294.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pycares-4.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pycares-4.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pycares-4.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (270.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pycares-4.6.0-cp310-cp310-macosx_11_0_arm64.whl (72.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pycares-4.6.0-cp310-cp310-macosx_10_9_x86_64.whl (75.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pycares-4.6.0-cp39-cp39-win_amd64.whl (77.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

pycares-4.6.0-cp39-cp39-win32.whl (62.2 kB view details)

Uploaded CPython 3.9 Windows x86

pycares-4.6.0-cp39-cp39-musllinux_1_2_x86_64.whl (280.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pycares-4.6.0-cp39-cp39-musllinux_1_2_s390x.whl (291.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

pycares-4.6.0-cp39-cp39-musllinux_1_2_ppc64le.whl (298.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

pycares-4.6.0-cp39-cp39-musllinux_1_2_i686.whl (264.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pycares-4.6.0-cp39-cp39-musllinux_1_2_aarch64.whl (278.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pycares-4.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pycares-4.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (294.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pycares-4.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pycares-4.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pycares-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (270.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pycares-4.6.0-cp39-cp39-macosx_11_0_arm64.whl (72.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pycares-4.6.0-cp39-cp39-macosx_10_9_x86_64.whl (75.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

Details for the file pycares-4.6.0.tar.gz.

File metadata

  • Download URL: pycares-4.6.0.tar.gz
  • Upload date:
  • Size: 822.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0.tar.gz
Algorithm Hash digest
SHA256 b8a004b18a7465ac9400216bc3fad9d9966007af1ee32f4412d2b3a94e33456e
MD5 6e80966128ddd4e063af1be13c1afa2e
BLAKE2b-256 6cac05e32fe0abecf98b58cb28646d59280ebad8d79b9785ad6771fa830a458b

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pycares-4.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2e82fe5e269359fbecdff3ed026f491485e92012f8c8a7386d3aa1aa830f1936
MD5 c4ab0ccf690b07221f157bc82d322d04
BLAKE2b-256 9b3f6b976c4fdb43249f72e071b2dc132a829a5aac616a7cbdc56860670c1de3

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pycares-4.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e8689563fb2148feecdf4e03b8845f79dc3115df0fefad99ece718ff0f319004
MD5 31a3f5714ef31018e1870e49c9a18d2f
BLAKE2b-256 63f0c3c0a927d26235929d8ecfe2b4c95a5b701c19d61c7bfd41121765110284

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63012f6194be62a9d6a62bcb57fa3df90bfb58b81f613f548df0289ce6b53067
MD5 4aaee38afeff95fb03782bd475c5d65a
BLAKE2b-256 df295209f3ec6bc20d0c6f81c9b444027ffc346f2b603d5b764abc2bc1153645

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c2b69622fa6fafbda109f8a79bb92d785d38546c81dfd94207fb0ead4d237a36
MD5 b91bdd9f5acb562ac6b8680aaa24f3f7
BLAKE2b-256 cda620d1d368621e8327cc2b178982b1a1990608bb0cb65ec7b822faeee41475

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a1972b3a1473d473e52038f8153b0a9b49860b7dffd183d8bef2fe481e850ce5
MD5 62b9647a8e03fe81b30f5608ca6db1cc
BLAKE2b-256 036bff6cc8b671f7742f9054bf1d50ba3188b1ae8b1a188610dbc9515eb11ca3

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9716e6c1041569fd391aeb71a75b18038cb5e796a93408a88c27cc48dd076035
MD5 c2aca1f7249496c96aeaf2434f5920b3
BLAKE2b-256 ff14fac01d5a2d8401357c1c38fa5053f5d808a79cf853e3eb104bc4af17df2b

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74dd022766d987eb6ea64ef5db45821849508b1818bdbd5ef8d0ad198ab25d02
MD5 cbc938b8f2ee3c0513c53e64c1025313
BLAKE2b-256 27a1c45fce9580658021b96a788cd6e054d24af834fe910ec7067f49d1f713ac

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cae9c72108784d725d2fa38eedbf702a6511cb67e24e27714b35c930e4d3bee6
MD5 5cb62a8584706c85feb7458fe1af6be3
BLAKE2b-256 330ce7cc479a7fb6e849a500985944a5a1a3d8b4fd05b9d4aa98c2e01048e2c2

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e63b5c955b0ade059e147334efc0aafe76ba513f4cf6dd802af9c2450dc4f6ad
MD5 ad18cd81410100407b39562bb1e64c33
BLAKE2b-256 5c9618330188d540be9307f9cdce5ba6336de8590792496af0d2d9e0b23aa870

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d39bb28bebb98a4be0438f06adfed5f4c12b115af531b48cd27692b8704eec02
MD5 8947a5519368cf681ae80ac9f4ce37a4
BLAKE2b-256 2e22aae38c9e676904138535bde04d8315361aaad6afd4da66ec273a38e4aab9

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25f07d1558503ac72475f9bb2ce6116c18fc868ab083b8e67c6433ca0c7b09d3
MD5 144cead4a9b291623e3b16176e7e6a97
BLAKE2b-256 3f46fa7e5d053040c4e8e214864a0b2709eb6ad903b332eb107af34103c8a716

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30ca7df82180edffd0562ebc22228f8dd348f91810d37ac0389ebc73e4a7d723
MD5 586baab3cf177baa4b75399aec3059bc
BLAKE2b-256 34c6803bca58a4a381f60f1654c5fcb06df83789a03f546a6fc883d640eafec4

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02587f22cd7540dbf608dcc942d3c6eee4246bbb76c9cc8449d307188ad26441
MD5 90ab6fe418c7f84b0c2eef34f26df1b5
BLAKE2b-256 5921bac9ebdfe03d3b07456fd44042ae2cb95fd552f6f1050618077957bb6303

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8687028455f243dc3fe047e2e4b4b98d77811ce0e1e83d1929baf4a2f60bcd0b
MD5 700ba1c9437237d1216c098d58aea145
BLAKE2b-256 7aea2cee3369713fafc04f4ac56b13f709879e652a55528c23a88a65eba3abaf

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pycares-4.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6430b996761fe61bf86577183d6d342bc619e75e5cd7251b5827f2c56aae5aca
MD5 5ef19f8c1ea1b01e14671b163810b9bc
BLAKE2b-256 a96c5a680fe0402f1420c8c4ec235a44ae5fb3d2fc5642eca69f39d0f44abbea

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pycares-4.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 efc8bc00eb1d0a84aba1d2edf3f9f96bf3b7b9f076d6bce1394ff895b7618eb7
MD5 84a348e2b8117f93c487818aee2fcb33
BLAKE2b-256 af8b5b0cbb202e72a75ce43efa2c721f479d163b6eacee7907a3602ada68f0a1

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bae8cda2af0c0f3325bb035fe7484e1d88d21698ae7043ad920d5c330a4f694e
MD5 35473dabc5d60a38d319f0a4a84ce3c4
BLAKE2b-256 33f5803674db3ef0f7f0340b4f7faf49ee3b151cf2b3a53ba3605326ea351d0d

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 178287b3a3761024cfd492e1c4293c1ed886cd84ac128278646b317dba082613
MD5 dac8cadfc025955b6ecad3f82834b71b
BLAKE2b-256 af36a30565c579e92d0bce14afad31ed202374fd824e89be87bc40e1cbe86f7e

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7ce93fcde4a35dfc53b32333bee7b2a131bac9a605263e76342cbb37eff3af04
MD5 217338904b822d3c9f3499c233c9ed0a
BLAKE2b-256 f3a75c54f36ba75464e7789d973f7467fbb9d1fe7b3b778c35b85ba886e167ed

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0e02b71765f0ab1a8dd97a126cf4e674f2e98ef9e5108c00ff577bed29c439c
MD5 db06a141949b7ffe46f4833dbc756943
BLAKE2b-256 1884927f45d2b3c8a7cf52c1d94c1d418950f04261443eedea30e997ebe782d5

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2e65edf4a2c84eb61340b7698573dd36f58182641db3d61f44abe142ba39b83
MD5 b3bb475066707caf6608da64b75943f0
BLAKE2b-256 0921d032d9c9aa1c124a3443fa42e0b0311555d4ebd33c4b5cb1c16e180ca9f5

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44224d486b5b03804a2b575f22feae3df22cd07fde2be0ac055c752c17133542
MD5 19252ccbf4aab69a2e865bc49fa196e6
BLAKE2b-256 5c7bdfddb506936ed27ab0dac6f53f5882e2094d5fc4ca1e41c1ed5ae738c316

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ee60a544e8d6ff2a3d5e1518e5c9597d528848413cc330aa46cf3fc62f48d9e0
MD5 4dc56533383203a1677a4b1e321b2e96
BLAKE2b-256 3454f73c6940905269b2967b8c0c637649f16089dfc728b2370bc412e1e39d90

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c49887eaf68c33beb88f5c3454efa9165753df0b27d3cac9ae0f8fa4cc377be4
MD5 07a7206ac459ebb5462da0f3f4ed1b4f
BLAKE2b-256 804f4308a2765e102ddac0413c74a9446c0794685c7b64f5deed770b8a5351be

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3813815990345deaaee9e8db5e42f0c9cd2f46154ff5cb43d765f1c4891e1cee
MD5 3ebc6972e800df044da2c159bf3e9d0e
BLAKE2b-256 139b0b37f124b621921bfb13558989d22aaba6723621d49dc12f93b755ae76ce

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59989759114d68ec4a16d2c2b020ec702b5076e351e9d40f7a4629945f9d56f7
MD5 49559139b8cd4892e9cc89ea8fec4ab8
BLAKE2b-256 9d0576ab86b13684f5e752634030511270264d5f8dc99e23a8bf24af6dc66fb6

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86f443dacbd31b9bd0b4b2124c9268fa6697856b44b5b4a4c7bab9f81615fe5c
MD5 ff3f27322ce7b9b897b8efafef6bd319
BLAKE2b-256 fe3f3335bc34b46c4ad0de3d0a363d6e809e985bab09d24ba5464e8d034914b5

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 21c3254ccbeb0111f0d3e570e55ae1bdb7bc7e4a547b664b33aeff701c794cf6
MD5 bf925b560bc3080ac3ec0698c69f3da8
BLAKE2b-256 bf250da39434c0cecbd309628b8a3bb88b26ec2391d84cf282034bfcd65b0cfa

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pycares-4.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 77.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36d2f38411a9863e4332b2583b12db4cf669fbdf9e74fa5114e1f235c73d5fae
MD5 299fe510fe28e3baa429243db4de0013
BLAKE2b-256 db18d631b258a1b0f42e44a14c15af388fee42fcbbfb8d98c670e244c829892a

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pycares-4.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 982e31e560d3c03b0c836e3f8a3041a68b15436a4849451d4f685149130fac57
MD5 dd646a6b3c82ac536f36f2e14e269b0e
BLAKE2b-256 fde76734bbb833a81fc16bbcddb1e2ba4b50f26559025a60256949dfa2853073

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb2107570ffd414184705525a638bd310a6504816221672f3dec5049be634eaf
MD5 856683275f9458e31dbbcb0f09e2c0b0
BLAKE2b-256 05a98f499198dac6cdb4709b22b2c1da2f9b293e032b12a4b54be112c284275b

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8ceebe4a96c1428d197008bbc3e6ce10a279e70084aed165e37ca4cc4da581c5
MD5 aca8beb4f52f34735fda8ff78ff52e79
BLAKE2b-256 ca602e303ac0733997ed6a380ac5d338d15ebacce54759c18b713eb4106b94ed

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 063275e0f59a8ddc19b56a6a28b6e50290f6f209d7bfa9debeab3ee59c098212
MD5 706c04f3c055a6d265fba1564a40db0b
BLAKE2b-256 68e2c8fd6291e4c828f46891c90016de0366468094d3fb2bdfd882ea9e43d9de

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d30ba8ffb8f8ded2704a9bef79aba738050426691c369d38c1f36d53d6528890
MD5 ff64284a5abc93fee7fdca4e2cd9c78d
BLAKE2b-256 bbe5415c6c462ccf382dc8bd80bbd2206984208675be6a060555afa5f20861b5

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8513edc4392746bb34d963b75df9df6a337ed987476fc0a019546cc4b46283e5
MD5 a7af8223771f745d71b17a3751b6c162
BLAKE2b-256 9e86b9045875839a7b696ca997b90085aa5cb98a7091740c31fef171668abfe2

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2143f0387df6b0ebf8d5a0b6a10f80dacf4f8ef74babc2e683b9f6ed7b95d4f
MD5 993a8c762b76d9e79eff802f1beb1272
BLAKE2b-256 e662155535b4899753a3e7ad6afe2c3a3ac34a0422fea7205fb25cc4ef99617c

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84bb8599fa9e983ad863debdb86fc7d2af44bc910e0e68c3d26b3a346e5ee175
MD5 ac981db511a75a8a209ca448cd764a30
BLAKE2b-256 fe4b1af8217ae68f0a76f07fb55de1269b081dda48f09b4ad39575e6a101223d

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b873b6547de2d8ced4ed17fda6af3a1666d6cdedaf9c47092351aeeac3d1b207
MD5 107912186c773236d8b06a80de63fb08
BLAKE2b-256 ecf6d8caf4e6c4920db71079964f68c2d520f7e318392cd411737983f416c522

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19701de492309b1dcfba44897987fd98571400f964ca5b64377b552f6771ae12
MD5 139654c899b781eda76f56513cc7b9bf
BLAKE2b-256 a35879e0b1133757bef9eacdc4e6bb4603fb1e79fc18b816c1087d02d92269fd

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d77e15b41f3ae8ab2196adc5eb0ce99c3bc3a73cc169cee0140b874aeb57bd0
MD5 0db82516ba890226ac8fe0ce69b53e96
BLAKE2b-256 a466c8e16d5fe4dce3613d30f4dca3735ceaf795ce6174d70f62166f86f9c055

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 889e671a7d1a164585597186b0bf445589f4766f96e3b465da64d0239ba20863
MD5 8f0d5925dc0c2c2c51921b75c3960308
BLAKE2b-256 24085658710a195401b095bcd10a734edf125919574d320dfb14542a54c3ca37

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44973963fa4a3900b2b6c155b2b301456a2b514e5afd93139cda3cfca27e71d0
MD5 93ee8dcdea0158c461c09488d557a2cc
BLAKE2b-256 58758efeb3466629ca8fc6fc4b95a1a5c2d22df040161057de3d4abdbd8741a2

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pycares-4.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 77.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ed932116ac4d180a719bf026e3bbe3c4813933b6145ac2a7c66c01c2cbd6e494
MD5 a0002d3d7cd84885c6daa26d762d95a0
BLAKE2b-256 2fed3c33069a3e03a40dbb169c2342f62d75a1981eb7c9555560a3fdfe184208

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pycares-4.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2ae0827763d0087bafaff746afd4f8d3d92a089097af235b72e8679cc1fdca33
MD5 2472fe0b0cc8131b10051e07ed2edfa0
BLAKE2b-256 923371186c701123ec687caa14aa73f703b6c27e995f6a35945407ef49d6cf1e

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 505e59b558f5f3f1901d22e22d02990dea4c96e32ad251014adc2aadcbea2207
MD5 ddf960abc781414ac8cca5cbd30f9635
BLAKE2b-256 5dfff564bd0d68a7ba455f8d9690d5a92f2163f1f33a3935d9fb9bde72c402fb

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f693d850833d23377c573725ff948dd5e18b95ab9105817f89bbb0d0ddc0e817
MD5 f77dc50788fc757a5a81a62eefb4065a
BLAKE2b-256 6272645a6fbd6645d65184445dbb6e13a86185c889c426703fd0219b05644546

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 15b54b954f58218e1e1195515805985c2f57fd41f911cab9867b396c9235f5bc
MD5 d443c00ac4f31b71f88e7ef33931b7f5
BLAKE2b-256 1e8996918fdb4fbb0e93f4fe8158c47d56e65d72deb8dbd583de24b3cb2c8270

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fce06d93a6e8d433906144d66a4fbbf025e2dd9f6fb8440a27d3739460892cd
MD5 3466e0c0e29a6c37d75c90dcb109686f
BLAKE2b-256 92c453dcc02f08e571cb906560062bcaab76e61fd3c7a0468db0c19bba8bd78e

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 892b66044e2c17a5ec0da9fac60c0f01c92d701ff0adb9fa4b66bca33075f13d
MD5 a1dfa053af9f1ff89985272f4f868c80
BLAKE2b-256 040cdf7afaae76b1efeb4c1a4f41521e17660a73ec236c4053463eb17fadc888

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98603752dd8f395061e97431b9a288cc01be11c7a379654b880d139d0e955785
MD5 70329c0b1f9cf0610f8e6f34a803e64b
BLAKE2b-256 3b9b41debae5314b6c2f9da097e96360841c5dd48fbc7d5df2829c3f234fba12

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0873a0c8a14d2d8f6d6c874703b4ae5e4b88746a2ee7ec045c6096c48ecdce10
MD5 67ae94d73b2ba8581d70175a07d361fb
BLAKE2b-256 d84dac79318e6f50f5b0df0a14169462c88f7db07fe84d8a6aad16a80127b310

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 672c7dc9f517ac0af1a138ee9d6a2b8c6b8a9b2d08e27139f0ec747aa137e40e
MD5 599e00291bfa41a81fd54a1e448cd471
BLAKE2b-256 21991af0b43b2bc099674ac3259f6b72ca4c5fef986fdaafaea29a6dc5122e45

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 968b3b913f131b0366b5359c02fddb44971f65fc54aa7c1e822f1a1df3a37869
MD5 5bd3d4cf9ebb75dcc11db6bcc6a6fe63
BLAKE2b-256 2210dc6a3835b7a13d5d217fe21554a14b017686d86187ac8caf7d87688197f1

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 471de96c6883d89e8913147f85c7c96f61014c1ff3b9993cf8458a4ac0cfebcd
MD5 b02f72f380468588795deb07d2f39f8a
BLAKE2b-256 afb67330be36dded5d4cb9d225f87a188f3878405a884aff1296ee719d03bcde

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b971c676c560634548a2ea674588eefd79ea65d37cbd66adb574aedb6e79012f
MD5 ba3e6b46fe2bb656b9ffcbf4fae31a1c
BLAKE2b-256 f90c38239ca32e261b947f567be0b9bcc50067575c1bdcd22514c7bc2632a3ff

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 faeb63477c00ed984dbefece97a6c1f413f9b3d89731d88bb0d35d754a5c6be4
MD5 6e6ab4a8304d984f865050065f8e995c
BLAKE2b-256 c4c27f90747cae3500a1de397bbdb22560e60a6890880f017661b623d47d4e9a

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pycares-4.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 77.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 baec3dfc2f72661bf5f677018205fd99552be4cb14057fbce16e7046a9e8c653
MD5 b797e79ce92685f707cf2ea74485163e
BLAKE2b-256 20dc6a8ae481103da2c46aed83c9df4f625475a9cc984973131dc9d009c5dc1a

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pycares-4.6.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycares-4.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ce73d6c69eae8662af40e8b41ff8e9c5700c23f7509d826ba5fb86582ada330a
MD5 7232731aba1b98e92f68d2c55f771ea4
BLAKE2b-256 53fd25668a87fa901c3796e0b1a7e7205a6a20144c1149a5c80334350e8d4eb0

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f92d3e8708d039cdd83c5276fdd7960349ad209455eef6e88e52d3ab9af051a
MD5 0d34d2ad3097cb02ea15d411b015b254
BLAKE2b-256 72d49bce1a26788a48ab6b6ae34dd4821da875ae45bbd172919c4be876d77031

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b6b3b4c2d65e527c74bfe8f45840eb1497b842e552e486e02e3d34ac4f5016f2
MD5 bce043cc07aebef028b5123520c668cd
BLAKE2b-256 1949b8d4e308f84945384a0de7ac3752482c7d558be67f89ff7273934e8853de

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cd9ceb60733d892ade72d74fe9c2f3d5540d5ed95346b4cfd8f7c8e83f3a30c0
MD5 54c117e2ebe17f9634b8cac18e0e77a5
BLAKE2b-256 04975e863bade7a0938947032a42015d694167865569f2fecb5758a054838024

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9dab1bd8dbfa50ae534c73b6ed9dfad6341d226bbd535c778973a5de58e888c
MD5 127af6a7d0198a227a70111a976f0e75
BLAKE2b-256 f61642254e43c2d7b5de74e9b1442c4f0e91ad0c038fc70d64df100027b2ac36

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 579399b52dd701ec73adf06629afe8e9b2f7780030d1c55772b874059d70c06b
MD5 211297251a082f3d995f4e8222e5232a
BLAKE2b-256 4a312d25dab3140719dc2356cff6c3abeeb8739c7612818ecac5bdb2a8a85ee8

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62680e3f5e04af4cfd76f9b184a6cfe432846ffbe5c651cc2d6e1c2635de0775
MD5 06a282bedb21187e00e2d6f61aa0d824
BLAKE2b-256 4b4c926671e7271fa3abe1963aa5ef97e0146d8743837c9323043ea68d0f45ac

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce2ca71d8ab9957a8090542d7b7a3f50bca3c33846674cb4b389a9a469adc3d7
MD5 1a81751ed0fde57051497dacd2a9a2ea
BLAKE2b-256 0dd64e33c1c8009281af527e145cfee29ac472273b24ce8b5062916b899a5f21

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bd98e5f48b1e88cc7ba48ffbc7f63d3b8d9bd41300b22472b15ed8dcd6aefaa
MD5 9b5d6c66134409ef47e58d7fe6d47e15
BLAKE2b-256 c5e54c0c8db949e4c5a90e1170fa693412e453470ccf4f3f7525ca40a295e44a

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f8f93289065274aacfc6adf46a72f3d7bc12beb8adb39673ba26fe5d5517d21
MD5 18197c12caad0c93418eed0298e0435a
BLAKE2b-256 a3b6bde8ed3501a8f0c13e7d099866f7684d9ea13f43d534267357f9b1af0d94

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5a3551d530e67e96ef22be487f58569e24d367c7f7f025e745b074e5cbc1602
MD5 4059a92a369b3522d379eaf18bee8f1d
BLAKE2b-256 0418603ecf610e497f8dd112999a26a071a2533d8b68f623d7a543769a8543a6

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ec29531ede0c92b4a51fe42bac61a342d49611c5236878c5c514cf16123f962
MD5 c0f55097afe750d7648671887d3c7ce1
BLAKE2b-256 bcc46bb6c0d5d27c49707c4e28441ef448eda5c7a9e711334cd58ab0423d5fe4

See more details on using hashes here.

File details

Details for the file pycares-4.6.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycares-4.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 904e0ebbed7b392c7b4a30d0bb2d3b58dc37b2dd8808ba0d7f891f4df75a117d
MD5 48fa497ea156b251543bf80f9e64b11d
BLAKE2b-256 4419fdf0f85f52cae71d924c7853df9112638e3452f97b833ff77d32c15ed52c

See more details on using hashes here.

Supported by

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