Skip to content
juhasch edited this page Dec 29, 2014 · 7 revisions

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

Demo Video(http://www.youtube.com/watch?v=sEsvdueOXcg)

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