help#

help(pattern=None, source=False, ignorecase=True, flags=None, context=False, output=False, debug=False)[source]#

Get help on Sciris in general, or search for a word/expression.

Parameters:
  • pattern (str) – the word, phrase, or regex to search for

  • source (bool) – whether to search source code instead of docstrings for matches

  • ignorecase (bool) – whether to ignore case (equivalent to flags=re.I)

  • flags (list) – additional flags to pass to re.findall()

  • context (bool) – whether to show the line(s) of matches

  • output (bool) – whether to return the dictionary of matches

Examples:

sc.help()
sc.help('smooth')
sc.help('JSON', ignorecase=False, context=True)
sc.help('pickle', source=True, context=True)
New in version 1.3.0.
New in version 1.3.1: “source” argument