##// END OF EJS Templates
Added embedded configuration to docs
Added embedded configuration to docs

File last commit:

r23828:cc93d67a
r23828:cc93d67a
Show More
embed_configured.py
22 lines | 737 B | text/x-python | PythonLexer
Erich Spaker
added example of configuring and embedded interpreter
r23827 """Quick snippet explaining how to set config options when embedding ipython."""
# First create a config object from the traitlets library
from traitlets.config import Config
c = Config()
# Now we can set options as we would in a config file:
# c.Class.config_value = value
Erich Spaker
Added embedded configuration to docs
r23828 # For example, we can set the exec_lines option of the InteractiveShellApp
Erich Spaker
added example of configuring and embedded interpreter
r23827 # class to run some code when the IPython REPL starts
c.InteractiveShellApp.exec_lines = [
'print("\\nimporting some things\\n")',
'import math',
"math"
]
c.InteractiveShell.colors = 'LightBG'
c.InteractiveShell.confirm_exit = False
c.TerminalIPythonApp.display_banner = False
Erich Spaker
Added embedded configuration to docs
r23828 # Now we start ipython with our configuration
Erich Spaker
added example of configuring and embedded interpreter
r23827 import IPython
IPython.start_ipython(config=c)