-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Return outputs from `execute_cell` Co-authored-by: Frédéric Collonval <[email protected]>
- Loading branch information
1 parent
5f50c6e
commit aae60dc
Showing
4 changed files
with
204 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
"""Client to interact with Jupyter notebook model.""" | ||
|
||
from .client import NbModelClient | ||
from .model import NotebookModel | ||
from nbformat import NotebookNode | ||
|
||
from .client import NbModelClient | ||
from .model import KernelClient, NotebookModel | ||
|
||
__version__ = "0.1.0" | ||
|
||
__all__ = ["NbModelClient", "NotebookModel", "NotebookNode"] | ||
__all__ = ["KernelClient", "NbModelClient", "NotebookModel", "NotebookNode"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters