Firstly - I'm a complete noob when it comes to Python. I'm currently trying to launch an external program called Dazzle from Python with a the path to an xml file as a parameter.
I've tried a few different options and can get Dazzle to launch - but the xml file is not processed. Below is the script being used:
From windows command line (works as expected)
DAZZLE tmp\file.xml
Python script:
#!c:/Python30/python.exe -u
# -*- coding: windows-1252 -*-
import os
import subprocess
from subprocess import call
p = call('DAZZLE tmp\163282.xml')
Dazzle launches, but the xml file does not get run. I've tried a few different option - nothing seems to work.
Any suggestions will be greatly appreciated