This is a very vague question i am afraid but i need some advice to start this.
I am a python begginner and i have written a script which performs mathematical calculations.This script needs a lot of user input to perform calculations. Up to now all user input, that is variables and dictionaries, are given by the user in python script called user_input.py and then the main script executes it with execfile("user_input.py") and in that way user input becomes available to the program. The problem is that as i mentioned before, there are a lot of variables to be set and even i that created the script have done a lot of mistakes setting values. So to avoid mistakes in user input, i was thinking that maybe i should create a small front end which will:
- Have specific forms for each variable which will be available to the main python script
- Be able to create input fields for all dictionary values after asking the user what len(Our_dict) would be
- Be able to launch the main script after setting all previous values
If someone can provide a small example:
We want to set a=2 and Our_dict={1:100,2:50,3:200}. In this case the front end must have an input box to set the value of variable a and depending on the len(Our_dict) create (in our example 3) 3 input boxes to set dict values.
Up to now i only know how to do the third goal using the code below which i got from an example:
import os
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
def main():
app = QApplication(sys.argv)
w = MyWindow()
w.show()
sys.exit(app.exec_())
class MyWindow(QWidget):
def __init__(self, *args):
QWidget.__init__(self, *args)
# create objects
self.pb = QPushButton(self.tr("Run main script"))
self.te = QTextEdit()
# layout
layout = QVBoxLayout(self)
layout.addWidget(self.pb)
layout.addWidget(self.te)
self.setLayout(layout)
# create connection
self.connect(self.pb, SIGNAL("clicked(bool)"),
self.run_command)
def run_command(self):
stdouterr = os.popen4("./MyMainPythonScript.py")[1].read()
self.te.setText(stdouterr)
if __name__ == "__main__":
main()
The code above also redirects stdout to the gui. MyMainPythonScript.py in the code above, is the main script that performs the calculations being launched from the gui.
Why i am asking this: My script is already ready and designed to read these variables and especially these dictionaries in this way so a rewrite of the main python script to facilitate the easier creation of the front end is out of the question.
As i have just basic python understanding and no gui related knowledge, i am reading for the first time pyqt tutorials but was not able to pinpoint how to set variables and dictionaries and save them to a file. So my main question is this i guess but i would also like to know if this approach is correct or if there is another better way to perform this task.
Any kind advice is greatly appreciated. Also my hovercraft is full of eels.
execfileto read parameters andos.popen4to run another Python script is certainly not the correct way. – Avaris Sep 11 '12 at 21:33