Running Python Code in Windows Batch File Trick
I found this really neat bit of .bat file magic that will let you save your python script code in a .bat file and run it in windows just like any other script. The nice thing about this is that you don’t have to create a separate “launch.bat” file with one “start python script.py” line in it.
This makes running python scripts in Windows more like it is on a Linux/Mac where you can easily add a #!/usr/bin/env python line to the script and run it directly.
Here’s the bit of tricky batch file magic that does it:
@setlocal enabledelayedexpansion && python -x "%~f0" %* & exit /b !ERRORLEVEL! #start python code here print "hello world"
The way it works is that the first line of the file does two different things.
- starts python interpreter passing the name of the file in, and the -x option will tell it to skip the first line (containing .bat file code)
- When python finishes the script exits.
This nifty trick makes it much nicer for writing admin scripts with python on Windows.
Update: fixed to properly pass command line arguments (%* argument passes through the command line arguments for the bat file to python)
More from halotis.com
Related posts:
- Automatically Respond to Twitter Messages
- Scrape Technorati Search Results in Python
- Scrape Advertisements from Google Search Results with Python
- Sending Email from Python using Gmail
- Translate An RSS Feed To Another Language in Python



Running Python Code in Windows Batch File Trick – I found this really neat bit of .bat file magic that will let you.. http://bit.ly/4QopL
This comment was originally posted on Twitter
Sweet… now how do I stealth deploy the python interpreter to every PC in my office so that I never have to write another VBscript?
This comment was originally posted on Reddit
"Security" patch. :-)
This comment was originally posted on Reddit
lol windows. They have transparent glassy foggy graphics-accelerated window borders, but they still use the same tired conventions from the 90’s.
This comment was originally posted on Reddit
The irony is that (PowerShell)[http://en.wikipedia.org/wiki/Powershell] –Windows’ modern alternative to batch files– feels so Unix-y that I refuse to use it.
This comment was originally posted on Reddit
Nice trick. How would you recommend passing in invocation arguments from the command line? I’d like to be able to use sys.argv from within my .bat embedded python program.
thanks
I thought Windows environments had easy installation to client machines?
This comment was originally posted on Reddit
Running python in a windows .bat script: http://bit.ly/fd7Ns
This comment was originally posted on Twitter
Technically, yes. Politically, no.
This comment was originally posted on Reddit
How is this useful? On my machines, I simply associate .py extensions to Python. Done. Runs when I doubleclick it now. On others’ machines that don’t have Python, I compile my script using Py2Exe. Runs when they doubleclick it now.
This comment was originally posted on Reddit
I updated the batch file line to pass through the command line arguments.
Example Usage:
Here’s what echo.bat looks like:
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world
This comment was originally posted on Reddit
Why not just register .py files as runnable?
You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it seems needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable:
Don’t think I’ll ever use it but here is a clever hack to run python scripts in windows http://bit.ly/aeuIF
This comment was originally posted on Twitter
What kind of unix are *you* using?
This comment was originally posted on Reddit
you dont… use py2exe, not this weird hack :P
This comment was originally posted on Reddit
Technically Python doesn’t need any registry entries, IIRC, so you could just set up environment variables and have it run using a shared folder containing python, no?
This comment was originally posted on Reddit
How is this useful? On my machines, I simply associate .py extensions to Python. Done. Runs when I doubleclick it now.
On others’ machines that don’t have Python, I compile my script using Py2Exe. Runs when they doubleclick it now.
Don’t get me wrong – much kudos to you for this cleverness. I just have zero use for this in a production environment.
The one with: * Long-named switches: most switches in Windows CMD are single-lettered. * Switches starting with `-` instead of `/`. * Manpages that are more than 1 screen long: most Windows console commands have terse help listings. * variables starting with `$`: Windows’ CMD and batch files use %…%. * ls, cp, cat, cwd, pwd, man, .. etc. I’m not saying that all these things are bad, but they are obviously *nix conventions (some better than their Windows counterparts and some worse).
This comment was originally posted on Reddit
quite right. you can just set Windows to associate the .py file with python. what this .bat file trick accomplishes is to make it familiar to users that are not used to running .py files. Now they get a .bat file which they know they can click to run a program. It’s just one less thing that you have to explain to users of your scripts.
There are lots of people in my office that if I sent them a python script I would get a “What do I do with this?” type response. But they would know what to do with a .bat file.
Running Python Code in Windows Batch File Trick – I found this really neat bit of .bat file magic that will let you.. http://bit.ly/18MoTu
This comment was originally posted on Twitter
Running Python Code in Windows Batch File Trick | HalOtis Marketing: Here’s the bit of tricky batch file magic t.. http://bit.ly/kYB1d
This comment was originally posted on Twitter