TarunMakhija
Programmer
Hi all,
I am a software engineer by profession working in the area of Content Management, albeit in the J2EE and FileNet platforms.
I intend to make a transition to Python and at a later stage to Zope for building web based applications. Need your help for the same and it would be absolutely great if you spend some time on my rather basic query ---->
I have a CRM application that I have developed completely in Python. Although the application is ready I am taking certain user information through raw_input which is what I now want to replace by a GUI.
For simplicity here is what I have in my code currently,
param1 = raw_input('Enter the first parameter: ')
param2 = raw_input('Enter the second parameter: ')
Now this is where I want to pass param1 and param2 through a page (user interface) where I get to enter the fields for param1 and param2 and on submission, my python code can successfully execute the following in my "__main__":
x=Summary(param1, param2)
x.run()
I hence want to take input parameters into my python code through a GUI instead of raw_input
Hope I have communicated my doubt precisely. I am currently testing this application on Windows.
Eagerly awaiting guidance,
Thanks & Regards,
Tarun M.
I am a software engineer by profession working in the area of Content Management, albeit in the J2EE and FileNet platforms.
I intend to make a transition to Python and at a later stage to Zope for building web based applications. Need your help for the same and it would be absolutely great if you spend some time on my rather basic query ---->
I have a CRM application that I have developed completely in Python. Although the application is ready I am taking certain user information through raw_input which is what I now want to replace by a GUI.
For simplicity here is what I have in my code currently,
param1 = raw_input('Enter the first parameter: ')
param2 = raw_input('Enter the second parameter: ')
Now this is where I want to pass param1 and param2 through a page (user interface) where I get to enter the fields for param1 and param2 and on submission, my python code can successfully execute the following in my "__main__":
x=Summary(param1, param2)
x.run()
I hence want to take input parameters into my python code through a GUI instead of raw_input
Hope I have communicated my doubt precisely. I am currently testing this application on Windows.
Eagerly awaiting guidance,
Thanks & Regards,
Tarun M.