Re: How to package a django application

2012-08-31 Thread Amyth Arora
I see, your actual problem is not really related either to packaging a django app or to using custom script. are you using django's in built user model ? if yes, then you can do something like this. from django.contrib.auth import authenticate, login from django.shortcuts import

Re: How to package a django application

2012-08-31 Thread Muhammed Salman
Thanks Amyth, Can you please see my reply to Dennis. I have further explained it there what i am exactly looking for ... On Friday, August 31, 2012 9:00:06 AM UTC+3, Amyth wrote: > > Using pure python scripts with django is not all that difficult, as django > itself is a python package. So ,

Re: How to package a django application

2012-08-31 Thread Muhammed Salman
HI, Thanks for the reply. Maybe i should have gone into more details on what i have to actually do. I am sorry for not being clear and hence you kept guessing. The app requirments are simple it requires that the client is shown a user id and password field and if the user id and password

Re: How to package a django application

2012-08-30 Thread Amyth Arora
Using pure python scripts with django is not all that difficult, as django itself is a python package. So , you can simply have a custom script "mailserver.py" (or whatever name) and you import the script to your views and simply call the functions from your custom script under the respective user

How to package a django application

2012-08-30 Thread Muhammed Salman
Hi, I am new to python and django development and have developed a simple email based authentication form as a part of an exercise. Now, i have two questions 1: The requirement from me for this exercise was to create it without any frameworks but i started it with django so its easier