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
I already have a functioning app, that can read data from file. To fit the workflow better I'd like to be able to pipe data into the app. Reading from stdin before starting the app stops the call from being interactive.
Changing from:
python app.py foo.log
To:
cat foo.log | grep bar | python app.py
I have tried around a bit and it would still be possible to read directly from dev/tty. Maybe we can adjust the input driver for this case?
The text was updated successfully, but these errors were encountered:
I already have a functioning app, that can read data from file. To fit the workflow better I'd like to be able to pipe data into the app. Reading from stdin before starting the app stops the call from being interactive.
Changing from:
To:
I have tried around a bit and it would still be possible to read directly from
dev/tty
. Maybe we can adjust the input driver for this case?The text was updated successfully, but these errors were encountered: