Drag and drop onto python script in windows explorer - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T08:59:54Zhttp://stackoverflow.com/feeds/question/142844http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/142844/drag-and-drop-onto-python-script-in-windows-explorer9Drag and drop onto python script in windows explorergrok2008-09-27T03:02:30Z2009-10-23T22:05:18Z
<p>I would like to drag and drop my data file onto a python script and have it process the file and generate output. The python script accepts the name of the data file as a command line parameter, but Windows Explorer doesn't allow the script to be a drop target.</p>
<p>Is there some kind of configuration that needs to be done somewhere for this work? </p>
http://stackoverflow.com/questions/142844/drag-and-drop-onto-python-script-in-windows-explorer/142854#14285411Answer by Blair Conrad for Drag and drop onto python script in windows explorerBlair Conrad2008-09-27T03:06:25Z2008-09-28T11:19:47Z<p>Sure. From a <a href="http://mindlesstechnology.wordpress.com/2008/03/29/make-python-scripts-droppable-in-windows/" rel="nofollow">mindless technology article called "Make Python Scripts Droppable in Windows"</a>, you can add a drop handler by adding a registry key:</p>
<blockquote>
<p>Here’s a registry import file that you can use to do this. Copy the
following into a .reg file and run it
(Make sure that your .py extensions
are mapped to Python.File).</p>
<pre><code>Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Python.File\shellex\DropHandler]
@="{60254CA5-953B-11CF-8C96-00AA00B8708C}"
</code></pre>
</blockquote>
<p>This makes Python scripts use the WSH drop handler, which is compatible with long filenames. To use the short filename handler, replace the GUID with <code>86C86720-42A0-1069-A2E8-08002B30309D</code>.</p>
<p>A comment in that post indicates that one can enable dropping on "no console Python files (<code>.pyw</code>)" or "compiled Python files (<code>.pyc</code>)" by using the <code>Python.NoConFile</code> and <code>Python.CompiledFile</code> classes.</p>
http://stackoverflow.com/questions/142844/drag-and-drop-onto-python-script-in-windows-explorer/144098#1440980Answer by Greg for Drag and drop onto python script in windows explorerGreg2008-09-27T17:32:48Z2008-09-27T17:32:48Z<p>Where do you drop the file? Into the console window? Or onto the script file icon? I'm not following.</p>
http://stackoverflow.com/questions/142844/drag-and-drop-onto-python-script-in-windows-explorer/1616178#16161780Answer by Mark for Drag and drop onto python script in windows explorerMark2009-10-23T22:05:18Z2009-10-23T22:05:18Z<p>You drop the file's icon onto the script's Icon. However when I do that I get an index out of range error. Because of course the script is an argument for python and the file you are dropping on the script is an argument for your script. No wonder the computer gets confused. I added file to the registry but I still get the same error. I'm able to drop files onto the scripts icon and the script runs but it errors out because the index is out of range so it can't get the name of the file dropped on it.</p>