https://github.com/benoitc/uzmq
libuv interface for ZeroMQ
https://github.com/benoitc/uzmq
Last synced: 4 months ago
JSON representation
libuv interface for ZeroMQ
- Host: GitHub
- URL: https://github.com/benoitc/uzmq
- Owner: benoitc
- License: other
- Created: 2012-11-06T14:51:07.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-04-02T17:01:51.000Z (almost 11 years ago)
- Last Synced: 2025-03-17T11:52:35.933Z (12 months ago)
- Language: Python
- Size: 308 KB
- Stars: 33
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
uzmq
====
libuv interface for ZeroMQ for your Python programs.
With uzmq you can use `zmq `_ sockets with the libuv
event loop binding proposed by the `pyuv library `_.
.. image:: https://secure.travis-ci.org/benoitc/uzmq.png?branch=master
:alt: Build Status
:target: https://secure.travis-ci.org/benoitc/uzmq
Features
--------
- Simple interface to zeromq with the libuv event loop
- Poll handle
- ZMQ handle
Documentation
-------------
http://uzmq.readthedocs.org
Installation
------------
uzmq requires Python superior to 2.6 (yes Python 3 is supported)
To install uzmq using pip you must make sure you have a
recent version of distribute installed::
$ curl -O http://python-distribute.org/distribute_setup.py
$ sudo python distribute_setup.py
$ easy_install pip
To install from source, run the following command::
$ git clone https://github.com/benoitc/uzmq.git
$ cd uzmq && pip install -r requirements.txt
From pypi::
$ pip install uzmq
License
-------
uzmq is available in the public domain (see UNLICENSE). gaffer is also
optionally available under the MIT License (see LICENSE), meant
especially for jurisdictions that do not recognize public domain
works.