analyzer.cli.browser¶
Classes¶
The base class for Textual Applications. |
|
A Widget is the base class for Textual widgets. |
|
A Widget is the base class for Textual widgets. |
|
A Widget is the base class for Textual widgets. |
Functions¶
|
Module Contents¶
- class analyzer.cli.browser.ResultBrowser(results)[source]¶
Bases:
textual.app.AppThe base class for Textual Applications.
- CSS = Multiline-String[source]¶
Show Value
""" #sidebar { width: 30%; height: 100%; dock: left; } #search_input { dock: top; margin: 1; } ResultTree { width: 100%; height: 100%; } ResultViewer { width: 70%; height: 100%; padding-left: 2; border-left: solid $panel; } HistogramViewer { width: 100%; height: 100%; padding: 1; } .axis_controls { height: auto; min-height: 5; margin-bottom: 1; } .axis_control { margin: 1; padding: 0; width: 1fr; height: auto; } #hist_control_grid { height: auto; min-height: 5; } PlotextPlot { height: 1fr; min-height: 20; } #console_container { height: 15; border-top: solid $panel; dock: bottom; } #console_log { height: 1fr; } #console_input { dock: bottom; } """
Inline CSS, useful for quick scripts. This is loaded after CSS_PATH, and therefore takes priority in the event of a specificity clash.
- class analyzer.cli.browser.ResultTree(results, **kwargs)[source]¶
Bases:
textual.widget.WidgetA Widget is the base class for Textual widgets.
See also [static][textual.widgets._static.Static] for starting point for your own widgets.
- class analyzer.cli.browser.HistogramViewer(histogram_result: analyzer.core.results.Histogram, **kwargs)[source]¶
Bases:
textual.widget.WidgetA Widget is the base class for Textual widgets.
See also [static][textual.widgets._static.Static] for starting point for your own widgets.
- class analyzer.cli.browser.ResultViewer(**kwargs)[source]¶
Bases:
textual.widget.WidgetA Widget is the base class for Textual widgets.
See also [static][textual.widgets._static.Static] for starting point for your own widgets.