|
32 | 32 | │ │ ├── 📄 reporting.py |
33 | 33 | │ │ │ └── 🏷️ class FitResults |
34 | 34 | │ │ └── 📄 tracking.py |
| 35 | +│ │ ├── 🏷️ class _TerminalLiveHandle |
35 | 36 | │ │ └── 🏷️ class FitProgressTracker |
36 | 37 | │ ├── 📁 minimizers |
37 | 38 | │ │ ├── 📄 __init__.py |
|
93 | 94 | │ ├── 📄 __init__.py |
94 | 95 | │ ├── 📄 crystallography.py |
95 | 96 | │ └── 📄 space_groups.py |
| 97 | +├── 📁 display |
| 98 | +│ ├── 📁 plotters |
| 99 | +│ │ ├── 📄 __init__.py |
| 100 | +│ │ ├── 📄 ascii.py |
| 101 | +│ │ │ └── 🏷️ class AsciiPlotter |
| 102 | +│ │ ├── 📄 base.py |
| 103 | +│ │ │ └── 🏷️ class PlotterBase |
| 104 | +│ │ └── 📄 plotly.py |
| 105 | +│ │ └── 🏷️ class PlotlyPlotter |
| 106 | +│ ├── 📁 tablers |
| 107 | +│ │ ├── 📄 __init__.py |
| 108 | +│ │ ├── 📄 base.py |
| 109 | +│ │ │ └── 🏷️ class TableBackendBase |
| 110 | +│ │ ├── 📄 pandas.py |
| 111 | +│ │ │ └── 🏷️ class PandasTableBackend |
| 112 | +│ │ └── 📄 rich.py |
| 113 | +│ │ └── 🏷️ class RichTableBackend |
| 114 | +│ ├── 📄 __init__.py |
| 115 | +│ ├── 📄 base.py |
| 116 | +│ │ ├── 🏷️ class RendererBase |
| 117 | +│ │ └── 🏷️ class RendererFactoryBase |
| 118 | +│ ├── 📄 plotting.py |
| 119 | +│ │ ├── 🏷️ class PlotterEngineEnum |
| 120 | +│ │ ├── 🏷️ class Plotter |
| 121 | +│ │ └── 🏷️ class PlotterFactory |
| 122 | +│ ├── 📄 tables.py |
| 123 | +│ │ ├── 🏷️ class TableEngineEnum |
| 124 | +│ │ ├── 🏷️ class TableRenderer |
| 125 | +│ │ └── 🏷️ class TableRendererFactory |
| 126 | +│ └── 📄 utils.py |
| 127 | +│ └── 🏷️ class JupyterScrollManager |
96 | 128 | ├── 📁 experiments |
97 | 129 | │ ├── 📁 categories |
98 | 130 | │ │ ├── 📁 background |
|
192 | 224 | │ ├── 📄 handler.py |
193 | 225 | │ │ └── 🏷️ class CifHandler |
194 | 226 | │ └── 📄 serialize.py |
195 | | -├── 📁 plotting |
196 | | -│ ├── 📁 plotters |
197 | | -│ │ ├── 📄 __init__.py |
198 | | -│ │ ├── 📄 plotter_ascii.py |
199 | | -│ │ │ └── 🏷️ class AsciiPlotter |
200 | | -│ │ ├── 📄 plotter_base.py |
201 | | -│ │ │ └── 🏷️ class PlotterBase |
202 | | -│ │ └── 📄 plotter_plotly.py |
203 | | -│ │ └── 🏷️ class PlotlyPlotter |
204 | | -│ ├── 📄 __init__.py |
205 | | -│ └── 📄 plotting.py |
206 | | -│ ├── 🏷️ class Plotter |
207 | | -│ └── 🏷️ class PlotterFactory |
208 | 227 | ├── 📁 project |
209 | 228 | │ ├── 📄 __init__.py |
210 | 229 | │ ├── 📄 project.py |
|
236 | 255 | │ └── 🏷️ class Summary |
237 | 256 | ├── 📁 utils |
238 | 257 | │ ├── 📄 __init__.py |
239 | | -│ ├── 📄 formatting.py |
| 258 | +│ ├── 📄 environment.py |
240 | 259 | │ ├── 📄 logging.py |
241 | | -│ │ └── 🏷️ class Logger |
| 260 | +│ │ ├── 🏷️ class IconifiedRichHandler |
| 261 | +│ │ ├── 🏷️ class ConsoleManager |
| 262 | +│ │ ├── 🏷️ class LoggerConfig |
| 263 | +│ │ ├── 🏷️ class ExceptionHookManager |
| 264 | +│ │ ├── 🏷️ class Logger |
| 265 | +│ │ └── 🏷️ class ConsolePrinter |
242 | 266 | │ └── 📄 utils.py |
243 | 267 | ├── 📄 __init__.py |
244 | 268 | └── 📄 __main__.py |
|
0 commit comments