module documentation

Undocumented

Constant DEFAULT​_PYTHON​_SHELLS Undocumented
Function ​_embed​_bpython​_shell Start a bpython shell
Function ​_embed​_ipython​_shell Start an IPython Shell
Function ​_embed​_ptpython​_shell Start a ptpython shell
Function ​_embed​_standard​_shell Start a standard python shell
Function get​_shell​_embed​_func Return the first acceptable shell-embed function from a given list of shell names.
Function start​_python​_console Start Python console bound to the given namespace. Readline support and tab completion will be used on Unix, if available.
DEFAULT_PYTHON_SHELLS =

Undocumented

Value
OrderedDict([('ptpython', _embed_ptpython_shell),
             ('ipython', _embed_ipython_shell),
             ('bpython', _embed_bpython_shell),
             ('python', _embed_standard_shell)])
def _embed_bpython_shell(namespace={}, banner=''):
Start a bpython shell
def _embed_ipython_shell(namespace={}, banner=''):
Start an IPython Shell
def _embed_ptpython_shell(namespace={}, banner=''):
Start a ptpython shell
def _embed_standard_shell(namespace={}, banner=''):
Start a standard python shell
def get_shell_embed_func(shells=None, known_shells=None):
Return the first acceptable shell-embed function from a given list of shell names.
def start_python_console(namespace=None, banner='', shells=None):
Start Python console bound to the given namespace. Readline support and tab completion will be used on Unix, if available.