Skip to content

Commit 36b0dc3

Browse files
Feat: Added Command Console (#2697)
1 parent 41be443 commit 36b0dc3

File tree

4 files changed

+418
-2
lines changed

4 files changed

+418
-2
lines changed

docs/apis/visualization.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,13 @@ For a detailed tutorial, please refer to our [Visualization Tutorial](../tutoria
5252
:members:
5353
:undoc-members:
5454
:show-inheritance:
55+
```
56+
57+
## Command Console
58+
59+
```{eval-rst}
60+
.. automodule:: mesa.visualization.command_console
61+
:members:
62+
:undoc-members:
63+
:show-inheritance:
5564
```

mesa/visualization/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@
99
draw_space,
1010
)
1111

12+
from .command_console import CommandConsole
1213
from .components import make_plot_component, make_space_component
1314
from .components.altair_components import make_space_altair
1415
from .solara_viz import JupyterViz, SolaraViz
1516
from .user_param import Slider
1617

1718
__all__ = [
19+
"CommandConsole",
1820
"JupyterViz",
1921
"Slider",
2022
"SolaraViz",

0 commit comments

Comments
 (0)