Is it at all possible to build a Python GUI (lets say using Tkinter
) and then pass the users input from the Python GUI
into a windows batch file.
My objective is to make batch files have a nice front end using Python.
Simple example:
In the Python code the user will be asked for a date
date = inputInt("Please enter Date yyyymmdd")
Now I need to put this date value into a windows batchfile
.