progressive¶
progressive.bar module¶
-
class
progressive.bar.Bar(term=None, max_value=100, width=u'25%', title_pos=u'left', title=u'Progress', num_rep=u'fraction', indent=0, filled_color=2, empty_color=7, back_color=None, filled_char=u' ', empty_char=u' ', start_char=u'', end_char=u'', fallback=True, fallback_empty_char=u'u25ef', fallback_filled_char=u'u25c9', force_color=None)[source]¶ Bases:
objectProgress Bar with blessings
Several parts of this class are thanks to Erik Rose’s implementation of
ProgressBarinnose-progressive, licensed under The MIT License. MIT nose-progressive/noseprogressive/bar.py- Terminal with 256 colors is recommended. See
- this for Ubuntu installation as an example.
Parameters: - term (blessings.Terminal|NoneType) – blessings.Terminal instance for the terminal of display
- max_value (int) – The capacity of the bar, i.e.,
value/max_value - width (str) – Must be of format {num: int}{unit: c|%}. Unit “c” can be used to specify number of maximum columns; unit “%”. to specify percentage of the total terminal width to use. e.g., “20c”, “25%”, etc.
- title_pos (str) – Position of title relative to the progress bar; can be any one of [“left”, “right”, “above”, “below”]
- title (str) – Title of the progress bar
- num_rep (str) – Numeric representation of completion; can be one of [“fraction”, “percentage”]
- indent (int) – Spaces to indent the bar from the left-hand side
- filled_color (str|int) – color of the
filled_char; can be a string of the color’s name or number representing the color; see theblessingsdocumentation for details - empty_color (str|int) – color of the
empty_char - back_color (str|NoneType) – Background color of the progress bar; must be
a string of the color name, unused if numbers used for
filled_colorandempty_color. If set to None, will not be used. - filled_char (unicode) – Character representing completeness on the progress bar
- empty_char (unicode) – The complement to
filled_char - start_char (unicode) – Character at the start of the progress bar
- end_char (unicode) – Character at the end of the progress bar
- fallback (bool) – If this is set, if the terminal does not support
provided colors, this will fall back to plain formatting
that works on terminals with no color support, using the
provided
fallback_empty_char` and ``fallback_filled_char - force_color (bool|NoneType) –
Trueforces color to be used even if it may not be supported by the terminal;Falseforces use of the fallback formatting;Nonedoes not force anything and allows automatic detection as usual.
-
end_char¶ Character at the end of the progress bar
-
full_line_width¶ Find actual length of bar_str
e.g., Progress [ | ] 10/10
-
max_value¶ The capacity of the bar, i.e.,
value/max_value
-
max_width¶ Get maximum width of progress bar
Return type: int Returns: Maximum column width of progress bar
-
start_char¶ Character at the start of the progress bar
-
title¶ Title of the progress bar
progressive.cursor module¶
-
class
progressive.cursor.Cursor(term=None)[source]¶ Bases:
objectCommon methods for cursor manipulation
Parameters: term (NoneType|blessings.Terminal) – Terminal instance; if not given, will be created by the class
progressive.examples module¶
Examples
Usage: python -c “from progressive.examples import *; tree()” as an example
progressive.exceptions module¶
-
exception
progressive.exceptions.ColorUnsupportedError[source]¶ Bases:
progressive.exceptions.ProgressiveExceptionColor is not supported by terminal
-
exception
progressive.exceptions.LengthOverflowError[source]¶ Bases:
progressive.exceptions.ProgressiveExceptionTerminal is not long enough to display hierarchy
-
exception
progressive.exceptions.ProgressiveException[source]¶ Bases:
exceptions.ExceptionBase class for exceptions raised by
progressive
-
exception
progressive.exceptions.WidthOverflowError[source]¶ Bases:
progressive.exceptions.ProgressiveExceptionTerminal is not wide enough for the bar attempting to be written
progressive.pretty module¶
progressive.tree module¶
-
class
progressive.tree.BarDescriptor[source]¶ Bases:
dictBar descriptor
To be used in leaf of a tree describing a hierarchy for
ProgressTree, e.g.,:- tree = {“Job”:
{“Task1”: BarDescriptor(…)}, {“Task2”:
{“Subtask1”: BarDescriptor(…)},},
}
Parameters:
-
class
progressive.tree.ProgressTree(term=None, indent=4)[source]¶ Bases:
objectProgress display for trees
For drawing a hierarchical progress view from a tree
Parameters: - term (NoneType|blessings.Terminal) – Terminal instance; if not given, will be created by the class
- indent (int) – The amount of indentation between each level in hierarchy
-
draw(tree, bar_desc=None, save_cursor=True, flush=True)[source]¶ Draw
treeto the terminalParameters: - tree (dict) –
treeshould be a tree representing a hierarchy; each key should be a string describing that hierarchy level and value should also bedictexcept for leaves which should beBarDescriptors. SeeBarDescriptorfor a tree example. - bar_desc (BarDescriptor|NoneType) – For describing non-leaf bars in that will be
drawn from
tree; certain attributes such asvalueandkwargs["max_value"]will of course be overridden if provided. - flush (bool) – If this is set, output written will be flushed
- save_cursor (bool) – If this is set, cursor location will be saved before drawing; this will OVERWRITE a previous save, so be sure to set this accordingly (to your needs).
- tree (dict) –
progressive.util module¶
-
progressive.util.ensure(expr, exc, *args, **kwargs)[source]¶ Raises: exc – With *argsand**kwargsif notexpr