Go to file
MinRK c371aa8608 release 13.0.0 2013-02-21 15:09:23 -08:00
buildutils remove global CONFIG state 2013-02-06 09:51:00 -08:00
docs rst underline fixes 2013-02-18 10:41:22 -08:00
examples remove zmq.web 2013-01-01 16:29:11 -08:00
perf relicense non-core code under 3-clause New BSD 2012-03-06 13:36:34 -08:00
zmq release 13.0.0 2013-02-21 15:09:23 -08:00
.gitignore add __pycache__ to gitignore 2013-02-01 22:22:02 -08:00
.mailmap update AUTHORS 2013-02-03 16:12:48 -08:00
.travis.yml test bundled libzmq with travis 2013-01-23 23:04:06 -08:00
AUTHORS.md update AUTHORS 2013-02-03 16:12:48 -08: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 update MANIFEST.in 2013-02-04 16:45:07 -08:00
README.md update README for 13.0 2013-02-03 16:53:26 -08: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 remove insurance industry 2013-02-21 15:09:23 -08:00
setupegg.py Windows/Py3k fixes c/o Baptiste Lepilleur 2011-03-02 19:45:46 -08:00
tox.ini add py33 to tox 2013-02-08 10:20:59 -08:00
zmqversion.py relicense non-core code under 3-clause New BSD 2012-03-06 13:36:34 -08:00

README.md

PyZMQ: Python bindings for ØMQ

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

PyZMQ should work with libzmq ≥ 2.1.4 (including libzmq 3.2.x), and Python ≥ 2.6 (including Python 3), as well as PyPy.

Versioning

Current release of pyzmq is 13.0, and targets libzmq-3.2.2. For libzmq 2.0.x, use pyzmq release 2.0.10.1 or the 2.0.x development branch. PyZMQ continues to support libzmq ≥ 2.1.4.

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 releases ≤ 2.2.0 matched libzmq versioning, but this will no longer be the case. To avoid confusion with the contemporary libzmq-3.2 major version release, PyZMQ is jumping to 13.0 (it will be the thirteenth release, so why not?). PyZMQ ≥ 13.0 will follow semantic versioning conventions accounting only for PyZMQ itself.

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

ØMQ 3.x

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

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, eggs, or MSI installer from PyPI.

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.15 or later.

Building and installation

For more detail on building pyzmq, see our Wiki.

We build eggs for OS X and Windows, so we generally recommend that those platforms use easy_install pyzmq, but pip install pyzmq should on most platforms as well.

To build pyzmq from the git repo requires Cython.