pykd/snippets/ipython.py
SND\kernelnet_cp feb9e84a6e [0.2.x] added : IPython adaptation
git-svn-id: https://pykd.svn.codeplex.com/svn@85804 9b283d60-5439-405e-af05-b73fd8c4d996
2017-11-08 17:42:50 +04:00

15 lines
381 B
Python

from IPython.config.loader import Config
from IPython.terminal.embed import InteractiveShellEmbed
from pykd import *
cfg = Config()
cfg.InteractiveShell.colors = 'NoColor'
cfg.PromptManager.in_template = 'In <\\#>: '
cfg.PromptManager.in2_template = ' .\\D.: '
cfg.PromptManager.out_template = 'Out<\\#>: '
ipshell = InteractiveShellEmbed(config=cfg)
ipshell()