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.5.0.tar.gz (821.6 kB view details)

Uploaded Source

Built Distributions

pycares-4.5.0-cp313-cp313-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

pycares-4.5.0-cp313-cp313-win32.whl (61.6 kB view details)

Uploaded CPython 3.13 Windows x86

pycares-4.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (281.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pycares-4.5.0-cp313-cp313-musllinux_1_2_s390x.whl (291.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

pycares-4.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl (297.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

pycares-4.5.0-cp313-cp313-musllinux_1_2_i686.whl (263.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pycares-4.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (278.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pycares-4.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pycares-4.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (294.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

pycares-4.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

pycares-4.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pycares-4.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (270.6 kB view details)

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

pycares-4.5.0-cp313-cp313-macosx_11_0_arm64.whl (71.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pycares-4.5.0-cp313-cp313-macosx_10_13_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pycares-4.5.0-cp312-cp312-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

pycares-4.5.0-cp312-cp312-win32.whl (61.6 kB view details)

Uploaded CPython 3.12 Windows x86

pycares-4.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (281.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pycares-4.5.0-cp312-cp312-musllinux_1_2_s390x.whl (291.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

pycares-4.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl (297.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

pycares-4.5.0-cp312-cp312-musllinux_1_2_i686.whl (263.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pycares-4.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (278.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pycares-4.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pycares-4.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (294.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pycares-4.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pycares-4.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pycares-4.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (270.6 kB view details)

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

pycares-4.5.0-cp312-cp312-macosx_11_0_arm64.whl (71.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pycares-4.5.0-cp312-cp312-macosx_10_13_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pycares-4.5.0-cp311-cp311-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

pycares-4.5.0-cp311-cp311-win32.whl (61.6 kB view details)

Uploaded CPython 3.11 Windows x86

pycares-4.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (280.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pycares-4.5.0-cp311-cp311-musllinux_1_2_s390x.whl (290.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

pycares-4.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl (297.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

pycares-4.5.0-cp311-cp311-musllinux_1_2_i686.whl (263.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pycares-4.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (277.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pycares-4.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pycares-4.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (293.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pycares-4.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (303.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pycares-4.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pycares-4.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (269.9 kB view details)

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

pycares-4.5.0-cp311-cp311-macosx_11_0_arm64.whl (71.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pycares-4.5.0-cp311-cp311-macosx_10_9_x86_64.whl (74.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pycares-4.5.0-cp310-cp310-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

pycares-4.5.0-cp310-cp310-win32.whl (61.6 kB view details)

Uploaded CPython 3.10 Windows x86

pycares-4.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (280.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pycares-4.5.0-cp310-cp310-musllinux_1_2_s390x.whl (290.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

pycares-4.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl (297.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

pycares-4.5.0-cp310-cp310-musllinux_1_2_i686.whl (263.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pycares-4.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (277.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pycares-4.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pycares-4.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (293.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pycares-4.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (303.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pycares-4.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pycares-4.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (269.9 kB view details)

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

pycares-4.5.0-cp310-cp310-macosx_11_0_arm64.whl (71.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pycares-4.5.0-cp310-cp310-macosx_10_9_x86_64.whl (74.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pycares-4.5.0-cp39-cp39-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

pycares-4.5.0-cp39-cp39-win32.whl (61.6 kB view details)

Uploaded CPython 3.9 Windows x86

pycares-4.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (280.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pycares-4.5.0-cp39-cp39-musllinux_1_2_s390x.whl (290.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

pycares-4.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl (297.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

pycares-4.5.0-cp39-cp39-musllinux_1_2_i686.whl (263.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pycares-4.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (277.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pycares-4.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pycares-4.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (293.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pycares-4.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (303.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pycares-4.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pycares-4.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (269.9 kB view details)

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

pycares-4.5.0-cp39-cp39-macosx_11_0_arm64.whl (71.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pycares-4.5.0-cp39-cp39-macosx_10_9_x86_64.whl (74.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pycares-4.5.0.tar.gz
  • Upload date:
  • Size: 821.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0.tar.gz
Algorithm Hash digest
SHA256 025b6c2ffea4e9fb8f9a097381c2fecb24aff23fbd6906e70da22ec9ba60e19d
MD5 5824db5d38e1aa13a412e2b8bbe52160
BLAKE2b-256 d7b194daaa50b6d2fa14c6b4981ca24fa4e7aa33a7519962c76170072ffb06ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 76.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 018e700fb0d1a2db5ec96e404ffa85ed97cc96e96d6af0bb9548111e37cf36a3
MD5 88b26548e5e624cdd34f674a14206fb4
BLAKE2b-256 323833889749dde2c3ecab5039d72459769d8714665ba3038e718f514c556517

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3316d490b4ce1a69f034881ac1ea7608f5f24ea5293db24ab574ac70b7d7e407
MD5 68b331b3042a818db5e480007b5d7b93
BLAKE2b-256 02c4aadb6b4a60b040bd6c4de31d971d4a07f54af274594a368de06170ede457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d87758e09dbf52c27ed7cf7bc7eaf8b3226217d10c52b03d61a14d59f40fcae1
MD5 8343b81729082b69d24afe8ebf8db1cf
BLAKE2b-256 1329c329ec7ef6cd88335676d71ed8a059d0fd2f5adcff3ab3537e03327955fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5703ec878b5c1efacdbf24ceaedfa606112fc67af5564f4db99c2c210f3ffadc
MD5 22f29bba444c16fe4ca6dd24c0b1256e
BLAKE2b-256 bd0d6776b00eb6ea3d2742ac4f4e1d4bf170168d0923effffa1963e3b4619019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bc7a1d8ed7c7a4de17706a3c89b305b02eb64c778897e6727c043e5b9dd0d853
MD5 fb8906d43fe238461f847a870dc06c73
BLAKE2b-256 20786819d2c283ce7b53ef639fff44f15ea46dd5dd57307f25d46fb41d83966c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d2afb3c0776467055bf33db843ef483d25639be0f32e3a13ef5d4dc64098bf5
MD5 b897a1e2d4d2e4492ccfd1dd52561a4e
BLAKE2b-256 39badfc4d79a7aefc034d79c9ccf32f47ce9e4a2a5d42f26f2cae7627aafefd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 361262805bb09742c364ec0117842043c950339e38561009bcabbb6ac89458ef
MD5 652a59eb153c991d9f8b5ab37f422da0
BLAKE2b-256 00a1788ffea09b7a57cd9e66610ba5b189d2a0d85853e95b79de547351bd6665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b604af76b57469ff68b44e9e4c857eaee43bc5035f4f183f07f4f7149191fe1b
MD5 f42740eb779fc4248c0d6c48798590da
BLAKE2b-256 a39050f08b6970a40861e5466ec965f9cf505812d7db51d7d4f15b84102dc2c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c76a9096fd5dc49c61c5235ea7032e8b43f4382800d64ca1e0e0cda700c082aa
MD5 3a52fa9ca2afe2fad2f6500bb77ef69a
BLAKE2b-256 ec07a019facc86438181af5cfb045b8d8fe8eeed41117c0abdb6c81acc430e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8371f5ee1efb33d6276e275d152c9c5605e5f2e58a9e168519ec1f9e13dd95ae
MD5 c8818ac5b916516bbfaf8fe4eda6e195
BLAKE2b-256 1a24524ea7bd19edb9392f32a4fcd2eaf11c98fdaeffd28588b4d2bec4ed9b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d435a3b8468c656a7e7180dd7c4794510f6c612c33ad61a0fff6e440621f8b5
MD5 c9d0a8174b8d02c492c2956856fe019a
BLAKE2b-256 b7941e6e41f0f72f32e8e32922b085e5df6a9d0a6dd3f5d41cfe213d8849b15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c589bd4f9160bfdb2f8080cf564bb120a4312cf091db07fe417f8e58a896a63c
MD5 0f5d30106b7118e4b96e80fc372ee5e2
BLAKE2b-256 b94476696e6dba0f166990d033c7889c47dc14db830ed424552020c830d5d409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5c67930497fb2b1dbcaa85f8c4188fc2cb62e41d787deeed2d33cfe9dd6bf52
MD5 967214edbec5d769f05ead5022082f95
BLAKE2b-256 fb573bec0d830efe9521a4706581fa9cc74825d7996104d773c8c971925a3989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 011cd670da7caf55664c944abb71ec39af82b837f8d48da7cf0eec80f5682c4c
MD5 272298a79857f812b7fa18c9eab3a613
BLAKE2b-256 328bb48b6a7c4234d682fb9f0d6904a09333711642b760c79a6a7b2f53cbe76e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 76.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2ce10672c4cfd1c5fb6718e8b25f0336ca11c89aab88aa6df53dafc4e41df740
MD5 6c117eb41beb6d21c6eccd31af7177bb
BLAKE2b-256 c0d71cc9403bf599c3f30d51d37c9639794a607c448a121a0a7447d59dbb6f07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6028cb8766f0fea1d2caa69fac23621fbe2cff9ce6968374e165737258703a33
MD5 b1c5cafad6b5f99c5f0313d289efdf6c
BLAKE2b-256 e5bac8ab1c930a93442e363d49660329fc597b8e84b4d81eee64129f9611f24a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27a77b43604b3ba24e4fc49fd3ea59f50f7d89c7255f1f1ea46928b26cccacfa
MD5 15c030a93b4ab208b7a4db77d525ac16
BLAKE2b-256 bdbc1425763b3d2883039842272e3d295226f91f79d9936d70f93da1b25c371a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0d3de65cab653979dcc491e03f596566c9d40346c9deb088e0f9fe70600d8737
MD5 fbcd9c3cf052d9851394571725281743
BLAKE2b-256 14c5d00ea25938e441081608a4c1a4ee91b3e6a021606a109cb251752aa3bfed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a90aecd41188884e57ae32507a2c6b010c60b791a253083761bbb37a488ecaed
MD5 f44fb0d427d56faada63adea950dc6b1
BLAKE2b-256 4e246a799f616558f0ea2380af76e73c6f246af8bce81dec0107cf2b14493f47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fd87cb26b317a9988abfcfa4e4dbc55d5f20177e5979ad4d854468a9246c187
MD5 47191bd2cea39c256db7369ea8ad8faa
BLAKE2b-256 4bae88d4359c73adf7458595184ee620fbed2d6e53abbd1440b221696d3888e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 525c77ea44546c12f379641aee163585d403cf50e29b04a06059d6aac894e956
MD5 eff8528e7da922713d7d3ff418a62755
BLAKE2b-256 49be02485d69c5f883e24cf13880b9dd85cb90e353470f3f12f3708fbefce953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb20d84269ddffb177b6048e3bc03d0b9ffe17592093d900d5544805958d86b3
MD5 b658f48974c2807e02417168a11738e1
BLAKE2b-256 e3485a1b9b944436a8274918b9b6247fe3e2456993955f597992a0ed1e480b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aea1ebf52767c777d10a1b3d03844b9b05cc892714b3ee177d5d9fbff74fb9fa
MD5 88a05a1721661a5aac06ac51e43e34a7
BLAKE2b-256 ed88823401c364d38dc5079502516bbb44a8884f92b55bb219cf91208a7b9fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9aa0da03c4df6ed0f87dd52a293bd0508734515041cc5be0f85d9edc1814914f
MD5 b3a4187026723097e04643ec302f7ce1
BLAKE2b-256 3062e9186156e2fc88b1687c2e926b8987c6d11b568a23d9ff7be1863b7050fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 597c0950ede240c3a779f023fcf2442207fc11e570d3ca4ccdbb0db5bbaf2588
MD5 56f1bd2875521e71309963238c67f78e
BLAKE2b-256 26642a5338c4d5c72211a7d5bda9c8350086ad9d02c66a2f3cb4933be8daa6ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3125df81b657971ee5c0333f8f560ba0151db1eb7cf04aea7d783bb433b306c1
MD5 40d5a192f27a0177adf07bb9b8a32b81
BLAKE2b-256 1e96d32dab745bd2c50d696e463d65ae72c3bd2f5dbd909aead41d2080f7b33d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c469ec9fbe0526f45a98f67c1ea55be03abf30809c4f9c9be4bc93fb6806304d
MD5 0ec1f2a267ae1f3cb5fa5c74080003d6
BLAKE2b-256 3cdb6aa863a70eec7989b70bd8b666b1b7cb13e446deaad416e2acf69f227e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 506efbe5017807747ccd1bdcb3c2f6e64635bc01fee01a50c0b97d649018c162
MD5 844a38394fd7730d6494e9398aa30fd2
BLAKE2b-256 d2d786d62dec9edb3cbba1a11ef0b9558483659f049d14175d41cbef156cde4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 76.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2c9c1055c622258a0f315560b2880a372363484b87cbef48af092624804caa72
MD5 7a15e27191cf2547b4b5501d907b8fac
BLAKE2b-256 75d6a5d3752b62a4a728c03ce39e4aa9689fc275f1a408fa4f887ff31f01ee52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1004b8a17614e33410b4b1bb68360977667f1cc9ab2dbcfb27240d6703e4cb6a
MD5 b96cd6e51afdd120a36e94f2dcfcdff8
BLAKE2b-256 09a82d6e68eca2cb05d6dce0a5ca8aa8720f4aa2abc97679ebe649c97f3b6e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c6922ecbe458c13a4a2c1177bbce38abc44b5f086bc82115a92eab34418915f
MD5 9fd06968dbef2a8a5c3f36bc9569f3be
BLAKE2b-256 8e6183f4ae4c6222766ac9326ebd383d985b016b9875d7412e01a5d18550e19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9e9b7d1a8de703283e4735c0e532ba4bc600e88de872dcd1a9a4950cf74d9f4f
MD5 c8254c9ed8b85946b66fa23a173011db
BLAKE2b-256 2c16a6f6cf9ca531cfce8d9e0b635a779c514e7aa7eccf9a4d89fb0d32eb102d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ba17d8e5eeec4b2e0eb1a6a840bae9e62cd1c1c9cbc8dc9db9d1b9fdf33d0b54
MD5 89bd70747601dde3df3aa9d2773f8e5a
BLAKE2b-256 5576ae8e641c0f9ea6a98b9143a4b6a619ed4b35451b121265f4fded7c8d638d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac57d7bda925c10b997434e7ce30a2c3689c2e96bab9fd0a1165d5577378eecd
MD5 947318ec1697323a1ee185e371abf4e0
BLAKE2b-256 fa6eed28d24cf7a8ade789a25db4e3885bdf8ffb1276e00f958c7de452f6383f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a6649d713df73266708642fc3d04f110c0a66bee510fbce4cc5fed79df42083
MD5 f78e22190621bed36b144065d72aaf5c
BLAKE2b-256 a505163aedb018de14b6b94ebd183ff94b914d900cdc7c3ee65ebc845e44463e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdc3c0be7b5b83e78e28818fecd0405bd401110dd6e2e66f7f10713c1188362c
MD5 2a47110acbfe74d920ad5fe556c38708
BLAKE2b-256 bb06a3def79dcf29671bb5582c0654d9461f865001254b1b52226dd2958270e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ceaf71bcd7b6447705e689b8fee8836c20c6148511a90122981f524a84bfcca9
MD5 0f9145421c83fdae4b94b6454f1d60fe
BLAKE2b-256 30cd7b584e8aba8efb33bd1447cd66cf30512a9d989aae76c7baaf7ffd87c9b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f742acc6d29a99ffc14e3f154b3848ea05c5533b71065e0f0a0fd99c527491b2
MD5 36c757e65cea3b98340c7a0dc4414fe3
BLAKE2b-256 ebafe28bd3aa1c87b624ba8a422f5f86ff7a2eee6d2137c3f43c5de543b5d0e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f38e45d23660ed1dafdb956fd263ae4735530ef1578aa2bf2caabb94cee4523
MD5 316d7e60048729db05ec3c77b99ab5d3
BLAKE2b-256 5291c152c9e90e9ea7b2bc6381abecdc52ccf1f18b5aa5e67c3a4264f9ae1b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd458ee69800195247aa19b5675c5914cbc091c5a220e4f0e96777a31bb555c1
MD5 564f711e056dbfaea8c11eb078aff600
BLAKE2b-256 6bfbfe3c26ba45d0a0c3bd16a296725760c9787e828839dab8458ef96ab43a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 160e92588cdf1a0fa3a7015f47990b508d50efd9109ea4d719dee31c058f0648
MD5 b94b990d2121b96c59cdbd5b17d3d130
BLAKE2b-256 4a5597d90ab79e16e641c35a9b53b437e6556993ea904af2e1ce8982a6b8191b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ca7a1dba7b88290710db45012e0903c21c839fa0a2b9ddc100bba8e66bfb251
MD5 7dfeabc12f46a1a378614dc71f912e9d
BLAKE2b-256 65720dbd1169058924af1f8f1c1421fba64b7fb0ab2b8a489789f17c4b8527ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 76.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f87d8da20a3a80ab05fe80c14a62bf078bd726ca6af609edbeb376fb97d50ab
MD5 9d29b39fcea69ead7303b32ae1a38bfe
BLAKE2b-256 23b4013b9a19b589f936730a1d858cad25c9fdabf8d91968ec6918c3228842cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b1859ea770a7abec40a6d02b5ab03c2396c4900c01f4e50ddb6c0dca4c2a6a7c
MD5 0205ed79a02c0260b29bad583b80b559
BLAKE2b-256 b30ae42a4aa2c456e62485128c984a2c8e078966b4047d016651e1570f34c027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aed5c2732f3a6bdbbfab202267d37044ca1162f690b9d34b7ece97ba43f27453
MD5 f0c583135253c6639d09e7dfc2ac0dc0
BLAKE2b-256 185fe8b5b142075c0dfeb7f980fec17c8f970955ede842f0234f360e5a3c5610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d0428ef42fcf575e197047e6a47892404faa34231902a453b3dfed66af4178b3
MD5 440d87bc87f21c1fa525ce3d85af830c
BLAKE2b-256 8790266f05bb0781d1705a14140c9a6742dcbd7be6fad96a2d2c807193b1b285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8addbf3408af1010f50fd67ef634a6cb239ccb9c534c32a40713f3b8d306a98e
MD5 3bc23185949e653370def41784d678ca
BLAKE2b-256 831bc33e94fd0de4a67a833818e920ab4541aeca8adf067d780fa031ffef0d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4709ce4fd9dbee24b1397f71a2adb3267323bb5ad5e7fde3f87873d172dd156
MD5 e1d7596f3c983c9aa69ee378f1bec870
BLAKE2b-256 2ebb24fe9fed26c110fd2c219cdf133bab7e18e73896bda8960be50c896cfc66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95522d4840d702fd766439a7c7cd747935aa54cf0b8675e9fadd8414dd9dd0df
MD5 3825fde2f55d3e2ddc2a79231abce75f
BLAKE2b-256 ab5382f52dc86d00a2df90acef03d549b2afedba00184228f2420c112e5146d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de6e55bd9af595b112ac6080ac0a0d52b5853d0d8e6d01ac65ff09e51e62490a
MD5 e42d6f357e94e194f28cb5d9fb6e3e45
BLAKE2b-256 d3b66673cb88e128bedb3d6c675429d5de4b17f35ffc45dc5b5508393c38626a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e48b20b59cdc929cc712a8b22e89c273256e482b49bb8999af98d2c6fc4563c2
MD5 59c3440b36ebb151392e6eda4e06db2e
BLAKE2b-256 ceb6c82bb7f5b04278b294f802713fd19c00cab761b8c3b5f0179e5f75829cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 723ba0803b016294430e40e544503fed9164949b694342c2552ab189e2b688ef
MD5 3c5aecad4c16a366b113ce210d6a3160
BLAKE2b-256 86b08d137cf324e0991fd0a70e2b289126b706b71ca2cbad294039ef54819e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e322e8ce810026f6e0c7c2a254b9ed02191ab8d42fa2ce6808ede1bdccab8e65
MD5 0c50724f43c1c9297274cbfe928c6ff4
BLAKE2b-256 34154d2e3da5b3ed93d0f8cca785729ce50279c6f8a0855b040f19ff6ca57b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6f4b9063e3dd70460400367917698f209c10aabb68bf70b09e364895444487d
MD5 e95d957fe1bf12c0090205f44cd76a17
BLAKE2b-256 417ddd90ec643b28941575afcbcb29ce01d25c3eac199e674445349b77ace327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fefc7bebbe39b2e3b4b9615471233a8f7356b96129a7db9030313a3ae4ecc42d
MD5 4e937c976dfd03204e6e106e8af22d6e
BLAKE2b-256 e2053b01a1f890cb270896ee6898a07a33cb6abe9fcc2c1cef8d719f5a2f2d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13a82fad8239d6fbcf916099bee17d8b5666d0ddb77dace431e0f7961c9427ab
MD5 8bbf82097cfbc42085b8fc8b5118e8ba
BLAKE2b-256 91e9109c7ed1db9a9b30720c528f54a219ef1c07f16f364bc28b1f6bbcdb7932

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 76.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5c8b87c05740595bc8051dc98e51f022f003750e7da90f62f7a9fd50e330b196
MD5 64e8dfa24902a2dd6c19982c39dcde44
BLAKE2b-256 3311f7635f22b90848ec785ad9b41a66e6aa5e22b0ef2c0e05bbe1784fd4bd8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-4.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pycares-4.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 887ac451ffe6e39ee46d3d0989c7bb829933d77e1dad5776511d825fc7e6a25b
MD5 e122a9abd3c204ade7662771fb7cb358
BLAKE2b-256 46e631a5a91b80173064215a98cb9cef2ae368c06b069081b28848022ea65c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed1d050d2c6d74a77c1b6c51fd99426cc000b4202a50d28d6ca75f7433099a6b
MD5 54f5b265db02cbf6f2cffb3edbc37d0b
BLAKE2b-256 bd62851b9dfd2059e2ec8c6ccaab5c4d6c0029e50e598d539f5a45cbe9317a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 37add862461f9a3fc7ee4dd8b68465812b39456e21cebd5a33c414131ac05060
MD5 e39eaec07dee0b30f054a264eaa5e1e0
BLAKE2b-256 f9e6cb9e7dc8f840d48c90891101331c8e89dee2e5470522815cd4c02b8b4142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 32919f6eda7f5ea4df3e64149fc5792b0d455277d23d6d0fc365142062f35d80
MD5 0293c2ac78e37937968b066a428ae952
BLAKE2b-256 4f66da7656251db768e9e0ebcc7289f50d7492cefa23dbc0bb26d8b7db367a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96d3aecd747a3fcd1e12c1ea1481b0813b4e0e80d40f314db7a86dda5bb1bd94
MD5 7e4f09306b629b0ce30532fae817142d
BLAKE2b-256 80be04c6c8dd3005bef108f5ef6c8c9c4efd43097c0da83cb33090a2d6a4245b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ea2f6d48e64b413b97b41b47392087b452af9bf9f9d4d6d05305a159f45909f
MD5 350814e88a0bfff1770057ad96737290
BLAKE2b-256 95ff171d5d58f7047f53f274209741c0e6860786aaaecbaf8f509313ab1c8265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f096699c46f5dde2c7a8d91501a36d2d58500f4d63682e2ec14a0fed7cca6402
MD5 76d98768acc2566a0e5c92cdd2a32c6a
BLAKE2b-256 d32d9098475e2f4e7ec9b05bf198eac35397999e09187f23b6d0c24ff293cb1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1d0d5e69fa29e41b590a9dd5842454e8f34e2b928c92540aaf87e0161de8120
MD5 29d6af36141052ae48f7e899fc22849b
BLAKE2b-256 413b8cf5b258843d04d518d526a1fa26a8360141de4d5ed787f5cc8e3aa75d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17a060cfc469828abf7f5945964d505bd8c0a756942fee159538f7885169752e
MD5 e9a1ca008cd766a3c7c1f503f871e42b
BLAKE2b-256 901e4d1c33c37890b80bb18ab11fb5a133dda61b9dd57f0523efba85042eb483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32d33c4ffae31d1b544adebe0b9aee2be1fb18aedd3f4f91e41c495ccbafd6d8
MD5 207a9f1d479473f231ab3eb114521650
BLAKE2b-256 714777c2350ce1b5384f3e3e4fbe93cb083ddf7ebdceaa3c8adee315b9c8644e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 429fe2065581a64a5f024f507b5f679bf37ea0ed39c3ba6289dba907e1c8a8f4
MD5 45a906a95d96ef7d4591d166aa839ce7
BLAKE2b-256 93de212661af53343cead925e8ad84cd8b636ee317ab49442f1fc26e797543b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba69f8123995aa3df99f6ebc726fc6a4b08e467a957b215c0a82749b901d5eed
MD5 f2e1e035e0b8bafa8b8709fadbfcf44b
BLAKE2b-256 824bd9f129cce92e0b4dd7f01953a5cfcb479488d7aafcb04245fcb98957ea2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pycares-4.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78c9890d93108c70708babee8a783e6021233f1f0a763d3634add6fd429aae58
MD5 08b35149f76e572349b052ec32798aee
BLAKE2b-256 68c4db5755746616ac22316a0be3f8211e9b641b9d5fedb844fb3dd4170d66b8

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