Skip to main content

Python bindings for 0MQ

Project description

PyZMQ: Python bindings for ØMQ

Build Status

Windows Build status

This package contains Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation.

PyZMQ should work with any reasonable version of Python (≥ 3.4), as well as Python 2.7 and 3.3, as well as PyPy. The Cython backend used by CPython supports libzmq ≥ 2.1.4 (including 3.2.x and 4.x), but the CFFI backend used by PyPy only supports libzmq ≥ 3.2.2 (including 4.x).

For a summary of changes to pyzmq, see our changelog.

ØMQ 3.x, 4.x

PyZMQ fully supports the 3.x and 4.x APIs of libzmq, developed at zeromq/libzmq. No code to change, no flags to pass, just build pyzmq against the latest and it should work.

PyZMQ does not support the old libzmq 2 API on PyPy.

Documentation

See PyZMQ's Sphinx-generated documentation on GitHub for API details, and some notes on Python and Cython development. If you want to learn about using ØMQ in general, the excellent ØMQ Guide is the place to start, which has a Python version of every example. We also have some information on our wiki.

Downloading

Unless you specifically want to develop PyZMQ, we recommend downloading the PyZMQ source code or wheels from PyPI, or install with conda.

You can also get the latest source code from our GitHub repository, but building from the repository will require that you install recent Cython.

Building and installation

For more detail on building pyzmq, see our Wiki.

We build wheels for OS X, Windows, and Linux, so you can get a binary on those platforms with:

pip install pyzmq

but compiling from source with pip install pyzmq should work in most environments. Especially on OS X, make sure you are using the latest pip (≥ 8), or it may not find the right wheels.

If the wheel doesn't work for some reason, or you want to force pyzmq to be compiled (this is often preferable if you already have libzmq installed and configured the way you want it), you can force installation with:

pip install --no-binary=:all: pyzmq

When compiling pyzmq (e.g. installing with pip on Linux), it is generally recommended that zeromq be installed separately, via homebrew, apt, yum, etc:

# Debian-based
sudo apt-get install libzmq3-dev

# RHEL-based
sudo yum install libzmq3-devel

If this is not available, pyzmq will try to build libzmq as a Python Extension, though this is not guaranteed to work.

Building pyzmq from the git repo (including release tags on GitHub) requires Cython.

Old versions

pyzmq 16 drops support Python 2.6 and 3.2. If you need to use one of those Python versions, you can pin your pyzmq version to before 16:

pip install 'pyzmq<16'

For libzmq 2.0.x, use 'pyzmq<2.1'

pyzmq-2.1.11 was the last version of pyzmq to support Python 2.5, and pyzmq ≥ 2.2.0 requires Python ≥ 2.6. pyzmq-13.0.0 introduces PyPy support via CFFI, which only supports libzmq-3.2.2 and newer.

PyZMQ releases ≤ 2.2.0 matched libzmq versioning, but this is no longer the case, starting with PyZMQ 13.0.0 (it was the thirteenth release, so why not?). PyZMQ ≥ 13.0 follows semantic versioning conventions accounting only for PyZMQ itself.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pyzmq-19.0.2.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

pyzmq-19.0.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (553.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzmq-19.0.2-pp27-pypy_73-macosx_10_9_x86_64.whl (545.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyzmq-19.0.2-cp39-cp39-win_amd64.whl (695.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyzmq-19.0.2-cp39-cp39-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9

pyzmq-19.0.2-cp39-cp39-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.9

pyzmq-19.0.2-cp39-cp39-macosx_10_9_x86_64.whl (802.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyzmq-19.0.2-cp38-cp38-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

pyzmq-19.0.2-cp38-cp38-win32.whl (902.0 kB view details)

Uploaded CPython 3.8 Windows x86

pyzmq-19.0.2-cp38-cp38-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8

pyzmq-19.0.2-cp38-cp38-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.8

pyzmq-19.0.2-cp38-cp38-macosx_10_9_x86_64.whl (806.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyzmq-19.0.2-cp37-cp37m-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

pyzmq-19.0.2-cp37-cp37m-win32.whl (895.7 kB view details)

Uploaded CPython 3.7m Windows x86

pyzmq-19.0.2-cp37-cp37m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m

pyzmq-19.0.2-cp37-cp37m-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.7m

pyzmq-19.0.2-cp37-cp37m-macosx_10_9_x86_64.whl (801.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyzmq-19.0.2-cp36-cp36m-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

pyzmq-19.0.2-cp36-cp36m-win32.whl (894.3 kB view details)

Uploaded CPython 3.6m Windows x86

pyzmq-19.0.2-cp36-cp36m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m

pyzmq-19.0.2-cp36-cp36m-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.6m

pyzmq-19.0.2-cp36-cp36m-macosx_10_9_intel.whl (1.4 MB view details)

Uploaded CPython 3.6m macOS 10.9+ intel

pyzmq-19.0.2-cp35-cp35m-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.5m Windows x86-64

pyzmq-19.0.2-cp35-cp35m-win32.whl (888.5 kB view details)

Uploaded CPython 3.5m Windows x86

pyzmq-19.0.2-cp35-cp35m-manylinux1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.5m

pyzmq-19.0.2-cp35-cp35m-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.5m

pyzmq-19.0.2-cp35-cp35m-macosx_10_9_intel.whl (1.4 MB view details)

Uploaded CPython 3.5m macOS 10.9+ intel

pyzmq-19.0.2-cp27-cp27mu-manylinux1_x86_64.whl (1.0 MB view details)

Uploaded CPython 2.7mu

pyzmq-19.0.2-cp27-cp27mu-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 2.7mu

pyzmq-19.0.2-cp27-cp27m-win_amd64.whl (687.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

pyzmq-19.0.2-cp27-cp27m-win32.whl (606.8 kB view details)

Uploaded CPython 2.7m Windows x86

pyzmq-19.0.2-cp27-cp27m-macosx_10_9_intel.whl (1.4 MB view details)

Uploaded CPython 2.7m macOS 10.9+ intel

File details

Details for the file pyzmq-19.0.2.tar.gz.

File metadata

  • Download URL: pyzmq-19.0.2.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2.tar.gz
Algorithm Hash digest
SHA256 296540a065c8c21b26d63e3cea2d1d57902373b16e4256afe46422691903a438
MD5 200abc1a75bdcfff7adf61304f46f55e
BLAKE2b-256 05777483975d84fe1fd24cc67881ba7810e0e7b3ee6c2a0e002a5d6703cca49b

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 553.0 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7e7f930039ee0c4c26e4dfee015f20bd6919cd8b97c9cd7afbde2923a5167b6
MD5 0a61dbbf0848fe29d3df7b1f318bbe44
BLAKE2b-256 d712c05e0cc9664701efc4aaa52f12509fbe7ed8e297f73b58db1e9e5dc050c7

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 545.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1a31cd42905b405530e92bdb70a8a56f048c8a371728b8acf9d746ecd4482c0
MD5 9e3d0db1bae8ce30ad435ef0383919ba
BLAKE2b-256 2181f620a17452dcffba7b081b08cf17ae6eb6163c77d9ab390341aee7297816

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 695.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200917 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pyzmq-19.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 949a219493a861c263b75a16588eadeeeab08f372e25ff4a15a00f73dfe341f4
MD5 275260df520141cdadb4d4620af8deec
BLAKE2b-256 b83d3c10e21c485e7f4f668563a33aa770488b8ca37647e0dd2c64b37d52bd12

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200917 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pyzmq-19.0.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c6d653bab76b3925c65d4ac2ddbdffe09710f3f41cc7f177299e8c4498adb04a
MD5 97f1e08f3c18b88899a467a605589365
BLAKE2b-256 28cf0e0ea4baa1c14fbb05b4cbd056b09f6ccb1c1b59c9ad9a84966a70ca5ee6

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200917 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pyzmq-19.0.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1dd4cf4c5e09cbeef0aee83f3b8af1e9986c086a8927b261c042655607571e8
MD5 846b22b5dae9c993e29cdd0da972c2ac
BLAKE2b-256 8fa6abfb744be17b95a7307b895c64f67ec6c431078680e8d4eb0063a07997f3

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 802.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200917 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pyzmq-19.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18189fc59ff5bf46b7ccf5a65c1963326dbfc85a2bc73e9f4a90a40322b992c8
MD5 46732036627fa5f1ff6d66945380f33a
BLAKE2b-256 24c30167fd02a355bcf73d1e56e3eafc61e5697ce51bf1a691989c03856659d1

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 09d24a80ccb8cbda1af6ed8eb26b005b6743e58e9290566d2a6841f4e31fa8e0
MD5 ec413246df487f8c5ee59c3ba6024368
BLAKE2b-256 17c908c3109fcc4f15c04f3ea0a4de272889e0e099eefc47a049bcd240ed9413

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 902.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 276ad604bffd70992a386a84bea34883e696a6b22e7378053e5d3227321d9702
MD5 0c6f2e30bd194f81db173c1850de5445
BLAKE2b-256 056522eb2a3f456b27d6a1795483fb79aa358c3d1cf065979048939c2317ab21

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 654d3e06a4edc566b416c10293064732516cf8871a4522e0a2ba00cc2a2e600c
MD5 de53a825bf3d8d2eca1b7a37a836b6c3
BLAKE2b-256 404a6a7856280349cb5d6e20c5c2d641ec8e66be517cf8d81ff2bca9ebf8eeb0

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b66b94fe6243d2d1d89bca336b2424399aac57932858b9a30309803ffc28112
MD5 ec4a449a55da0d1c9e5c4ec5f13673d5
BLAKE2b-256 d9a8865d078151721a6720f6968203d43b4c780eca6a040894e9af799c13f166

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 806.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36ab114021c0cab1a423fe6689355e8f813979f2c750968833b318c1fa10a0fd
MD5 6f0fc253790e1db712dfcfd648b106c8
BLAKE2b-256 485ec71c0343ccf8e900c6bf6d5bfe0138da39f6933df780bb293ee098262ec8

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 73483a2caaa0264ac717af33d6fb3f143d8379e60a422730ee8d010526ce1913
MD5 e7295354e7acb02b0ac16b999a5b15e4
BLAKE2b-256 308109e2590445eab1bc80836b56e329783c487b79db8122326156bd35ad86df

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 895.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3fa6debf4bf9412e59353defad1f8035a1e68b66095a94ead8f7a61ae90b2675
MD5 9300521808f62ff2bb116ea59699be8d
BLAKE2b-256 af99981893c4d7dce9bdeb6f48b76e3a954533d1fa95889c11cf81daecd639ee

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5d9fc809aa8d636e757e4ced2302569d6e60e9b9c26114a83f0d9d6519c40493
MD5 94deb40a52f01d53a6749776b8605297
BLAKE2b-256 cdba144b5f68fcd643937a4a953017abf1527ff34d43d2d912206fed962efde0

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c40fbb2b9933369e994b837ee72193d6a4c35dfb9a7c573257ef7ff28961272c
MD5 5a1a3c0ba97f3a9c6a73c3a79747802d
BLAKE2b-256 2a12e4d817be081ef2d7ba2cce98082eba964852b40cf53e6f3d654e7cc43921

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 801.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e36f12f503511d72d9bdfae11cadbadca22ff632ff67c1b5459f69756a029c19
MD5 57dd827fdecfd3de30b7e4e179734b8a
BLAKE2b-256 4f67624e77368732b829ae043c5d9e248d524be5f2c6ab075016b81ac5adf732

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 99cc0e339a731c6a34109e5c4072aaa06d8e32c0b93dc2c2d90345dd45fa196c
MD5 4ee943b8a16aa7fe249034af67b426b5
BLAKE2b-256 0a3febb90f082cd3e9bbc6aef3cd25b5f6aa2ab5c33eb4ef600623945f29177c

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 894.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 046b92e860914e39612e84fa760fc3f16054d268c11e0e25dcb011fb1bc6a075
MD5 9fc6a9d6cff4a963fe6c4b9e42291ff8
BLAKE2b-256 3bd9edfab95f616ea6b0971c82aa29a9ea3855bd020ace78866b0ac1347b40db

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 00dca814469436455399660247d74045172955459c0bd49b54a540ce4d652185
MD5 449f6ef63c2884ad6fb47ac673fa02bf
BLAKE2b-256 56ff34bf45e5cf8367edcf4946b26690f0982b3ec701b0a655edfe562d29e246

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa411b1d8f371d3a49d31b0789eb6da2537dadbb2aef74a43aa99a78195c3f76
MD5 0fb32f4d82581de3c019bdd50bdf1545
BLAKE2b-256 cbaebfc017ea716118ac3a0f764286561dd20db707badec4aa3306e78d3d1458

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp36-cp36m-macosx_10_9_intel.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp36-cp36m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, macOS 10.9+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp36-cp36m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 8a6ada5a3f719bf46a04ba38595073df8d6b067316c011180102ba2a1925f5b5
MD5 2d12c6dfa5a9ea8d2e6d8d4ba18b2c6b
BLAKE2b-256 9efddcebddd29df55fa951144da02057aa2b1c521a5abcf37e811dc093f6f03d

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5120c64646e75f6db20cc16b9a94203926ead5d633de9feba4f137004241221d
MD5 05cd940e8d27fe277d6a1d05ab464e0f
BLAKE2b-256 30a6978e6e8240fe69d9d4627b96070553c9a9d4a85e39916b48fd9e93a77131

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 888.5 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 29d51279060d0a70f551663bc592418bcad7f4be4eea7b324f6dd81de05cb4c1
MD5 2c091d4ae20bc896bd710bf3f372fc68
BLAKE2b-256 3b4e0d8828414ab4510e6654ff22ea824ce951a544336823a357d3ec87adb5d0

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 720d2b6083498a9281eaee3f2927486e9fe02cd16d13a844f2e95217f243efea
MD5 eb31fcb4659add905290ffb1a1548102
BLAKE2b-256 b0f710e3037dcf3c2b542562fd5b418bb3a9ba6541612c2494184eaa86af08d9

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ab0d01148d13854de716786ca73701012e07dff4dfbbd68c4e06d8888743526e
MD5 505843b6622a6f1496657190c123dec5
BLAKE2b-256 61fabe592faa1a7bd9e006b017469ac8e4fed888bf9a376d2fc02bf0405b7ef3

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp35-cp35m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, macOS 10.9+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 f1a25a61495b6f7bb986accc5b597a3541d9bd3ef0016f50be16dbb32025b302
MD5 a6a0cf349ccb6c4d1f82c6da20ee92b6
BLAKE2b-256 c274b37b832e62cbbba85c92fe7f92112b895886e03f3d8765930ad0aadfff87

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d46fb17f5693244de83e434648b3dbb4f4b0fec88415d6cbab1c1452b6f2ae17
MD5 855385481a0d29f06356dd7a7ec9a7d7
BLAKE2b-256 bc2d799b68e05aef7e7fd3f57a8fe1f898fd4ab47d75a6bdd8ea0c5687d15c95

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c20dd60b9428f532bc59f2ef6d3b1029a28fc790d408af82f871a7db03e722ff
MD5 fb5116b3e549d9b48a77f36f77699151
BLAKE2b-256 3b25a3d405aa22e3256485447425f81abef8389e9ad10315860a486451731567

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 687.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0a422fc290d03958899743db091f8154958410fc76ce7ee0ceb66150f72c2c97
MD5 2bac70b9baf63cddb0f59a76efad528f
BLAKE2b-256 76b373b070ee217e307b4d121f253598e217a22b9df8b00701b7168d7c61df30

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 606.8 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c36ffe1e5aa35a1af6a96640d723d0d211c5f48841735c2aa8d034204e87eb87
MD5 8747c065e9f67f52005475e391da9537
BLAKE2b-256 792c781a93ee350c5b0a86f92843334a6d2b62134a4d5fdde914efa7b3ccb44b

See more details on using hashes here.

File details

Details for the file pyzmq-19.0.2-cp27-cp27m-macosx_10_9_intel.whl.

File metadata

  • Download URL: pyzmq-19.0.2-cp27-cp27m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, macOS 10.9+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.6

File hashes

Hashes for pyzmq-19.0.2-cp27-cp27m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 59f1e54627483dcf61c663941d94c4af9bf4163aec334171686cdaee67974fe5
MD5 cc7dfcad58adc24bfb76537fc4788b78
BLAKE2b-256 7e1f54d068777f9ed2cfb5fbb8680834c6f3d88d4eeaefa8a9a3b6f9103573a0

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