You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not a bug but a question/feature request. I'm trying to find out how to use pymux with docker-py to shell into containers. I want one window to be the container shell and the other to tail the logs. I've done this in bash already, but I'd like to have it python to simplify features.
I want to be able to spawn a window and pass it a function to start running. I know I can call it with an executable but after looking at the code I can't see an entry point for passing it a subprocess. It looks like it currently only can call shlex to call a another proc
The text was updated successfully, but these errors were encountered:
I have a somewhat related request : I would like to have, in a single async python process, a multi-window input/output.
For example running ptpython on the left window, and visualize some dynamic log output on the right window.
The difference however, is that these would not be "process" in the usual OS sense, but multiple coroutines running as tasks in the background, inside only one python process.
Therefore some kind of interface to have a pymux window somehow providing a pty to a subprocess/function/coroutine would be useful I think...
Not a bug but a question/feature request. I'm trying to find out how to use pymux with docker-py to shell into containers. I want one window to be the container shell and the other to tail the logs. I've done this in bash already, but I'd like to have it python to simplify features.
I want to be able to spawn a window and pass it a function to start running. I know I can call it with an executable but after looking at the code I can't see an entry point for passing it a subprocess. It looks like it currently only can call shlex to call a another proc
The text was updated successfully, but these errors were encountered: