Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/zeromq/pyzmq
/ functions
Functions
1,090 in github.com/zeromq/pyzmq
⨍
Functions
1,090
◇
Types & classes
164
↳
Endpoints
1
Method
_atexit
atexit callback sets _stay_down flag so that gc doesn't try to start up again in other atexit handlers
zmq/utils/garbage.py:112
Method
_call_later
(self, delay, callback)
zmq/eventloop/future.py:61
Method
_chain
Chain result through serialization to recvd
zmq/_future.py:341
Method
_chain_cancel
Chain cancellation from f to recvd
zmq/_future.py:368
Method
_clear_io_state
clear any ioloop event handler called once at close
zmq/asyncio.py:154
Method
_clear_wrapper_io
(f)
zmq/_future.py:119
Function
_close
()
tests/conftest.py:51
Function
_close_selector_and_loop
()
zmq/asyncio.py:77
Method
_default_loop
(self)
zmq/asyncio.py:106
Method
_default_loop
(self)
zmq/eventloop/future.py:58
Method
_deserialize
Deserialize with Futures
zmq/_future.py:337
Method
_finish_flush
callback for unsetting _flushed flag.
zmq/eventloop/zmqstream.py:413
Method
_get_attr_opt
get default sockopts as attributes
zmq/sugar/context.py:390
Function
_get_selector_noop
no-op on non-Windows
zmq/asyncio.py:90
Function
_get_selector_windows
Get selector-compatible loop Returns an object with ``add_reader`` family of methods, either the loop itself or a SelectorThread instance.
zmq/asyncio.py:30
Method
_global_name
(name)
zmq/constants.py:307
Method
_global_name
(name)
zmq/constants.py:322
Method
_global_name
(name)
zmq/constants.py:351
Method
_global_name
(name)
zmq/constants.py:366
Function
_id
(x)
zmq/tests/__init__.py:41
Function
_id
(x)
tests/zmq_test_utils.py:38
Method
_init_io_state
initialize the ioloop event handler
zmq/_future.py:721
Method
_init_io_state
initialize the ioloop event handler
zmq/asyncio.py:148
Method
_is_pyzmq_test
(self)
zmq/tests/__init__.py:74
Method
_log_error
(f)
zmq/eventloop/zmqstream.py:563
Function
_monitored_queue
( in_socket, out_socket, mon_socket, in_prefix=b'in', out_prefix=b'out' )
zmq/devices/monitoredqueue.py:27
Function
_notice_atexit
()
zmq/sugar/context.py:29
Function
_paramiko_tunnel
Function for actually starting a paramiko tunnel, to be passed to multiprocessing.Process(target=this), and not called directly.
zmq/ssh/tunnel.py:377
Method
_push_socket
The PUSH socket for use in the zmq message destructor callback.
zmq/utils/garbage.py:149
Method
_remove_finished_future
Make sure that futures are removed from the event list when they resolve Avoids delaying cleanup until the next send/recv event, whic
zmq/_future.py:453
Method
_run
(self)
zmq/eventloop/_deprecated.py:59
Method
_set_attr_opt
set default sockopts as attributes
zmq/sugar/context.py:381
Method
_should_test_timeout
(self)
zmq/tests/__init__.py:78
Method
_should_test_timeout
(self)
tests/zmq_test_utils.py:75
Method
_socket_class
(self, socket_type)
zmq/eventloop/future.py:92
Function
_sort_key
(dll_path)
tools/find_vcredist.py:33
Function
_stop_tunnel
(cmd)
zmq/ssh/tunnel.py:301
Function
_try_passwordless_openssh
Try passwordless login with shell ssh command.
zmq/ssh/tunnel.py:81
Method
_unwatch_raw_sockets
Unschedule callback for a raw socket
zmq/asyncio.py:130
Method
_unwatch_raw_sockets
Unschedule callback for a raw socket
zmq/eventloop/future.py:72
Method
_watch_raw_socket
Schedule callback for a raw socket
zmq/asyncio.py:122
Method
_watch_raw_socket
Schedule callback for a raw socket
zmq/eventloop/future.py:68
Method
action
()
zmq/utils/win32.py:93
Method
assertRaisesErrno
(self, errno, func, *args, **kwargs)
zmq/tests/__init__.py:169
Method
assertRaisesErrno
(self, errno, func, *args, **kwargs)
zmq/tests/__init__.py:215
Method
assertRaisesErrno
(self, errno, func, *args, **kwargs)
tests/zmq_test_utils.py:163
Function
assert_raises_errno
(errno)
tests/conftest.py:148
Method
async_callback
(self, domain, key)
tests/test_auth.py:326
Method
atest_ctxterm
(self)
tests/test_error.py:30
Method
attach
()
tests/test_future.py:313
Method
beat
(self)
examples/heartbeat/heartbeater.py:52
Method
bind
Bind the socket to an address. This causes the socket to listen on a network port. Sockets on the other side of this connect
zmq/backend/cython/_zmq.py:971
Method
bind
(self, address)
zmq/backend/cffi/socket.py:172
Method
block
()
tests/test_context.py:291
Function
bound_pair
(create_bound_pair)
tests/conftest.py:194
Method
bytes
The message content as a Python bytes object. The first time this property is accessed, a copy of the message contents is made. From
zmq/backend/cython/_zmq.py:442
Method
bytes
(self)
zmq/backend/cffi/message.py:175
Method
cancel
(self)
zmq/eventloop/future.py:46
Method
cancel_poll
Cancel underlying poll if request has been cancelled
zmq/_future.py:416
Method
cancel_timeout
(f)
zmq/_future.py:175
Method
cancel_watcher
(f)
zmq/_future.py:183
Function
cast_bytes
cast unicode or bytes to bytes
zmq/utils/strtypes.py:18
Function
cast_unicode
cast bytes or unicode to unicode
zmq/utils/strtypes.py:33
Function
certs
(secret_keys_dir)
tests/test_auth.py:91
Function
check_zmq_version
Check that zmq.h has an appropriate version.
zmqversion.py:84
Function
client
()
examples/gevent/reqrep.py:32
Function
client_msg_recvd
(msg: List[bytes])
examples/security/ioloop-ironhouse.py:53
Method
close
(self, linger: int | None = None)
zmq/_future.py:245
Method
close
(self)
zmq/eventloop/_deprecated.py:120
Method
close
Close the socket. If linger is specified, LINGER sockopt will be set prior to closing. This can be called to close the sock
zmq/backend/cython/_zmq.py:754
Method
closed
Whether the socket is closed
zmq/backend/cython/_zmq.py:750
Method
closed
(self)
zmq/backend/cffi/context.py:41
Method
closed
(self)
zmq/backend/cffi/socket.py:154
Method
configure_gssapi
Configure GSSAPI authentication Currently this is a no-op because there is nothing to configure with GSSAPI.
zmq/auth/base.py:215
Method
connect
Connect to a remote 0MQ socket. Parameters ---------- addr : str The address string. This has the form '
zmq/backend/cython/_zmq.py:1016
Method
connect
(self, address)
zmq/backend/cffi/socket.py:201
Method
connect_ctrl
Enqueue ZMQ address for connecting on ctrl_socket. See zmq.Socket.connect for details.
zmq/devices/proxysteerabledevice.py:39
Function
consume
Consume messages
examples/device/device.py:28
Function
context
Decorator for adding a Context to a function. Usage:: @context() def foo(ctx): ... .. versionadded:: 15.3
zmq/decorators.py:159
Function
context
Fixture for shared context
tests/conftest.py:116
Method
context
(self)
zmq/utils/garbage.py:91
Function
contexts
Fixture to track contexts used in tests For cleanup purposes
tests/conftest.py:99
Function
count_calls
(f)
tests/test_win32_shim.py:11
Method
crash_zmq
()
tests/test_context.py:276
Method
create_bound_pair
Create a bound socket pair using a random port.
zmq/tests/__init__.py:133
Function
create_certificates
Create zmq certificates. Returns the file paths to the public and secret certificate files.
zmq/auth/certs.py:61
Function
create_certs
Create CURVE certificates for a test
tests/test_auth.py:31
Function
curve_keypair
generate a Z85 key pair for use with zmq.CURVE security Requires libzmq (≥ 4.0) to have been built with CURVE support. .. versionadded:: lib
zmq/backend/cython/_zmq.py:1552
Function
curve_keypair
generate a Z85 key pair for use with zmq.CURVE security Requires libzmq (≥ 4.0) to have been built with CURVE support. Returns -------
zmq/backend/cffi/utils.py:24
Function
curve_public
Compute the public key corresponding to a secret key for use with zmq.CURVE security Requires libzmq (≥ 4.2) to have been built with CURVE su
zmq/backend/cython/_zmq.py:1578
Function
curve_public
Compute the public key corresponding to a private key for use with zmq.CURVE security Requires libzmq (≥ 4.2) to have been built with CURVE s
zmq/backend/cffi/utils.py:41
Function
cython_enums
generate `enum: ZMQ_CONST` block for constant_enums.pxi
buildutils/constants.py:47
Function
dealer_router
(create_bound_pair)
tests/conftest.py:204
Function
decode
decode Z85 bytes to raw bytes, accepts ASCII string
zmq/utils/z85.py:40
Method
decorator
(func)
zmq/decorators.py:61
Function
deserialize
(frames)
tests/test_asyncio.py:211
Method
deserialize
(frames)
tests/test_future.py:211
Method
deserialize
(frames)
tests/test_socket.py:724
Function
device
Start a zeromq device (gevent-compatible). Unlike the true zmq.device, this does not release the GIL. Parameters ---------- device_t
zmq/green/device.py:9
Function
device
Deprecated alias for zmq.proxy .. deprecated:: libzmq-3.2 .. deprecated:: 13.0
zmq/sugar/__init__.py:14
← previous
next →
501–600 of 1,090, ranked by callers