Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable per-project history with env var #14

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ you have to do is:

$ flask shell

You may set ``FLASK_PTHISTORY`` environment variable to a path of a file to
enable persistent history.


Alternatives
============
Expand Down
4 changes: 3 additions & 1 deletion flask_shell_ptpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ def shell_command():

ctx.update(app.make_shell_context())

embed(globals=ctx)
# Enable history with FLASK_PTHISTORY pointing to a file.
history = os.environ.get('FLASK_PTHISTORY')
embed(globals=ctx, history_filename=history)