m1n1/proxyclient/tools/ishell.py
Daniel Berlin b48c6d2ea4 Add ipython shell to proxyclient
Same functionality as the readline shell, but based on
ipython so that it has nicer help/autocomplete/etc

Signed-off-by: Daniel Berlin <dberlin@dberlin.org>
2023-11-27 13:30:27 +09:00

11 lines
248 B
Python
Executable file

#!/usr/bin/env python3
# SPDX-License-Identifier: MIT
import pathlib
import sys
sys.path.append(str(pathlib.Path(__file__).resolve().parents[1]))
from m1n1.setup import *
from m1n1.ishell import run_ishell
run_ishell(globals(), msg="Have fun!")