How to reload modules in django shell?

后端 未结 11 1108
面向向阳花
面向向阳花 2020-12-22 18:38

I am working with Django and use Django shell all the time. The annoying part is that while the Django server reloads on code changes, the shell does not, so every time I ma

11条回答
  •  生来不讨喜
    2020-12-22 19:11

    look at the manage.py shell_plus command provided by the django-extensions project. It will load all your model files on shell startup. and autoreload your any modify but do not need exit, you can direct call there

提交回复
热议问题