Re: Integration of Django with other python codes

2017-06-15 Thread yingi keme
You have to study django tutorials. Ok for a simple task like this. After you have successfully created your app in your project, all you need is to configure your url so it can point the views.py. The views.py file will have a function like this def myInput(request, input): return rende

Re: Integration of Django with other python codes

2017-06-15 Thread Jani Tiainen
Hi, If you have done the official tutorial [1], you should already hold all the knowledge required to do what you asked. [1] https://docs.djangoproject.com/en/1.11/intro/tutorial01/ On 15.06.2017 14:10, sunitha.b...@algonox.com wrote: Hi guys, Im a newbee to Django.. Actually I was trying t

Integration of Django with other python codes

2017-06-15 Thread sunitha . bist
Hi guys, Im a newbee to Django.. Actually I was trying to integrate my python code to Django web application.. For example.. Im having a python code in which if i enter any input it will generate an output.. In web application I have one input box, button and text area.