Run Python scripts from Windows command line, argument not passed

18,959

Solution 1

To move the answer to SO (rather than the link in Jon's answer):

Modifying the following two registries so that the arguments are passed along to Python:

HKEY_CLASSES_ROOT\Applications\python.exe\shell\open\command
HKEY_CLASSES_ROOT\py_auto_file\shell\open\command

Add %* to the existing "C:\PythonXX\python.exe" "%1", so that the key now looks like: "C:\PythonXX\python.exe" "%1" %*.

Source: http://eli.thegreenplace.net/2010/12/14/problem-passing-arguments-to-python-scripts-on-windows/

Solution 2

I had the same problem with Windows 7 / Python, and eventualy found that I had to set up correct file associations AND update two registry entries through regedit.

It is all described in this excelent article:

http://eli.thegreenplace.net/2010/12/14/problem-passing-arguments-to-python-scripts-on-windows/

Share:
18,959
Wai Yip Tung
Author by

Wai Yip Tung

Experienced software guy. Python, Web App, HTTP, etc.

Updated on June 05, 2022

Comments

  • Wai Yip Tung
    Wai Yip Tung almost 2 years

    I have a bunch of scripts written in Python. I run them from a Windows command prompt like

    c:> my_script.py arg1 arg2 arg3
    

    This works in every computer and every Windows version since many years ago. Just now it this has broken on my Windows 7 system. The script is loaded and executed. But none of the arguments are passed into the script.

    To illustrate this, I have a script named py_echo.py:

    from pprint import pprint as pp
    import sys
    
    if __name__ =='__main__':
        pp(sys.argv)
    

    Then I execute it with the argument a, b, c. None of them are passed.

    c:\Python27\Lib\site-packages>py_echo.py a b c
    ['C:\\0\\usr\\bin\\py_echo.py']
    

    If I run python.exe explicitly, the arguments are passed correctly

    c:\Python27\Lib\site-packages>python.exe c:\0\usr\bin\py_echo.py a b c
    ['c:\\0\\usr\\bin\\py_echo.py', 'a', 'b', 'c']
    

    It was working before. It only start to break down after I uninstalled a bunch old version Python interpreter and modules from my PC. Reinstalling Python does not help. I wonder what can I do to fix this??

    I have become very dependent on my scripts I built over the years. I feel very handicapped when they breaks :(