Skip to content
Juergen Hasch edited this page Mar 28, 2015 · 7 revisions

This extension limits the number of characters a codecell can output as text. This also allows to interrupt endless loops.

Demo Video

You can set the number of characters using the ConfigManager:

from IPython.html.services.config import ConfigManager
ip = get_ipython()
cm = ConfigManager(parent=ip, profile_dir=ip.profile_dir.location)
cm.update('notebook', {"limit_output": 1000})

Clone this wiki locally