.python_history file

Harry Grey harry.grey1694 at gmail.com
Mon Jul 29 17:06:51 EDT 2019


Hy to Everyone
first of all : Sorry for my english

what do you think about introducing a feature that allows you to group
by date
and after to filter the istruction that are written in the
.python_history file:
maybe with a new structure for .python_history: 

"""
	###DATE-OF-SOME-DAY-START###


	###DATE-OF-SOME-DAY-END###

"""

and maybe developing a new tool, or a core functionality of python
interpreter callable as an argument in the cmd, that allow you to parse
the .python_history file in given date:

With a tool:
	
	PhYstory -d 16 -m 03 -y 2019

or like python Functionality:

	python -hist 16-03-2019/17-03-2019

and why not? why not have a the chance to enable and disable, at will,
writing in the .python_history:

""
	>>> skip_hist
	>>>
	>>> # Make some unusefull instruction
	>>> # Ignored in the history
	>>>	class TryClass:
	>>>		# Some Code
	>>>	
	>>>
	>>> tc = TryClass()
	>>> keep_hist
	>>> # make some interesting code
	>>> # and keep it in the history file.
"""

Thanks

DG.



More information about the Python-list mailing list