IPython: Productive Interactive Computing - An advanced interactive computing environment and command shell for Python.
86
A utility that helps users configure and manage IPython settings programmatically.
@generates
def get_profile_directory(profile_name=None):
"""
Get the directory path for an IPython profile.
Args:
profile_name (str, optional): Name of the profile. If None, returns the default profile directory.
Returns:
str: The absolute path to the profile directory.
"""
pass
def get_ipython_directory():
"""
Get the IPython configuration directory path.
Returns:
str: The absolute path to the IPython configuration directory.
"""
pass
def create_config(**settings):
"""
Create an IPython configuration object with the specified settings.
Args:
**settings: Arbitrary keyword arguments representing configuration settings.
Supports nested configuration using dot notation in keys
(e.g., "TerminalInteractiveShell.highlighting_style" or
"TerminalInteractiveShell.autoindent").
Returns:
Config: An IPython Config object with the specified settings applied.
"""
passProvides interactive computing environment and configuration management capabilities.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/pypi-ipythondocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10