__init__.py 322 B

123456789101112131415
  1. """Python bindings for core 0MQ objects."""
  2. # Copyright (C) PyZMQ Developers
  3. # Distributed under the terms of the Modified BSD License.
  4. from . import _zmq
  5. # mq not in __all__
  6. from ._zmq import * # noqa
  7. from ._zmq import monitored_queue # noqa
  8. Message = _zmq.Frame
  9. __all__ = ["Message"]
  10. __all__.extend(_zmq.__all__)