Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there anything like Lisp's SLIME for Python/Django?

I know about the Django console and it's useful to an extent but it would be really nice to be able to edit your code with the console open, lime SLIME in Emacs. Is there anything that facilitates this for Django or, failing that, at least Python?

like image 379
Jason Swett Avatar asked Feb 01 '11 21:02

Jason Swett


2 Answers

I do not know if this is exactly what you are looking for, but Workzeug provides a interactive debugging tool, which can be used like that. Just do a assert False and you can use the CLI as demonstrated in this screencast: http://ericholscher.com/blog/2008/sep/12/screencast-django-command-extensions/

like image 121
Uku Loskit Avatar answered Oct 08 '22 19:10

Uku Loskit


IDLE

like image 23
eric.christensen Avatar answered Oct 08 '22 18:10

eric.christensen