Skip to main content
Warning Some features may not work without JavaScript. Please try enabling it if you encounter problems.

Python interface for c-ares

Project description

Looking for new maintainers

https://github.com/saghul/pycares/issues/139

pycares: Python interface for c-ares

https://badge.fury.io/py/pycares.png https://github.com/saghul/pycares/workflows/Test/badge.svg

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 and as of pycares 1.0.0 this is a strong requirement. Upstream c-ares is not willing to apply a patch adding TTL support. I did apply the patch to the bundled c-ares, but unfortunately it breaks the ABI, so attempting to use a system provided c-ares is not possible.

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 encodingm 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

There are several ways of running the test suite:

  • Run the test with the current Python interpreter:

    From the toplevel directory, run: python tests/tests.py

  • Use Tox to run the test suite in several virtualenvs with several interpreters

    From the toplevel directory, run: tox -e py36,py37,py38,py39 this will run the test suite on Python 3.6 through 3.9 (you’ll need to have them installed beforehand)

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.6 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-3.2.0.tar.gz (217.9 kB view details)

Uploaded Source

Built Distributions

pycares-3.2.0-cp39-cp39-win_amd64.whl (76.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pycares-3.2.0-cp39-cp39-win32.whl (60.3 kB view details)

Uploaded CPython 3.9 Windows x86

pycares-3.2.0-cp39-cp39-manylinux2010_x86_64.whl (258.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

pycares-3.2.0-cp39-cp39-manylinux2010_i686.whl (240.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pycares-3.2.0-cp39-cp39-manylinux1_x86_64.whl (258.6 kB view details)

Uploaded CPython 3.9

pycares-3.2.0-cp39-cp39-manylinux1_i686.whl (240.2 kB view details)

Uploaded CPython 3.9

pycares-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl (67.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pycares-3.2.0-cp38-cp38-win_amd64.whl (76.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pycares-3.2.0-cp38-cp38-win32.whl (60.3 kB view details)

Uploaded CPython 3.8 Windows x86

pycares-3.2.0-cp38-cp38-manylinux2010_x86_64.whl (259.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pycares-3.2.0-cp38-cp38-manylinux2010_i686.whl (240.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pycares-3.2.0-cp38-cp38-manylinux1_x86_64.whl (259.0 kB view details)

Uploaded CPython 3.8

pycares-3.2.0-cp38-cp38-manylinux1_i686.whl (240.6 kB view details)

Uploaded CPython 3.8

pycares-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl (67.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pycares-3.2.0-cp37-cp37m-win_amd64.whl (76.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

pycares-3.2.0-cp37-cp37m-win32.whl (60.3 kB view details)

Uploaded CPython 3.7m Windows x86

pycares-3.2.0-cp37-cp37m-manylinux2010_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

pycares-3.2.0-cp37-cp37m-manylinux2010_i686.whl (239.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pycares-3.2.0-cp37-cp37m-manylinux1_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.7m

pycares-3.2.0-cp37-cp37m-manylinux1_i686.whl (239.7 kB view details)

Uploaded CPython 3.7m

pycares-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (67.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pycares-3.2.0-cp36-cp36m-win_amd64.whl (76.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

pycares-3.2.0-cp36-cp36m-win32.whl (60.3 kB view details)

Uploaded CPython 3.6m Windows x86

pycares-3.2.0-cp36-cp36m-manylinux2010_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pycares-3.2.0-cp36-cp36m-manylinux2010_i686.whl (239.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pycares-3.2.0-cp36-cp36m-manylinux1_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.6m

pycares-3.2.0-cp36-cp36m-manylinux1_i686.whl (239.6 kB view details)

Uploaded CPython 3.6m

pycares-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (67.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pycares-3.2.0.tar.gz
  • Upload date:
  • Size: 217.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0.tar.gz
Algorithm Hash digest
SHA256 7d811f57f05141566186f47d3f1909e6005c43f9b9858466f9c64c6f732b87cd
MD5 8f9838b2ca94dc7748825b7969f84e6b
BLAKE2b-256 f92e7d92fdc4690f06e7b704c0242ed76d7ec72467a5ffd93f2b2051c0488fdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 76.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 be601ca0e6bfaf5a2ca9d0df47ef6e39fac2fb6ff03d9274a35bef0e4bf1323f
MD5 51943a43042d3050d92bbe4b080576f7
BLAKE2b-256 68bf308689293f73721ccbd0ba4b6266214da7bda40636be864d900b7ccba2df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 60.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c182c7ff415b61380c2bbc9e1fd1382b5aeaf5dacd4c54ef442300f81c7efba1
MD5 16138f1f668e81c7b5198fa540404b5d
BLAKE2b-256 a37d0545940dbfe353be0e130eb6a2b7292b466ca06d7a52c335f3b26d63726a

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 258.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 79c6b88952900a32317ac9062824de7dd5cfb2b21a619004c6cd684299c3f341
MD5 59dcd51d37ef528a6d7df83e753e54b6
BLAKE2b-256 47f3ce27b66fd8b89667f321702949fc2ff5bf4b5492b4a8836e829f1f250652

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: pycares-3.2.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 240.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 be3d2e281e378d308ef93b685a77551f2f12663b02af06008c07bf5aae8f253e
MD5 73dbd142e1c5eb45110d0c6eb2cee138
BLAKE2b-256 4d18c6dd77e0e89583ed9350903fc4c7e62133e1c182efc2626ce112815796ce

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 258.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c01d108aa824c5d56fa4977b4995f18a5adbfe47ff2f412e761957105448c6d
MD5 4e6a4331af4fb535b916d5244da76455
BLAKE2b-256 5d624865353826d82dece02913616dc809474ba1c6d940164489943ae43af2bf

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pycares-3.2.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 240.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 317523c8cbc6359fb9a7eb89175e59d06ad23e7173b89ff7d5d2859edc8ee514
MD5 4056ef93e14baf2a6b29aa6da7d60372
BLAKE2b-256 faac5eb40ff5b257acd14c7d1981b32e6c02e1884e3654495f84828cd9d4cba3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 67.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fd92537ecab5bd7c055fac63aa3bd6c8a36959e7e4adaf63093a1e5faa8c23b
MD5 7b527c433065a43d822746184cf94437
BLAKE2b-256 d1eb6d4f2d6bbbfa4e9581a4a40121961dfdbeb7ba548b8cf6d5b9f02f838466

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 76.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cf5182164adaed6f1a800bf4476ffb825ff7ce682576edb2fd17a48a5f59f90e
MD5 17cf11ef6790f442486e2acb38f5fc06
BLAKE2b-256 9d8745ee55ca4e56c7f2f50963ded837c5d41be6f5bdc57ab922c11914bcb3a9

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pycares-3.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 60.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5e6d2f696576524d34f0462562376669827bcd417d1418b411abab831116ac59
MD5 a2f9dc06d7117b91635ea497c3a5e6eb
BLAKE2b-256 822b2d3cc81af5782685a2db5962ab39799d84b563c9eefdfb12783eb103e165

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 259.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d9ca97529c74988d40a55d231aaf6f7cc062ef115cd96b513e4850f3661bc5e8
MD5 d4f330e7c752daa981218d9ffdb27626
BLAKE2b-256 f18d94d9931003d7134728b09e091699fcefa472305ddcbe7b340d9794ff9c22

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pycares-3.2.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 240.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7862f614cdb992e8c08724167047642316873b3df08f9b87e7ff25f34e47bde2
MD5 4019b914bc192ba0543fb46d11cd8d4f
BLAKE2b-256 aea12b715afe00f8a1d34eb8f68861c2b51a0cae20df0398b13d37c2b9fa592e

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 259.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eb0109a1c26ca637ce7092f28ef886a5bf1efaddd12cbfbdd14814d956b5a7d6
MD5 22fb996bd56fc7a98e571ff64ee5b022
BLAKE2b-256 39e24581b22434cc76e949b33372de41a6808f52663b9a5d4f498f393203703d

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pycares-3.2.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 240.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 198674992e31e7d87d72d983c3adb4bd2145c092c1e5d2fef81904e278ebbaaf
MD5 ded01ea7a1c8c659a960804fc78c3361
BLAKE2b-256 0f1986494f3e959e68de4b9575f2e91387dc7a29bc3ee7a5cef42fb1a055bf4d

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 67.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccce86986930fc52d42ea9d43265a5c881299dbdeba1635df61bf3d314d5af26
MD5 e033d5a807190daaf6258aa73391e590
BLAKE2b-256 d405f1c718c1b07c014c709a6747863ba7babec32b9c44bcc2945da89bb15391

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 76.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1488a71ee64bcfb83b24e73e4744ca681952ac2e24274854c94f5643f19c5d4e
MD5 31da0e19cc1848c8ae407d1d5f40ad57
BLAKE2b-256 df15c6e7e0b580f83dd9eb6b24a3bdea09841e21abb11989337619ffbbe1547e

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pycares-3.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 60.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 634d7aafedceb4de4a1131d4337b78d484a6e74604db9c0c06c59d8bb6ce5d76
MD5 e0bad9892027bbb3e00f3ba9f16249a6
BLAKE2b-256 52523922ac456df5931e15c14cbbeb787da28729ca600e5a6d838eaa299a13fb

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 258.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 97538aab8a6281a7e0d696e0d92eb3b127a06b1322845b98090aaec668659c1d
MD5 f5273ce3c9c1e557d6773fbf7d823bb9
BLAKE2b-256 544b8ca119bbf812d5586f33cbd0ae502f599236457fc4cc0670e820e161d09b

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pycares-3.2.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 239.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a93083cd0adf83d4ce80e2a37a62109b41dc41a453aeb23b7b21bdad5d046014
MD5 edd13a9edba18e593a1ea98865c4b7b7
BLAKE2b-256 ed1d3719738b17a268f665ff1315ef961d14c982db05cace0754f1810ef2bf16

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 258.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e2cbf0f0ecad2a91483746a944aa9ae02469c9cd51bcb68fbf21eb2fbb00591a
MD5 5ee10369f9957bf025984a815e715d11
BLAKE2b-256 1aaf14d1fc0ce6d0442e57be265ecd85ebb49e01aa9328c8939c271958086bb6

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pycares-3.2.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 239.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 753de920c649b5ab44c735c9dcb6c7fba33f3cc6ca2fa8f0de3a83bc5e99e2fa
MD5 66d4fadc520ca38b60a06679f3d6174a
BLAKE2b-256 fab6eddc91b9dfe0a9ee77c93f0d0144b0b8fb2703f1c852837089552af3fbde

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 67.8 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d25247dc2ff0445f4b21b3dc95c4003a85a54c3616060884967c1ad86c68de65
MD5 4b682bde50b99fe4bb1c746f94a74de5
BLAKE2b-256 19abd64a313e59a798afd16c0636079c3db6e682f8958baf726dcf7a22600bbb

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 76.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3d8c25f0a0bfb28a0646310a4e5b6366e7903afe04694541195d8a53aba6755a
MD5 58e743e63f4c5ca70da6ad9f7d402c60
BLAKE2b-256 712f82353810862d3fe4ffdee1014e2d43870d6386ca01f6b2f9af2cf140a616

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pycares-3.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 60.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7cb2b898578abb2b26c1e687796e71726d416b5d94a9049d9e118ad747d6d63a
MD5 7c753f38db4c429f4a105e4d8e379868
BLAKE2b-256 18c637a107a68968ed29ed0a0414d97c8e29b0d7dbc3b9328739b77e8e6499b0

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 258.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 429ca2748a948ceae19d6bacc8e748071fc2d7d50eb638e489566dcad7e5a29f
MD5 364b3486e7b44df2e13d9ca266dd08b0
BLAKE2b-256 1e50a242b1c07ee5cdc3ff78b363043051f1399a84d41b7d2468fffdbbf2334a

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pycares-3.2.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 239.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2e233765d714f7d658f46384d4a9e9f06ee75ec2a07fb2e784db8ed368fb9c01
MD5 794aea056b1a101d9f68e01ea11e1f36
BLAKE2b-256 1d7e6085ef95019e3bd2e2c2a0d7e1fa192f767cb82dbba6e69b1449432ccaae

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 258.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b9facddc4655ac0aa1615000bf759ec1940297f81c37e6df7b057628ac4aade9
MD5 af9c58812cd896d38670e205b824e111
BLAKE2b-256 97762590878bac8394af66b4bd5ad54cca0de3fa111416b5ed3c36e4964db441

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pycares-3.2.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 239.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ff30e8b73c8d00dca6bcd930d5691c8564a954a12ee28f0aa72af56c9470bde
MD5 0a2295ebb578fe2621737cb9db7beb74
BLAKE2b-256 fc49c3837c2579f11ace8bc119081f1a9c8359ced622b7867e63e73b98628e0b

See more details on using hashes here.

File details

Details for the file pycares-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pycares-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 67.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for pycares-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb696cb6dd84e0f0b5377ea88264decab9ca09bd9f0c373f721c8686ddb92cdb
MD5 62a5a3b20c0518403cf4368e72480c79
BLAKE2b-256 b89fb5bedcb9a6eeeaec8cb463801fb9e00ed9e2a23969efbf39cc7386506d93

See more details on using hashes here.

Supported by

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