I have a python script that resides on a remote server, under version control, and I'd like to execute it from my local shell.
I know that curl https://remote.path/script.py | python will work (as confirmed here) when there are no additional parameters.
The problem is, I can't figure out how to pass in additional command line arguments, e.g. python script.py arg1 arg2 arg3?
I recognize this is may not be the most secure practice, but the script is pretty benign.
argparseoroptparse?