Utils¶
Internal subroutines for e.g. aborting execution with an error message, or performing indenting on multiline output.
-
fabric.utils.abort(msg)¶ Abort execution, print
msgto stderr and exit with error status (1.)This function currently makes use of SystemExit in a manner that is similar to sys.exit (but which skips the automatic printing to stderr, allowing us to more tightly control it via settings).
Therefore, it’s possible to detect and recover from inner calls to
abortby usingexcept SystemExitor similar.
-
fabric.utils.error(message, func=None, exception=None, stdout=None, stderr=None)¶ Call
funcwith given errormessage.If
funcis None (the default), the value ofenv.warn_onlydetermines whether to callabortorwarn.If
exceptionis given, it is inspected to get a string message, which is printed alongside the user-generatedmessage.If
stdoutand/orstderrare given, they are assumed to be strings to be printed.
-
fabric.utils.fastprint(text, show_prefix=False, end='', flush=True)¶ Print
textimmediately, without any prefix or line ending.This function is simply an alias of
putswith different default argument values, such that thetextis printed without any embellishment and immediately flushed.It is useful for any situation where you wish to print text which might otherwise get buffered by Python’s output buffering (such as within a processor intensive
forloop). Since such use cases typically also require a lack of line endings (such as printing a series of dots to signify progress) it also omits the traditional newline by default.Note
Since
fastprintcallsputs, it is likewise subject to theuseroutput level.See also
-
fabric.utils.indent(text, spaces=4, strip=False)¶ Return
textindented by the given number of spaces.If text is not a string, it is assumed to be a list of lines and will be joined by
\nprior to indenting.When
stripisTrue, a minimum amount of whitespace is removed from the left-hand side of the given string (so that relative indents are preserved, but otherwise things are left-stripped). This allows you to effectively “normalize” any previous indentation for some inputs.
-
fabric.utils.isatty(stream)¶ Check if a stream is a tty.
Not all file-like objects implement the
isattymethod.
-
fabric.utils.puts(text, show_prefix=None, end='\n', flush=False)¶ An alias for
printwhose output is managed by Fabric’s output controls.In other words, this function simply prints to
sys.stdout, but will hide its output if theuseroutput level is set toFalse.If
show_prefix=False,putswill omit the leading[hostname]which it tacks on by default. (It will also omit this prefix ifenv.host_stringis empty.)Newlines may be disabled by setting
endto the empty string (''). (This intentionally mirrors Python 3’sprintsyntax.)You may force output flushing (e.g. to bypass output buffering) by setting
flush=True.See also
-
fabric.utils.warn(msg)¶ Print warning message, but do not abort execution.
This function honors Fabric’s output controls and will print the given
msgto stderr, provided that thewarningsoutput level (which is active by default) is turned on.