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
{{ message }}
This repository has been archived by the owner on Apr 24, 2018. It is now read-only.
Sometimes you want to use some data in your program as input to some shell tool. Currently, if your data is not file-like object, you must jump through some hoops to make it work (StringIO object does not have fd, so it cannot be used). Personally, in such situation I would use tempfile module from standard library, but some transparent use of strings would be nice, I think.
Kinda like this:
Sometimes you want to use some data in your program as input to some shell tool. Currently, if your data is not file-like object, you must jump through some hoops to make it work (StringIO object does not have fd, so it cannot be used). Personally, in such situation I would use tempfile module from standard library, but some transparent use of strings would be nice, I think.
Kinda like this:
or not so magical:
The text was updated successfully, but these errors were encountered: