1

Is there a command to clear the history of Django's Shell Plus?

I did not find any hints in the documentation or by typing ?.

sevic
  • 879
  • 11
  • 36

2 Answers2

0

Removing the ipython history (~/.ipython/profile_default/history.sqlite) did the job.

sevic
  • 879
  • 11
  • 36
0

You can also use the readline python package to clear history of Django Shell:

import readline
readline.clear_history()
WMRamadan
  • 974
  • 1
  • 11
  • 25