Go to file
Min RK 6d0f9b86cb release 14.6.0 2015-04-23 14:49:03 -07:00
buildutils Fixes build on Python 3. 2015-03-08 15:21:21 -04:00
docs add bundling note to changlog 2015-04-23 13:44:25 -07:00
examples Fixed Context().instance() -> Context.instance() in examples 2015-03-28 19:23:52 +01:00
perf update copyright and headers 2014-06-10 14:33:25 -07:00
tools don't use setupegg in release tasks 2015-04-23 14:03:29 -07:00
zmq release 14.6.0 2015-04-23 14:49:03 -07:00
.gitignore ignore wheelhouse in gitignore 2015-04-16 14:31:03 -07:00
.mailmap update authors and mailmap 2014-10-17 14:25:53 -07:00
.travis.yml use travis-built wheels 2014-11-09 20:00:15 -08:00
AUTHORS.md update authors and mailmap 2014-10-17 14:25:53 -07:00
CONTRIBUTING.md add new Issue notes to Contributing.md 2012-10-04 14:11:27 -07:00
COPYING.BSD Updating license of zmqweb to BSD. 2012-02-29 16:33:39 -08:00
COPYING.LESSER First prototype of new Cython based 0MQ bindings for Python. 2010-02-12 15:16:08 -08:00
MANIFEST.in include tools in sdists 2014-10-31 11:16:42 -07:00
README.md link to readthedocs 2015-04-23 13:43:53 -07:00
setup.cfg.android add sample android cross-compile setup.cfg 2013-02-02 20:49:34 -08:00
setup.cfg.template remove unused keys from setup.cfg.template 2013-02-04 16:45:07 -08:00
setup.py import setuptools before distutils 2015-04-23 14:03:17 -07:00
setupegg.py deprecate setupegg.py 2015-04-16 14:28:40 -07:00
tox.ini Merge pull request #644 from ticosax/allow-passing-args-tox 2015-02-15 18:29:48 -08:00
zmqversion.py update copyright and headers 2014-06-10 14:33:25 -07:00

README.md

PyZMQ: Python bindings for ØMQ

Build Status

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

PyZMQ should work with any Python ≥ 2.6 (including Python 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 ≥ 2.2.0 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. On Windows, you can get .exe installers from Christoph Gohlke.

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

Building and installation

For more detail on building pyzmq, see our Wiki.

We build wheels for OS X and Windows, 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 (≥ 6), 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-use-wheel 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

For libzmq 2.0.x, use pyzmq release 2.0.10.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.