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
I think what you really want is from pydoc import pager. ttypager is a very reduced pager, but pager will automatically use a better pager (basically less) if it is available.