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
One use case for Python is to use it to drive other processes -- essentially a replacement for bash, or zsh, or powershell, or cmd.exe, or ....
Maybe we should cover that?
I've been think we should add this in the past, and others have suggested it, but this note on Python-ideas inspired me to revive the idea. And he's got some nice notes up online:
Part of the argument was about using pure standard library so a self-contained script/repo could run anywhere Python is in order to (e.g.) bootstrap other testing environments and/or work within restricted ones, just like your average shell script. A gigantic step up from there is using anything not in the stdlib because you may need to copy a bunch of files (venv creation), and download executable things from the Internet (horrific to some).
The text was updated successfully, but these errors were encountered:
One use case for Python is to use it to drive other processes -- essentially a replacement for bash, or zsh, or powershell, or cmd.exe, or ....
Maybe we should cover that?
I've been think we should add this in the past, and others have suggested it, but this note on Python-ideas inspired me to revive the idea. And he's got some nice notes up online:
The text was updated successfully, but these errors were encountered: