It's a process, so you can stop it like any other linux process:
killall python
ps aux | grep python and then kill #numproc
ctrl + c
and so on
--
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net
SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928
Rispetta l'ambiente: se non ti è necessario, non stampare questa mail
Jeff Anderson
The httpd stop in init.d does a kill:
stop() {
echo -n $"Stopping $prog: "
killproc -d 10 $httpd
RETVAL=$?
echo
[ $RETVAL = 0 ] && rm -f ${lockfile} ${pidfile}
}
the pid is stored in /etc/httpd/run/httpd.pid
so you can copy the same script for django-devel runserver, but I
think it's not useful because you can call the command within the ide,
see the pid and then call the kill to proc.