1

I was wondering if more interactive help(object) pages can be generated in qtconsole or notebook, like the ipython terminal console and the builtin python command-line tool. For example, some temporary popup encompassing the Qt window/browser tab (respectively) that can be scrolled and searched.

Anyone have any ideas?

Luke Davis
  • 2,548
  • 2
  • 21
  • 43

1 Answers1

1

IPython provides its own introspection/help tools with ?, so if you do object?, you should get similar output to help(object), and it will go into a pager area in current versions.

minrk
  • 37,545
  • 9
  • 92
  • 87
  • Thank you! This is exactly what I was looking for. Are there any other `help` tools in a similar vein, or is this pretty much it? – Luke Davis Mar 06 '17 at 20:01
  • Be sure to learn the shift-Tab shortcut in jupyterlab for bringing up help for any item under the cursor – creanion May 15 '22 at 00:27