1 | initial version |
I think history.sqlite
is the right file. There are various suggestions for how to access the full history at https://stackoverflow.com/questions/25124037/ipython-print-complete-history-not-just-current-session, including %history -g
for printing to the screen or %hist -o -g -f ipython_history.md
which writes the history to a file. The link also discusses how to read the sqlite
file.
2 | No.2 Revision |
I think history.sqlite
is the right file. There are various suggestions for how to access the full history at https://stackoverflow.com/questions/25124037/ipython-print-complete-history-not-just-current-session, including %history -g
for printing to the screen or %hist -o -g -f ipython_history.md
which writes the history to a file. The link also discusses how to read the sqlite
file.file, and the Python sqlite3 interface (https://docs.python.org/3/library/sqlite3.html) could also help with that.