├── .coveragerc ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── dependabot.yml └── workflows │ ├── test-docs.yml │ ├── test.yml │ └── wheels.yml ├── .gitignore ├── .mailmap ├── .obs └── workflows.yml ├── .pre-commit-config.yaml ├── .prettierignore ├── .readthedocs.yml ├── AUTHORS.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── RELICENSE ├── README.md ├── authors.py ├── chrislaws.md ├── ellisonbg.md ├── frankwiles.md ├── juliantaylor.md ├── ledgerx.md ├── lothiraldan.md ├── minrk.md ├── takluyver.md └── templates │ ├── relicense-template-bsd.txt │ ├── relicense-template-mplv2-any-osi.txt │ └── relicense-template-mplv2.txt ├── SECURITY.md ├── Vagrantfile ├── cmake ├── FindVcvars.cmake └── Findsodium.cmake ├── codecov.yml ├── docs ├── Makefile ├── requirements.txt └── source │ ├── _static │ ├── logo.png │ └── zeromq.ico │ ├── api │ ├── index.md │ ├── zmq.asyncio.md │ ├── zmq.auth.asyncio.md │ ├── zmq.auth.ioloop.md │ ├── zmq.auth.md │ ├── zmq.auth.thread.md │ ├── zmq.decorators.md │ ├── zmq.devices.md │ ├── zmq.eventloop.future.md │ ├── zmq.eventloop.ioloop.md │ ├── zmq.eventloop.zmqstream.md │ ├── zmq.green.md │ ├── zmq.log.handlers.md │ ├── zmq.md │ ├── zmq.ssh.tunnel.md │ ├── zmq.utils.jsonapi.md │ ├── zmq.utils.monitor.md │ ├── zmq.utils.win32.md │ └── zmq.utils.z85.md │ ├── changelog.md │ ├── conf.py │ ├── howto │ ├── build.md │ ├── cross-android.Dockerfile │ ├── cross.Dockerfile │ ├── devices.md │ ├── draft.md │ ├── eventloop.md │ ├── index.md │ ├── logging.md │ ├── morethanbindings.md │ ├── serialization.md │ └── ssh.md │ └── index.md ├── examples ├── LICENSE ├── README.md ├── asyncio │ ├── coroutines.py │ ├── helloworld_pubsub_dealerrouter.py │ ├── router_router.py │ └── tornado_asyncio.py ├── cython │ ├── .gitignore │ ├── README.md │ ├── cyzmq.pyx │ ├── example.py │ └── setup.py ├── device │ └── device.py ├── draft │ ├── client-server.py │ ├── install.sh │ └── radio-dish.py ├── eventloop │ ├── asyncweb.py │ ├── coroutines.py │ ├── echo.py │ ├── echofuture.py │ └── echostream.py ├── gevent │ ├── poll.py │ ├── reqrep.py │ └── simple.py ├── heartbeat │ ├── heart.py │ ├── heartbeater.py │ ├── ping.py │ └── pong.py ├── logger │ └── zmqlogger.py ├── mongodb │ ├── client.py │ └── controller.py ├── monitoring │ ├── simple_monitor.py │ └── zmq_monitor_class.py ├── poll │ ├── pair.py │ ├── pubsub.py │ └── reqrep.py ├── pubsub │ ├── publisher.py │ ├── subscriber.py │ ├── topics_pub.py │ └── topics_sub.py ├── recv_into │ ├── discard.py │ └── recv_into_array.py ├── security │ ├── asyncio-ironhouse.py │ ├── generate_certificates.py │ ├── grasslands.py │ ├── ioloop-ironhouse.py │ ├── ironhouse.py │ ├── stonehouse.py │ ├── strawhouse.py │ └── woodhouse.py ├── serialization │ └── serialsocket.py └── win32-interrupt │ └── display.py ├── licenses └── LICENSE.tornado.txt ├── mypy.ini ├── mypy_tests ├── test_context.py ├── test_socket.py ├── test_socket_async.py └── test_toplevel.py ├── packaging ├── README.md ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── pyzmq.dsc.obs │ ├── rules │ └── source │ │ └── format ├── obs │ └── _service └── redhat │ └── python-pyzmq.spec ├── perf ├── Dockerfile ├── Makefile ├── collect.py ├── perf.ipynb └── perf.py ├── pyproject.toml ├── pytest.ini ├── test-requirements.txt ├── tests ├── conftest.py ├── cython_ext.pyx ├── test_asyncio.py ├── test_auth.py ├── test_cffi_backend.py ├── test_constants.py ├── test_context.py ├── test_cython.py ├── test_decorators.py ├── test_device.py ├── test_draft.py ├── test_error.py ├── test_etc.py ├── test_ext.py ├── test_future.py ├── test_imports.py ├── test_includes.py ├── test_ioloop.py ├── test_log.py ├── test_message.py ├── test_monitor.py ├── test_monqueue.py ├── test_multipart.py ├── test_mypy.py ├── test_pair.py ├── test_poll.py ├── test_proxy_steerable.py ├── test_pubsub.py ├── test_reqrep.py ├── test_retry_eintr.py ├── test_security.py ├── test_socket.py ├── test_ssh.py ├── test_version.py ├── test_win32_shim.py ├── test_z85.py ├── test_zmqstream.py └── zmq_test_utils.py ├── tools ├── backend_imports.py ├── circle_wheels.py ├── collect_cmake.py ├── find_vcredist.py ├── install_libzmq.sh ├── showvcvars.py ├── test_sdist.py ├── test_wheel.py ├── wheel-requirements.txt └── wheel_summary.py ├── zmq ├── __init__.pxd ├── __init__.py ├── __init__.pyi ├── _future.py ├── _future.pyi ├── _typing.py ├── asyncio.py ├── auth │ ├── __init__.py │ ├── asyncio.py │ ├── base.py │ ├── certs.py │ ├── ioloop.py │ └── thread.py ├── backend │ ├── __init__.py │ ├── __init__.pyi │ ├── cffi │ │ ├── README.md │ │ ├── __init__.py │ │ ├── _cdefs.h │ │ ├── _cffi_src.c │ │ ├── _poll.py │ │ ├── context.py │ │ ├── devices.py │ │ ├── error.py │ │ ├── message.py │ │ ├── socket.py │ │ └── utils.py │ ├── cython │ │ ├── __init__.pxd │ │ ├── __init__.py │ │ ├── _externs.pxd │ │ ├── _zmq.pxd │ │ ├── _zmq.py │ │ ├── constant_enums.pxi │ │ └── libzmq.pxd │ └── select.py ├── constants.py ├── decorators.py ├── devices │ ├── __init__.py │ ├── basedevice.py │ ├── monitoredqueue.py │ ├── monitoredqueuedevice.py │ ├── proxydevice.py │ └── proxysteerabledevice.py ├── error.py ├── eventloop │ ├── __init__.py │ ├── _deprecated.py │ ├── future.py │ ├── ioloop.py │ └── zmqstream.py ├── green │ ├── __init__.py │ ├── core.py │ ├── device.py │ ├── eventloop │ │ ├── __init__.py │ │ ├── ioloop.py │ │ └── zmqstream.py │ └── poll.py ├── log │ ├── __init__.py │ ├── __main__.py │ └── handlers.py ├── py.typed ├── ssh │ ├── __init__.py │ ├── forward.py │ └── tunnel.py ├── sugar │ ├── __init__.py │ ├── __init__.pyi │ ├── attrsettr.py │ ├── context.py │ ├── frame.py │ ├── poll.py │ ├── socket.py │ ├── stopwatch.py │ ├── tracker.py │ └── version.py ├── tests │ └── __init__.py └── utils │ ├── __init__.py │ ├── garbage.py │ ├── getpid_compat.h │ ├── interop.py │ ├── ipcmaxlen.h │ ├── jsonapi.py │ ├── monitor.py │ ├── mutex.h │ ├── pyversion_compat.h │ ├── strtypes.py │ ├── win32.py │ ├── z85.py │ └── zmq_compat.h └── zmqversion.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.github/workflows/test-docs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.mailmap -------------------------------------------------------------------------------- /.obs/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.obs/workflows.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | docs/source/_templates 2 | externals 3 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/README.md -------------------------------------------------------------------------------- /RELICENSE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/README.md -------------------------------------------------------------------------------- /RELICENSE/authors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/authors.py -------------------------------------------------------------------------------- /RELICENSE/chrislaws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/chrislaws.md -------------------------------------------------------------------------------- /RELICENSE/ellisonbg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/ellisonbg.md -------------------------------------------------------------------------------- /RELICENSE/frankwiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/frankwiles.md -------------------------------------------------------------------------------- /RELICENSE/juliantaylor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/juliantaylor.md -------------------------------------------------------------------------------- /RELICENSE/ledgerx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/ledgerx.md -------------------------------------------------------------------------------- /RELICENSE/lothiraldan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/lothiraldan.md -------------------------------------------------------------------------------- /RELICENSE/minrk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/minrk.md -------------------------------------------------------------------------------- /RELICENSE/takluyver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/takluyver.md -------------------------------------------------------------------------------- /RELICENSE/templates/relicense-template-bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/templates/relicense-template-bsd.txt -------------------------------------------------------------------------------- /RELICENSE/templates/relicense-template-mplv2-any-osi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/templates/relicense-template-mplv2-any-osi.txt -------------------------------------------------------------------------------- /RELICENSE/templates/relicense-template-mplv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/RELICENSE/templates/relicense-template-mplv2.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/Vagrantfile -------------------------------------------------------------------------------- /cmake/FindVcvars.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/cmake/FindVcvars.cmake -------------------------------------------------------------------------------- /cmake/Findsodium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/cmake/Findsodium.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/_static/logo.png -------------------------------------------------------------------------------- /docs/source/_static/zeromq.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/_static/zeromq.ico -------------------------------------------------------------------------------- /docs/source/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/index.md -------------------------------------------------------------------------------- /docs/source/api/zmq.asyncio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.asyncio.md -------------------------------------------------------------------------------- /docs/source/api/zmq.auth.asyncio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.auth.asyncio.md -------------------------------------------------------------------------------- /docs/source/api/zmq.auth.ioloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.auth.ioloop.md -------------------------------------------------------------------------------- /docs/source/api/zmq.auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.auth.md -------------------------------------------------------------------------------- /docs/source/api/zmq.auth.thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.auth.thread.md -------------------------------------------------------------------------------- /docs/source/api/zmq.decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.decorators.md -------------------------------------------------------------------------------- /docs/source/api/zmq.devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.devices.md -------------------------------------------------------------------------------- /docs/source/api/zmq.eventloop.future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.eventloop.future.md -------------------------------------------------------------------------------- /docs/source/api/zmq.eventloop.ioloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.eventloop.ioloop.md -------------------------------------------------------------------------------- /docs/source/api/zmq.eventloop.zmqstream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.eventloop.zmqstream.md -------------------------------------------------------------------------------- /docs/source/api/zmq.green.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.green.md -------------------------------------------------------------------------------- /docs/source/api/zmq.log.handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.log.handlers.md -------------------------------------------------------------------------------- /docs/source/api/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.md -------------------------------------------------------------------------------- /docs/source/api/zmq.ssh.tunnel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.ssh.tunnel.md -------------------------------------------------------------------------------- /docs/source/api/zmq.utils.jsonapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.utils.jsonapi.md -------------------------------------------------------------------------------- /docs/source/api/zmq.utils.monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.utils.monitor.md -------------------------------------------------------------------------------- /docs/source/api/zmq.utils.win32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.utils.win32.md -------------------------------------------------------------------------------- /docs/source/api/zmq.utils.z85.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/api/zmq.utils.z85.md -------------------------------------------------------------------------------- /docs/source/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/changelog.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/howto/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/build.md -------------------------------------------------------------------------------- /docs/source/howto/cross-android.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/cross-android.Dockerfile -------------------------------------------------------------------------------- /docs/source/howto/cross.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/cross.Dockerfile -------------------------------------------------------------------------------- /docs/source/howto/devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/devices.md -------------------------------------------------------------------------------- /docs/source/howto/draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/draft.md -------------------------------------------------------------------------------- /docs/source/howto/eventloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/eventloop.md -------------------------------------------------------------------------------- /docs/source/howto/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/index.md -------------------------------------------------------------------------------- /docs/source/howto/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/logging.md -------------------------------------------------------------------------------- /docs/source/howto/morethanbindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/morethanbindings.md -------------------------------------------------------------------------------- /docs/source/howto/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/serialization.md -------------------------------------------------------------------------------- /docs/source/howto/ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/howto/ssh.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/LICENSE -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/asyncio/coroutines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/asyncio/coroutines.py -------------------------------------------------------------------------------- /examples/asyncio/helloworld_pubsub_dealerrouter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/asyncio/helloworld_pubsub_dealerrouter.py -------------------------------------------------------------------------------- /examples/asyncio/router_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/asyncio/router_router.py -------------------------------------------------------------------------------- /examples/asyncio/tornado_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/asyncio/tornado_asyncio.py -------------------------------------------------------------------------------- /examples/cython/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | *.html 3 | -------------------------------------------------------------------------------- /examples/cython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/cython/README.md -------------------------------------------------------------------------------- /examples/cython/cyzmq.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/cython/cyzmq.pyx -------------------------------------------------------------------------------- /examples/cython/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/cython/example.py -------------------------------------------------------------------------------- /examples/cython/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/cython/setup.py -------------------------------------------------------------------------------- /examples/device/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/device/device.py -------------------------------------------------------------------------------- /examples/draft/client-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/draft/client-server.py -------------------------------------------------------------------------------- /examples/draft/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/draft/install.sh -------------------------------------------------------------------------------- /examples/draft/radio-dish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/draft/radio-dish.py -------------------------------------------------------------------------------- /examples/eventloop/asyncweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/eventloop/asyncweb.py -------------------------------------------------------------------------------- /examples/eventloop/coroutines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/eventloop/coroutines.py -------------------------------------------------------------------------------- /examples/eventloop/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/eventloop/echo.py -------------------------------------------------------------------------------- /examples/eventloop/echofuture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/eventloop/echofuture.py -------------------------------------------------------------------------------- /examples/eventloop/echostream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/eventloop/echostream.py -------------------------------------------------------------------------------- /examples/gevent/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/gevent/poll.py -------------------------------------------------------------------------------- /examples/gevent/reqrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/gevent/reqrep.py -------------------------------------------------------------------------------- /examples/gevent/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/gevent/simple.py -------------------------------------------------------------------------------- /examples/heartbeat/heart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/heartbeat/heart.py -------------------------------------------------------------------------------- /examples/heartbeat/heartbeater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/heartbeat/heartbeater.py -------------------------------------------------------------------------------- /examples/heartbeat/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/heartbeat/ping.py -------------------------------------------------------------------------------- /examples/heartbeat/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/heartbeat/pong.py -------------------------------------------------------------------------------- /examples/logger/zmqlogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/logger/zmqlogger.py -------------------------------------------------------------------------------- /examples/mongodb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/mongodb/client.py -------------------------------------------------------------------------------- /examples/mongodb/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/mongodb/controller.py -------------------------------------------------------------------------------- /examples/monitoring/simple_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/monitoring/simple_monitor.py -------------------------------------------------------------------------------- /examples/monitoring/zmq_monitor_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/monitoring/zmq_monitor_class.py -------------------------------------------------------------------------------- /examples/poll/pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/poll/pair.py -------------------------------------------------------------------------------- /examples/poll/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/poll/pubsub.py -------------------------------------------------------------------------------- /examples/poll/reqrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/poll/reqrep.py -------------------------------------------------------------------------------- /examples/pubsub/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/pubsub/publisher.py -------------------------------------------------------------------------------- /examples/pubsub/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/pubsub/subscriber.py -------------------------------------------------------------------------------- /examples/pubsub/topics_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/pubsub/topics_pub.py -------------------------------------------------------------------------------- /examples/pubsub/topics_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/pubsub/topics_sub.py -------------------------------------------------------------------------------- /examples/recv_into/discard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/recv_into/discard.py -------------------------------------------------------------------------------- /examples/recv_into/recv_into_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/recv_into/recv_into_array.py -------------------------------------------------------------------------------- /examples/security/asyncio-ironhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/security/asyncio-ironhouse.py -------------------------------------------------------------------------------- /examples/security/generate_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/security/generate_certificates.py -------------------------------------------------------------------------------- /examples/security/grasslands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/security/grasslands.py -------------------------------------------------------------------------------- /examples/security/ioloop-ironhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/security/ioloop-ironhouse.py -------------------------------------------------------------------------------- /examples/security/ironhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/security/ironhouse.py -------------------------------------------------------------------------------- /examples/security/stonehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/security/stonehouse.py -------------------------------------------------------------------------------- /examples/security/strawhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/security/strawhouse.py -------------------------------------------------------------------------------- /examples/security/woodhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/security/woodhouse.py -------------------------------------------------------------------------------- /examples/serialization/serialsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/serialization/serialsocket.py -------------------------------------------------------------------------------- /examples/win32-interrupt/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/examples/win32-interrupt/display.py -------------------------------------------------------------------------------- /licenses/LICENSE.tornado.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/licenses/LICENSE.tornado.txt -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/mypy.ini -------------------------------------------------------------------------------- /mypy_tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/mypy_tests/test_context.py -------------------------------------------------------------------------------- /mypy_tests/test_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/mypy_tests/test_socket.py -------------------------------------------------------------------------------- /mypy_tests/test_socket_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/mypy_tests/test_socket_async.py -------------------------------------------------------------------------------- /mypy_tests/test_toplevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/mypy_tests/test_toplevel.py -------------------------------------------------------------------------------- /packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/packaging/README.md -------------------------------------------------------------------------------- /packaging/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/packaging/debian/changelog -------------------------------------------------------------------------------- /packaging/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/packaging/debian/control -------------------------------------------------------------------------------- /packaging/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/packaging/debian/copyright -------------------------------------------------------------------------------- /packaging/debian/pyzmq.dsc.obs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/packaging/debian/pyzmq.dsc.obs -------------------------------------------------------------------------------- /packaging/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/packaging/debian/rules -------------------------------------------------------------------------------- /packaging/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /packaging/obs/_service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/packaging/obs/_service -------------------------------------------------------------------------------- /packaging/redhat/python-pyzmq.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/packaging/redhat/python-pyzmq.spec -------------------------------------------------------------------------------- /perf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/perf/Dockerfile -------------------------------------------------------------------------------- /perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/perf/Makefile -------------------------------------------------------------------------------- /perf/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/perf/collect.py -------------------------------------------------------------------------------- /perf/perf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/perf/perf.ipynb -------------------------------------------------------------------------------- /perf/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/perf/perf.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/pytest.ini -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/cython_ext.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/cython_ext.pyx -------------------------------------------------------------------------------- /tests/test_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_asyncio.py -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_cffi_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_cffi_backend.py -------------------------------------------------------------------------------- /tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_constants.py -------------------------------------------------------------------------------- /tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_context.py -------------------------------------------------------------------------------- /tests/test_cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_cython.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_device.py -------------------------------------------------------------------------------- /tests/test_draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_draft.py -------------------------------------------------------------------------------- /tests/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_error.py -------------------------------------------------------------------------------- /tests/test_etc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_etc.py -------------------------------------------------------------------------------- /tests/test_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_ext.py -------------------------------------------------------------------------------- /tests/test_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_future.py -------------------------------------------------------------------------------- /tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_imports.py -------------------------------------------------------------------------------- /tests/test_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_includes.py -------------------------------------------------------------------------------- /tests/test_ioloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_ioloop.py -------------------------------------------------------------------------------- /tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_log.py -------------------------------------------------------------------------------- /tests/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_message.py -------------------------------------------------------------------------------- /tests/test_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_monitor.py -------------------------------------------------------------------------------- /tests/test_monqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_monqueue.py -------------------------------------------------------------------------------- /tests/test_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_multipart.py -------------------------------------------------------------------------------- /tests/test_mypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_mypy.py -------------------------------------------------------------------------------- /tests/test_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_pair.py -------------------------------------------------------------------------------- /tests/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_poll.py -------------------------------------------------------------------------------- /tests/test_proxy_steerable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_proxy_steerable.py -------------------------------------------------------------------------------- /tests/test_pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_pubsub.py -------------------------------------------------------------------------------- /tests/test_reqrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_reqrep.py -------------------------------------------------------------------------------- /tests/test_retry_eintr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_retry_eintr.py -------------------------------------------------------------------------------- /tests/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_security.py -------------------------------------------------------------------------------- /tests/test_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_socket.py -------------------------------------------------------------------------------- /tests/test_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_ssh.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tests/test_win32_shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_win32_shim.py -------------------------------------------------------------------------------- /tests/test_z85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_z85.py -------------------------------------------------------------------------------- /tests/test_zmqstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/test_zmqstream.py -------------------------------------------------------------------------------- /tests/zmq_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tests/zmq_test_utils.py -------------------------------------------------------------------------------- /tools/backend_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/backend_imports.py -------------------------------------------------------------------------------- /tools/circle_wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/circle_wheels.py -------------------------------------------------------------------------------- /tools/collect_cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/collect_cmake.py -------------------------------------------------------------------------------- /tools/find_vcredist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/find_vcredist.py -------------------------------------------------------------------------------- /tools/install_libzmq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/install_libzmq.sh -------------------------------------------------------------------------------- /tools/showvcvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/showvcvars.py -------------------------------------------------------------------------------- /tools/test_sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/test_sdist.py -------------------------------------------------------------------------------- /tools/test_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/test_wheel.py -------------------------------------------------------------------------------- /tools/wheel-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/wheel-requirements.txt -------------------------------------------------------------------------------- /tools/wheel_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/tools/wheel_summary.py -------------------------------------------------------------------------------- /zmq/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/__init__.pxd -------------------------------------------------------------------------------- /zmq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/__init__.py -------------------------------------------------------------------------------- /zmq/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/__init__.pyi -------------------------------------------------------------------------------- /zmq/_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/_future.py -------------------------------------------------------------------------------- /zmq/_future.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/_future.pyi -------------------------------------------------------------------------------- /zmq/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/_typing.py -------------------------------------------------------------------------------- /zmq/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/asyncio.py -------------------------------------------------------------------------------- /zmq/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/auth/__init__.py -------------------------------------------------------------------------------- /zmq/auth/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/auth/asyncio.py -------------------------------------------------------------------------------- /zmq/auth/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/auth/base.py -------------------------------------------------------------------------------- /zmq/auth/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/auth/certs.py -------------------------------------------------------------------------------- /zmq/auth/ioloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/auth/ioloop.py -------------------------------------------------------------------------------- /zmq/auth/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/auth/thread.py -------------------------------------------------------------------------------- /zmq/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/__init__.py -------------------------------------------------------------------------------- /zmq/backend/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/__init__.pyi -------------------------------------------------------------------------------- /zmq/backend/cffi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/README.md -------------------------------------------------------------------------------- /zmq/backend/cffi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/__init__.py -------------------------------------------------------------------------------- /zmq/backend/cffi/_cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/_cdefs.h -------------------------------------------------------------------------------- /zmq/backend/cffi/_cffi_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/_cffi_src.c -------------------------------------------------------------------------------- /zmq/backend/cffi/_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/_poll.py -------------------------------------------------------------------------------- /zmq/backend/cffi/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/context.py -------------------------------------------------------------------------------- /zmq/backend/cffi/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/devices.py -------------------------------------------------------------------------------- /zmq/backend/cffi/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/error.py -------------------------------------------------------------------------------- /zmq/backend/cffi/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/message.py -------------------------------------------------------------------------------- /zmq/backend/cffi/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/socket.py -------------------------------------------------------------------------------- /zmq/backend/cffi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cffi/utils.py -------------------------------------------------------------------------------- /zmq/backend/cython/__init__.pxd: -------------------------------------------------------------------------------- 1 | from zmq.backend.cython._zmq cimport Context, Frame, Socket 2 | -------------------------------------------------------------------------------- /zmq/backend/cython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cython/__init__.py -------------------------------------------------------------------------------- /zmq/backend/cython/_externs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cython/_externs.pxd -------------------------------------------------------------------------------- /zmq/backend/cython/_zmq.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cython/_zmq.pxd -------------------------------------------------------------------------------- /zmq/backend/cython/_zmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cython/_zmq.py -------------------------------------------------------------------------------- /zmq/backend/cython/constant_enums.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cython/constant_enums.pxi -------------------------------------------------------------------------------- /zmq/backend/cython/libzmq.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/cython/libzmq.pxd -------------------------------------------------------------------------------- /zmq/backend/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/backend/select.py -------------------------------------------------------------------------------- /zmq/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/constants.py -------------------------------------------------------------------------------- /zmq/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/decorators.py -------------------------------------------------------------------------------- /zmq/devices/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/devices/__init__.py -------------------------------------------------------------------------------- /zmq/devices/basedevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/devices/basedevice.py -------------------------------------------------------------------------------- /zmq/devices/monitoredqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/devices/monitoredqueue.py -------------------------------------------------------------------------------- /zmq/devices/monitoredqueuedevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/devices/monitoredqueuedevice.py -------------------------------------------------------------------------------- /zmq/devices/proxydevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/devices/proxydevice.py -------------------------------------------------------------------------------- /zmq/devices/proxysteerabledevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/devices/proxysteerabledevice.py -------------------------------------------------------------------------------- /zmq/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/error.py -------------------------------------------------------------------------------- /zmq/eventloop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/eventloop/__init__.py -------------------------------------------------------------------------------- /zmq/eventloop/_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/eventloop/_deprecated.py -------------------------------------------------------------------------------- /zmq/eventloop/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/eventloop/future.py -------------------------------------------------------------------------------- /zmq/eventloop/ioloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/eventloop/ioloop.py -------------------------------------------------------------------------------- /zmq/eventloop/zmqstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/eventloop/zmqstream.py -------------------------------------------------------------------------------- /zmq/green/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/green/__init__.py -------------------------------------------------------------------------------- /zmq/green/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/green/core.py -------------------------------------------------------------------------------- /zmq/green/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/green/device.py -------------------------------------------------------------------------------- /zmq/green/eventloop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/green/eventloop/__init__.py -------------------------------------------------------------------------------- /zmq/green/eventloop/ioloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/green/eventloop/ioloop.py -------------------------------------------------------------------------------- /zmq/green/eventloop/zmqstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/green/eventloop/zmqstream.py -------------------------------------------------------------------------------- /zmq/green/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/green/poll.py -------------------------------------------------------------------------------- /zmq/log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zmq/log/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/log/__main__.py -------------------------------------------------------------------------------- /zmq/log/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/log/handlers.py -------------------------------------------------------------------------------- /zmq/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zmq/ssh/__init__.py: -------------------------------------------------------------------------------- 1 | from zmq.ssh.tunnel import * 2 | -------------------------------------------------------------------------------- /zmq/ssh/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/ssh/forward.py -------------------------------------------------------------------------------- /zmq/ssh/tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/ssh/tunnel.py -------------------------------------------------------------------------------- /zmq/sugar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/__init__.py -------------------------------------------------------------------------------- /zmq/sugar/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/__init__.pyi -------------------------------------------------------------------------------- /zmq/sugar/attrsettr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/attrsettr.py -------------------------------------------------------------------------------- /zmq/sugar/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/context.py -------------------------------------------------------------------------------- /zmq/sugar/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/frame.py -------------------------------------------------------------------------------- /zmq/sugar/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/poll.py -------------------------------------------------------------------------------- /zmq/sugar/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/socket.py -------------------------------------------------------------------------------- /zmq/sugar/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/stopwatch.py -------------------------------------------------------------------------------- /zmq/sugar/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/tracker.py -------------------------------------------------------------------------------- /zmq/sugar/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/sugar/version.py -------------------------------------------------------------------------------- /zmq/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/tests/__init__.py -------------------------------------------------------------------------------- /zmq/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zmq/utils/garbage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/garbage.py -------------------------------------------------------------------------------- /zmq/utils/getpid_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/getpid_compat.h -------------------------------------------------------------------------------- /zmq/utils/interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/interop.py -------------------------------------------------------------------------------- /zmq/utils/ipcmaxlen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/ipcmaxlen.h -------------------------------------------------------------------------------- /zmq/utils/jsonapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/jsonapi.py -------------------------------------------------------------------------------- /zmq/utils/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/monitor.py -------------------------------------------------------------------------------- /zmq/utils/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/mutex.h -------------------------------------------------------------------------------- /zmq/utils/pyversion_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/pyversion_compat.h -------------------------------------------------------------------------------- /zmq/utils/strtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/strtypes.py -------------------------------------------------------------------------------- /zmq/utils/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/win32.py -------------------------------------------------------------------------------- /zmq/utils/z85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/z85.py -------------------------------------------------------------------------------- /zmq/utils/zmq_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmq/utils/zmq_compat.h -------------------------------------------------------------------------------- /zmqversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeromq/pyzmq/HEAD/zmqversion.py --------------------------------------------------------------------------------