Python 101: How to timeout a subprocess
The other day I ran into a use case where I needed to communicate with a subprocess I had started but I needed it to timeout. Unfortunately, Python 2 does not have a way to timeout the communicate method call so it just blocks until it either returns or the process itself closes. There are […]
Python 101: How to timeout a subprocess Read More »