I am currently developing a console application in python.It takes commands from the terminal in the format <my-python-module.py> <command> <other-args>
However i want to drop into REPL and when i write
my-program
It should do like the fololowing
my-program> command 1
my-program> command 2
my-program> exit
good-bye!
How do i do that?