pretty-errors:美化python異常輸出以使其清晰易讀

 

1. 安裝pretty-errorspython

python -m pip install pretty_errors

2.若是你想讓你的每個程序都能這樣在報錯時也保持美貌,那麼運行下面這這行命令,就不用每次都 import pretty_errors 。這是使用pretty_errors的推薦方法;除了更簡單和通用以外,使用它意味着SyntaxError異常也會獲得prettly格式化(若是手動導入pretty_errors,則這不起做用)。git

python -m pretty_errors

若是您尚未安裝它,只需導入它,就能夠在項目中使用它:github

import pretty_errors

注意:要得到顏色輸出,您須要在可以輸出顏色的終端中運行:在Windows中,這意味着powershell、cmder等。若是必須使用單色終端,則能夠調用助手函數pretty_errors.mono(),該函數將以對單色輸出有用的方式設置一些配置選項。shell

若是要配置輸出,請使用pretty_errors.configure()、pretty_errors.whitelist()、pretty_errors.blacklist()、pretty_errors.pathed_config()。例如:函數

import pretty_errors pretty_errors.configure( separator_character = '*', filename_display = pretty_errors.FILENAME_EXTENDED, line_number_first = True, display_link = True, lines_before = 5, lines_after = 2, line_color = pretty_errors.RED + '> ' + pretty_errors.default_config.line_color, code_color = ' ' + pretty_errors.default_config.line_color, truncate_code = True, display_locals = True ) pretty_errors.blacklist('c:/python')

3.經過將環境變量PYTHON_prety_errors設置爲0,能夠暫時禁用prety_errors。url

set PYTHON_PRETTY_ERRORS=0spa

調用pretty_errors.activate()將覆蓋此項。.net

 

詳見:https://github.com/onelivesleft/PrettyErrorscode

相關文章
相關標籤/搜索