Python: PushThread does not allow interface configuration
Currently, the PushThread directly binds to
```py
self._socket = ctx.socket(zmq.PUSH)
self._socket.bind(f"tcp://*:{port}")
```
without a possibility to specify the network interface like other comm channels do.
issue