I have developed a python application to which I am interested in allowing users to access it via web browser. I am new to implementation. I need to "call" the raw_input('your calculation') from the browser and return the results to the browser – GET or POST.
I have added the python script into the views.py file (in any case, it would run if I added it in the models.py file)
It makes sense to create an auxillery folder to contain my python application and communicate with it accordingly.
Any suggestions?