I would like to run my python script from Powershell ISE. How do I do that when I also want to pass parameters to the python script. Basicly I want the user to use the script and make little changes, without the neeed to change the actual python script.
This is how the 4 variables are currently written in python:
campaign = "ABC"
dir_xml = r'd:\path\xml'
dir_pictures = r'd:\path\pictures'
dir_output = r'd:\path\output'
I want those 4 variables written in powershell script. What needs to be changed in my python script and how do I pass the variables in powershell?
Also I would like to freeze my packages I have used in the script and copy those in a directory from a different computer. How can I make it possible that the user do not have to install any packages?