惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
Jina AI
Jina AI
雷峰网
雷峰网
博客园_首页
WordPress大学
WordPress大学
博客园 - 司徒正美
爱范儿
爱范儿
博客园 - 聂微东
IT之家
IT之家
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
博客园 - Franky
V
V2EX
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
How to Debug Python Code in Terminal
2019-01-16 · via jdhao's digital space

When I use Pycharm a while ago, I get used to debugging my code with its built-in GUI debugger, which works really well. But when I write code on a server without X11 support, I am forced to use Neovim for Python development. My debugging is reduced to a serize of print statement in the source code. It works well for simple programs. Once my source code becomes long enough or complex enough, it becomes inefficient to add print one by one to just play with an object.

Finally, I decided to give terminal debuggers a try. In this post, I introduce three debuggers.

Pdb#

Python ships with a native debugger called pdb.

You can debug your code with intrusive way or non-introsive way. For the intrusive way, you need to modify your source code:

import pdb

# put the following statement where you want the code to stop and step to pdb
pdb.set_trace()

Personally, I prefer the non-intrusive way to invode pdb. You can run pdb as module:

python -m pdb your_script.py

It will start debugging your code from the begining of the code.

Common commands#

Pdb provides a few commands to help you debug your code on its interacitve interface. Here, I list some of the commands and their meanings:

  • n: execute the next line
  • p: print the value of an object
  • s: step into a function
  • r: return from a function
  • b [num]: set a breakpoint at line [NUM]
  • c: continue to run the code until a break point is met
  • unt [NUM]: run the code until line [NUM]
  • whatis: print the type of object (similar to p type(some_object))
  • l: list the context of current line (default 11 lines)
  • h: show help message
  • q: quit the debugger

How to enable autocomplete#

By default, pdb does not provide auto-completion for variable names and object methods. To enable auto-completion, create a file .pdbrc under your HOME directory with the following settings:

import rlcompleter
import pdb

pdb.Pdb.complete=rlcompleter.Completer(locals()).complete

ipdb#

Ipdb is like pdb, but with built-in autocompletion, syntax highlighting and more commands. You can install it with pip:

Its usage is similar to pdb, so I will not waste time here. One thing worth noting is that ipdb adds a sticky command:

sticky [start end]

Toggle sticky mode. When in sticky mode, it clear the screen
and longlist the current functions, making the source
appearing always in the same position. Useful to follow the
flow control of a function when doing step-by-step execution.

If ``start`` and ``end`` are given, sticky mode is enabled and
only lines within that range (extremes included) will be
displayed.

It means that in stick mode, the current function will be shown and current line will be highlighted to make your follow the execution of program easier.

pudb#

Another terminal debugger worth trying is pudb. First, install it with pip:

To invoke it, you can either use

python -m pudb my_script.py

or simply

Pudb creates a GUI-like interface for debugging your code. It will show your code, current variable, stack trace, break points and a terminal window in its terminal interface.

You can use k and j to move the cursor line up and down and use b to set a break point, which will be highlighted in red. To execute next line of code, use n. To run the code until a break point, use c. For more usage, press h.

Overall, it is quite powerful, considering that it is implemented in a terminal.

Conclusion#

In this post, I introduced three Python debuggers — pdb, ipdb and pudb. They can both help us to debug the code. Personally, I think pudb is the most beautiful one I want to use.

References#


Title image is taken from here