I would like to create a scrollable screen in text mode, like the one obtained when typing help(object) in the interpreter. Is there a cross-platform module I can use to eas
from pydoc import ttypager def jhelp(object): text = # get text for object ttypager(text) # display a scrollable screen.