如何在IPython中自定义文本颜色?

oro*_*ome 21 python customization ipython

我想在IPython中自定义文本的颜色,但我不知道该怎么做.

我知道在Python中,我可以通过结束sys.ps1sys.ps2使用ANSI颜色代码来完成此操作

sys.ps1=">>> \001\033[0m\033[34m\002"
Run Code Online (Sandbox Code Playgroud)

但是使用相应的方法PromptManager.in_template对IPython不起作用.例如

c = get_config()
c.PromptManager.in_template = 'In [{count}] : {color.Blue}'
Run Code Online (Sandbox Code Playgroud)

提示后对文本的颜色没有影响.

有没有办法改变IPython中的文本颜色?

abu*_*bua 18

IPython中的Colorize和Syntax样式

如果查看安装目录,可以找到名为ipython_config.py的文件.要安装此文件,只需使用以下命令:

ipython profile create
Run Code Online (Sandbox Code Playgroud)

否则找到此文件并将其复制到〜/ .ipython/profile_default /目录中.

也许您想用以下内容备份此文件:

cp ~/.ipython/profile_default/ipython_config.py \
   ~/.ipython/profile_default/ipython_config.py_backup
Run Code Online (Sandbox Code Playgroud)

使用您选择的编辑器打开此文件并搜索以下settigs并在需要时将其注释掉(删除'#'):

  • c.InteractiveShell.color_info = True

  • c.InteractiveShell.colors = 'Linux'

  • c.TerminalInteractiveShell.highlighting_style = 'monokai'

  • c.TerminalInteractiveShell.highlight_matching_brackets = True

等等.有许多有用的设置,你只需要将它们注释掉(删除#)

样式文件

样式文件可以在以下目录中找到:

/ path/to/your/python/site-packages/pygments/styles /

或者,列出样式pygmentize:pygmentize -L styles

  • 在为完成品选择颜色时似乎忽略了风格。关于如何定制这些有什么想法吗? (2认同)

min*_*nrk 10

提示显式设置输入的颜色colors.in_normal.如果要更改输入颜色,则必须更改此颜色.

不幸的是,定制的配色方案仍然在todo列表上(应该非常简单,只是不是高优先级).

你似乎想要的一个有点hackish的例子,改变配置文件中输入和/或输出文本的颜色:

from IPython.utils import coloransi
from IPython.core import prompts

termcolors = coloransi.TermColors() # the color table
# IPython's two color schemes:
dark = prompts.PColLinux.colors
light = prompts.PColLightBG.colors

# colors.in_normal affects input code
dark.in_normal = termcolors.Green
light.in_normal = termcolors.Blue
# colors.normal affects output
dark.normal = light.normal = termcolors.Red
Run Code Online (Sandbox Code Playgroud)

这将设置它以使文本的颜色与提示匹配,但您当然可以选择任何您想要的.

  • 我正在使用IPython 6.1.0,也没有`prompts.PColLinux`或`prompts.PColLinuxBG`.从外观上看,这个子系统在IPython 5中(或附近)被重写,但我在最新版本中找不到任何相同的东西. (2认同)

vaa*_*aab 7

警告:此答案仅与兼容,IPython 5.5.0似乎与不太兼容IPython 6+。(thx @meowsqueak快速测试!)

截至IPython 5.5.0,您可以覆盖目标ipython_config.py模板文件夹中的样式颜色。(即:~/.ipython/profile_default用于defaultLinux典型安装的配置文件)。

IPython代码与着色有关,相当混乱,并且有几种方法用于解析器,调试器和交互式Shell。一部分使用Pygments,另一些提供ANSI转义代码,仅限16种调色板。

解决方案不是很好,但是可行。如果还有其他更漂亮的方法,请在评论中告诉我!。

请注意,由于默认调色板的扩展,我的解决方案还包括为IPython着色的每个部分使用256种或更多颜色的能力。在下面的代码中有一个示例,说明了如何扩展到256种颜色。

因此,这是操作方法,并列出了可能使用的所有令牌:

##
## Basic color scheme that will be modified
##

colorLabel = 'Linux'
c.InteractiveShell.colors = colorLabel


from pygments.token import Token, Keyword, Name, Comment, String, Error, \
     Number, Operator, Generic, Whitespace

c.TerminalInteractiveShell.highlighting_style_overrides = {

    ## Standard Pygments tokens (are all used by IPython ?)

    Whitespace:                "#bbbbbb",
    Comment:                   "italic #008800",
    Comment.Preproc:           "noitalic",
    Comment.Special:           "noitalic bold",

    Keyword:                   "bold #AA22FF",
    Keyword.Pseudo:            "nobold",
    Keyword.Type:              "bold #00BB00",

    Operator:                  "#666666",
    Operator.Word:             "bold #AA22FF",

    Name.Builtin:              "#fff", #""#AA22FF",
    Name.Function:             "#00A000",
    Name.Class:                "#0000FF",
    Name.Namespace:            "bold #0000FF",
    Name.Exception:            "bold #D2413A",
    Name.Variable:             "#B8860B",
    Name.Constant:             "#880000",
    Name.Label:                "#A0A000",
    Name.Entity:               "bold #999999",
    Name.Attribute:            "#BB4444",
    Name.Tag:                  "bold #008000",
    Name.Decorator:            "#AA22FF",

    String:                    "#BB4444",
    String.Doc:                "italic",
    String.Interpol:           "bold #BB6688",
    String.Escape:             "bold #BB6622",
    String.Regex:              "#BB6688",
    String.Symbol:             "#B8860B",
    String.Other:              "#008000",
    Number:                    "#666666",

    Generic.Heading:           "bold #000080",
    Generic.Subheading:        "bold #800080",
    Generic.Deleted:           "#A00000",
    Generic.Inserted:          "#00A000",
    Generic.Error:             "#FF0000",
    Generic.Emph:              "italic",
    Generic.Strong:            "bold",
    Generic.Prompt:            "bold #000080",
    Generic.Output:            "#888",
    Generic.Traceback:         "#04D",

    Error:                     "border:#ff0000",

    ## IPython

    Token.Number: '#ffffff',
    Token.Operator: 'noinherit',
    Token.String: '#8b8',
    Token.Name.Function: '#2080D0',
    Token.Name.Class: 'bold #2080D0',
    Token.Name.Namespace: 'bold #2080D0',
    Token.Prompt: '#ffffff bold',
    Token.PromptNum: '#888888 bold',
    Token.OutPrompt: '#008b8b bold',
    Token.OutPromptNum: '#006b6b bold',
}


from IPython.core import excolors, ultratb, debugger
from IPython.core.excolors import exception_colors as exception_colors_orig

##
## Add new color labels here before attributing them
##


from IPython.utils import coloransi

coloransi.color_templates = (
    # Dark colors

    ("Black"       , "0;30"),
    ("Red"         , "0;31"),
    ("Green"       , "0;32"),
    ("Brown"       , "0;33"),
    ("Blue"        , "0;34"),
    ("Purple"      , "0;35"),
    ("Cyan"        , "0;36"),
    ("LightGray"   , "0;37"),

    # Light colors
    ("DarkGray"    , "1;30"),
    ("LightRed"    , "1;31"),
    ("LightGreen"  , "1;32"),
    ("Yellow"      , "1;33"),
    ("LightBlue"   , "1;34"),
    ("LightPurple" , "1;35"),
    ("LightCyan"   , "1;36"),
    ("White"       , "1;37"),

    ## 256-colors

    ("Green108", "38;5;108"),
)

coloransi.make_color_table(coloransi.TermColors)
coloransi.make_color_table(coloransi.InputTermColors)

for name, value in coloransi.color_templates:
    setattr(coloransi.NoColors, name, '')


C = coloransi.TermColors
IC = coloransi.InputTermColors


def exception_colors():

    ex_colors = exception_colors_orig()

    ex_colors.add_scheme(coloransi.ColorScheme(
        colorLabel,

        # The color to be used for the top line
        topline=C.LightRed,

        # The colors to be used in the traceback
        filename=C.Green,
        lineno=C.DarkGray,
        name=C.Purple,
        vName=C.Cyan,
        val=C.White,
        em=C.LightCyan,

        # Emphasized colors for the last frame of the traceback
        normalEm=C.LightCyan,
        filenameEm=C.Green,
        linenoEm=C.Normal,
        nameEm=C.LightPurple,
        valEm=C.LightGreen,

        # Colors for printing the exception
        excName=C.Red,
        line=C.Yellow,
        caret=C.White,
        Normal=C.Normal
    ))
    return ex_colors

excolors.exception_colors = exception_colors
ultratb.exception_colors = exception_colors
debugger.exception_colors = exception_colors


##
## Parser color (source code colors)
##

from IPython.utils import PyColorize
import token
import tokenize

PyColorize.ANSICodeColors[colorLabel] = coloransi.ColorScheme(
    colorLabel, {
        'header'         : C.LightRed,
        token.NUMBER     : C.LightCyan,
        token.OP         : C.Normal,
        token.STRING     : C.Green108,
        tokenize.COMMENT : C.LightGray,
        token.NAME       : C.Normal,
        token.ERRORTOKEN : C.Red,

        PyColorize._KEYWORD         : C.White,
        PyColorize._TEXT            : C.Yellow,

        ## Keep IC here, you can use other colors

        'in_prompt'      : IC.Green,
        'in_number'      : IC.LightGreen,
        'in_prompt2'     : IC.Green,
        'in_normal'      : IC.Normal,  # color off (usu. Colors.Normal)

        'out_prompt'     : C.Red,
        'out_number'     : C.LightRed,

        'normal'         : C.Normal  # color off (usu. Colors.Normal)
})
Run Code Online (Sandbox Code Playgroud)


小智 6

在 Ipython 中更改颜色的简单方法:

  1. 打开您的 IPython 配置文件 ( ipython_config.py) ,通常位于~/.ipython/profile_default/或 in ~/.ipython/profile_<your_usrname>/(如果您使用的是 IPython 配置文件)。

  2. 查找并取消注释(或更改)设置c.InteractiveShell.colors

  3. 将其更改为可用的颜色方案之一,您可以在注释中看到它们全部列出 - NoColorNeutralLinuxLightBG

  4. 保存配置文件并启动 IPython

如果您没有看到配置文件- 您可以使用以下命令快速生成它:

ipython profile create [profilename]

它将生成具有默认设置的配置文件,您可以根据需要对其进行编辑。