Skip to main content

Python interface for c-ares

Project description

https://badge.fury.io/py/pycares.png https://secure.travis-ci.org/saghul/pycares.png?branch=master https://ci.appveyor.com/api/projects/status/vx1wbkfq3l7nm1m8?svg=true

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

  • 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 py35,py36,py37 this will run the test suite on Python 3.5, 3.6 and 3.7 (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.5 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.1.0.tar.gz (212.5 kB view details)

Uploaded Source

Built Distributions

pycares-3.1.0-cp38-cp38-win_amd64.whl (70.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pycares-3.1.0-cp38-cp38-win32.whl (57.1 kB view details)

Uploaded CPython 3.8 Windows x86

pycares-3.1.0-cp38-cp38-manylinux2010_x86_64.whl (228.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pycares-3.1.0-cp38-cp38-manylinux2010_i686.whl (187.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pycares-3.1.0-cp38-cp38-manylinux1_x86_64.whl (228.1 kB view details)

Uploaded CPython 3.8

pycares-3.1.0-cp38-cp38-manylinux1_i686.whl (187.9 kB view details)

Uploaded CPython 3.8

pycares-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl (64.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pycares-3.1.0-cp37-cp37m-win_amd64.whl (70.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

pycares-3.1.0-cp37-cp37m-win32.whl (57.1 kB view details)

Uploaded CPython 3.7m Windows x86

pycares-3.1.0-cp37-cp37m-manylinux2010_x86_64.whl (226.9 kB view details)

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

pycares-3.1.0-cp37-cp37m-manylinux2010_i686.whl (186.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pycares-3.1.0-cp37-cp37m-manylinux1_x86_64.whl (226.8 kB view details)

Uploaded CPython 3.7m

pycares-3.1.0-cp37-cp37m-manylinux1_i686.whl (186.8 kB view details)

Uploaded CPython 3.7m

pycares-3.1.0-cp37-cp37m-macosx_10_6_intel.whl (121.2 kB view details)

Uploaded CPython 3.7m macOS 10.6+ Intel (x86-64, i386)

pycares-3.1.0-cp36-cp36m-win_amd64.whl (70.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

pycares-3.1.0-cp36-cp36m-win32.whl (57.1 kB view details)

Uploaded CPython 3.6m Windows x86

pycares-3.1.0-cp36-cp36m-manylinux2010_x86_64.whl (226.9 kB view details)

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

pycares-3.1.0-cp36-cp36m-manylinux2010_i686.whl (186.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pycares-3.1.0-cp36-cp36m-manylinux1_x86_64.whl (226.9 kB view details)

Uploaded CPython 3.6m

pycares-3.1.0-cp36-cp36m-manylinux1_i686.whl (186.8 kB view details)

Uploaded CPython 3.6m

pycares-3.1.0-cp36-cp36m-macosx_10_6_intel.whl (121.1 kB view details)

Uploaded CPython 3.6m macOS 10.6+ Intel (x86-64, i386)

pycares-3.1.0-cp35-cp35m-win_amd64.whl (69.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

pycares-3.1.0-cp35-cp35m-win32.whl (55.7 kB view details)

Uploaded CPython 3.5m Windows x86

pycares-3.1.0-cp35-cp35m-manylinux2010_x86_64.whl (227.2 kB view details)

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

pycares-3.1.0-cp35-cp35m-manylinux2010_i686.whl (187.2 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

pycares-3.1.0-cp35-cp35m-manylinux1_x86_64.whl (227.2 kB view details)

Uploaded CPython 3.5m

pycares-3.1.0-cp35-cp35m-manylinux1_i686.whl (187.2 kB view details)

Uploaded CPython 3.5m

pycares-3.1.0-cp35-cp35m-macosx_10_6_intel.whl (121.2 kB view details)

Uploaded CPython 3.5m macOS 10.6+ Intel (x86-64, i386)

File details

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

File metadata

  • Download URL: pycares-3.1.0.tar.gz
  • Upload date:
  • Size: 212.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.3

File hashes

Hashes for pycares-3.1.0.tar.gz
Algorithm Hash digest
SHA256 663c000625725d3a63466a674df4ee7f62bf8ca1ae8a0b87a6411eb811e0e794
MD5 9d71bb8654cd2f7f34bdfe0ba641b59c
BLAKE2b-256 5039d7d4e85041e95c12ccca220663328709da81f75f5e86d76049f0937e9f83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 70.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pycares-3.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f36d9e677694732ac1c364f7d966b112b7c068c15198fdf73f715e22773ad35e
MD5 67fd7ad7a851bfebe31aad1e815725ac
BLAKE2b-256 a923b3ac074163b5bfdfd5f3096ff7ce003d0a43d2f551f205ead48bfc11b465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pycares-3.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1b1bd9dd25eeab154b2659e6a59a78a4c7f575d4641ce6fcb2c3e8c308748533
MD5 9263e401ab30d9bda05e9f4081f562a3
BLAKE2b-256 3fc4792e5bcb6c2c99e3d9a439a216585f4c17f421bde47a6ae259d51b061710

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 228.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 72652bcb5f738817753d586dd9fa66a0746f5cd4ff9037ab628cb9dc49a8ef6b
MD5 b3e3a8aa2bd9d3c4e97d5d2b451b6706
BLAKE2b-256 5d544daa203f9cee9a5972a7f2d8b61df5520a9e37438233e14339d6cdd86302

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 187.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 30d5b968a33e80741abbc7731456f7fabd204dfad5be6089bb0b6396459e59a2
MD5 251f99d176a2a0e2179d4e9d41acf8eb
BLAKE2b-256 f1edfe9d5f6ea3268638f3bf2bedd9fc6baeaf58bbd3744de30e33e97035df36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 228.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9b379c4cf483defe5cf9bacbd571827f7e7b9896dd910512e4fa78b78cc4ecd2
MD5 cfe608cae4be643d70d4e4f5687ac74b
BLAKE2b-256 d56e3ffe6ce530b86e2f2b4e867262dd2f4a74a57c4b219ae76390cae17b4ffc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 187.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a4c87013d420453dfe793d5d73bfcefb5bf6eeaa310a41723ad6aa6a1de46d5
MD5 67dc604bb580e61e6c66620acb75695d
BLAKE2b-256 474fe27fb898fdf8dd3efdcb3ae11a513f8102a97239ad3efdf000d726040e85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 64.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/2.7.15

File hashes

Hashes for pycares-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccddb5e7df99f3b90ffe56310b195a61e30023df93668a19cdbd5872b29b6caf
MD5 c9c9f124182c09f88320b548a871f384
BLAKE2b-256 6626dec177f062d595cdc280766921a30d7335c12458152991391246885a036f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 70.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pycares-3.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cbe39462af102bc414f1a7e4407e507b1bd1dbfb282e9ca4bfaa54d4e75a5083
MD5 3eba016e9695767238b0aa0b21a946cf
BLAKE2b-256 6cc5c91e9ade14647247765c5b07ea088bdfcf9f44da8030386a4b868fe8daf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pycares-3.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d2d362885bcfa56b8e08a07f951862e71b2f3547c3a6e0817d93417f0f765168
MD5 22ea697fb2f8f3e6f19db326d91ddc8c
BLAKE2b-256 a7a7b260ccbc5c8b33a3c0286b72663f8ad5251f792cc74506a1fe5efe0a1db0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f8983c1695d2fbc53bf6d649a28cd6a1dab39a7aa8452c745f4042ac5462cecf
MD5 236ed755f97a5e07e118507ea552876c
BLAKE2b-256 426be198ceadbd9404d68808e7e8daf6bfbaabc9feb24e3457a99001351b3a04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 186.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 03070bc94e1641fe7b5ddd51fdbeed7b7a32a6d062f7fd2d53acc7a4533bc3b9
MD5 c4f0e5ce8e2689a7c5c357999de54c36
BLAKE2b-256 a490fd72162f4b9665a8fea67b5f0d2dc41a28ea9fe91e290d624d062b56e132

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 226.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e1374f8a50453e5969ecbd3137dba10ec95b116151fc5cd06168d4ca756f21ef
MD5 083b949e387e8fcdb59f0ad47c4cbfba
BLAKE2b-256 35a96e78b68118556cf58e5b59aa158b82e6b07586a01cab93fcd6b0f0562910

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 186.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b649c379c67ed9d5f9b2cfc9df2613efa1abb6a837a70943f600cb51305e9f7
MD5 595272c7ffe5f9e7d65c8585676c586a
BLAKE2b-256 62d0c4735432d70d67d918d439965b48694d751e41082d43817844b7e68c6b2b

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pycares-3.1.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 121.2 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/2.7.15

File hashes

Hashes for pycares-3.1.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 07983aa16520df7f0db55b6b245a059f5a45cf0191e9c8b5c5597e81a5549f07
MD5 0edcfbacd09b8db7433c5ec5ba18fe84
BLAKE2b-256 b73bc4d56c225f7711674a5ba05eaf54026e6b2f18c97995bfca6f83c623d96d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 70.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pycares-3.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 613e8958c1667d7b27fde9f3b9c34bf55b1795a89f0d008c83ee6542b02aca50
MD5 961095a5da017acd43bce3877394892e
BLAKE2b-256 e03a10c5f76d5063fadca61610c097569443548e0e2921b5fb41d7fe2063eb94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pycares-3.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b6aff158ed2fafdb18b456ea98e08cad35f8724628f90318cc8ff72ed0b22244
MD5 65b25574d3abe628113129e5fa2a9469
BLAKE2b-256 1422ddbf77e7835dafcf6ec80ff29c6e85584960a20a918bcbf701528c7445a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 072dabbb7e628412f090b0e30fe37900e719ab210d6a919ba714af2a5f60e715
MD5 327732c7a3cb0428dd9453c475cfa021
BLAKE2b-256 8606a7b3f71c602bb487417da0060c988b039c7e63308e54f74a501012bd41be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 186.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 15f102fb3c7aeb5d2ad3b74be389ac161d5dfa0a04a09b1cf7024484229fda40
MD5 df440f75c311f40c06f98b4c2fa34a9e
BLAKE2b-256 d8ff1f2acaeaa43d9809612b50867e00fa8af1f6301306fc80828f04663ab74b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c480d34dd039a4537c512428249c4b329307e4f00e1d941658d40c7277713989
MD5 da787bc967d67e23207ee2daeecfcd6b
BLAKE2b-256 7f090059dfb0d69856559fba853e84bbbc0fa7d24d254401429a3b4eea46cb9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycares-3.1.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 186.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9274799f39f2b4a15bee84b2c0016b3b05eb0d27704c396288a3fa03f649e320
MD5 d8d82fd52995d70dfd7284c1b26eb3bb
BLAKE2b-256 ed3d7700507ec3461bd31e810cbe0921151914471ca17fb6bb86513c1eb1308a

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pycares-3.1.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 121.1 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/2.7.15

File hashes

Hashes for pycares-3.1.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 57b4ef5a70364bc6d40e88c733705f1bea4098bc70a5c0899c0d5be7e3b7432d
MD5 f05a06eaae62d55cd7aabcb66937b315
BLAKE2b-256 ca014bf1a3d9ce5e2254d002c7cbf8dadb822ac4058a26257057b9b3e733a15d

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pycares-3.1.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 69.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pycares-3.1.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4232798cd5d48939588fe540d02923c9620982246f33913f8603410f9cab782b
MD5 149d27026d5053c68fee8c7178fcb400
BLAKE2b-256 5e6c1c5e5c9ea0a397ef3a89f99c7a0125be192850176353b934fcbd921712b9

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pycares-3.1.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 55.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0

File hashes

Hashes for pycares-3.1.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2ccddc69b1d5867551c0a709aac01317d01d525a4977bbf223d9d1fe739d20f0
MD5 7c96e15e9529269ddd52b959e3137024
BLAKE2b-256 8ba37f410c30a1c5df4a6106e9770f8583280249570d4ed91058facd7c2daff5

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pycares-3.1.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d1ca9bcd903e77972f75729944d6d5a49b7135108531236f732789180729ba44
MD5 7dc7231eef9c1295b173f96909a39881
BLAKE2b-256 408a64252c92570d2c1506516d1b19416a413e23e10ea313d78d6b7c42c63647

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: pycares-3.1.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 187.2 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d54ee1ae7e7b18d131b226d3cf5e75cedb35eef119edb237c0ef01aff4c0d6fb
MD5 391da95e5781fc269be310d41bd30484
BLAKE2b-256 94eff78ab3f47269028dcbac8a3e9c99e89ec2c1f941bb9da889ca7b993bc068

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pycares-3.1.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ee4eaa6a4be4b0dd7b797ed481d3c98318cd22c9fee1684adf0ee2e062282a7f
MD5 835479e722eefeb45985fe02ef3ab93c
BLAKE2b-256 e538b500c9c7106d19830265a4902f24c6985efebf0bc2cb1ef38a3480a8966c

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pycares-3.1.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 187.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.7

File hashes

Hashes for pycares-3.1.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca01c2abc7356b34b54559bfce6c6acd2d66dfb5ea0550e3fe9e0cbd1a956867
MD5 6a9403f4c817a583767360482cd443cb
BLAKE2b-256 5e9a780256444a3ede9873487cb38b207933292e14a156fd131219d1d73d3c73

See more details on using hashes here.

File details

Details for the file pycares-3.1.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pycares-3.1.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 121.2 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/2.7.15

File hashes

Hashes for pycares-3.1.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 73fceb68d430e8c284a2118b44f54e32cb921111b611eba392db85f8de8bb02b
MD5 316472e6b0a95ddaa14abb875803c2b1
BLAKE2b-256 9fca79cce951a171826247dc3605eb096138fffba47f728ca8b87bc4ef1fb1e1

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