Created
January 11, 2021 22:02
-
-
Save viliampucik/8713b09ff7e4d984b29bfcd7804dc1f4 to your computer and use it in GitHub Desktop.
XDG compliant ~/.python_history
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Store interactive Python shell history in ~/.cache/python_history | |
# instead of ~/.python_history. | |
# | |
# Create the following .config/pythonstartup.py file | |
# and export its path using PYTHONSTARTUP environment variable: | |
# | |
# export PYTHONSTARTUP="${XDG_CONFIG_HOME:-$HOME/.config}/pythonstartup.py" | |
import atexit | |
import os | |
import readline | |
histfile = os.path.join(os.getenv("XDG_CACHE_HOME", os.path.expanduser("~/.cache")), "python_history") | |
try: | |
readline.read_history_file(histfile) | |
# default history len is -1 (infinite), which may grow unruly | |
readline.set_history_length(1000) | |
except FileNotFoundError: | |
pass | |
atexit.register(readline.write_history_file, histfile) |
@alichtman the script works ty. I just changed histfile to be in XDG_STATE_HOME as that is where I keep my less and bash history.
histfile = Path(os.getenv("XDG_STATE_HOME", Path.home() / ".local" / "state")) / "python" / "python_history"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I modified your gist to use
pathlib
, and used the patch from @TirtharajPramanik for error handling.$XDG_CACHE_HOME/python_history
does now contain the history, however, the file~/.python_history
is still created and written to. I'm pretty sure this is because we never disable the hook to write the default history file. After disabling that, the code works as expected: