curl http://example.com/script/location | python - [arguments]Alternatively, as a file (in bash):
python <(curl http://example.com/script/location) [arguments]
As discussed, it is often the case where there are multiple distribution types for various needs. One example is JS libraries: usually, in order to limit bandwidth and for ease or portability, a JS library is usually a single file with no extra whitespace. However, it is usually developed in a form more friendly to read. Various distributions for a project should generally be generated from one canonical source.