-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automatically open a Python repl with access to the document #41
Comments
So this REPL would be a shortcut to creating a new notebook and writing in the first cell the following code? from jupyterlab_gis import GISDocument
doc = GISDocument("my_document.jGIS") The state/history is saved in the notebook file already, and the notebook can be collaborative. |
More or less yes 👍🏽
True. Wild idea, could the I'm thinking that if we have the code information stored in the file, it makes it easier to share and structure without needing multiple files. EDIT: I also believe the Notebook is probably too much in the UI, a small repl fits better IMO and is closer to what exists in Mayavi/Freecad/Blender |
Or stored somewhere in the notebook metadata? |
I was also thinking of this idea 😄 Then that would still be a notebook |
We should port jupytercad/JupyterCAD#392 to JupyterGIS 🚀 |
Similar to what tools like Mayavi/Freecad/Blender do, we should automatically provide a Python repl with access to the document:
Ideally (probably some items are long term) we would:
GISDocument
and expose it asgis
ordoc
in the Python scope.The text was updated successfully, but these errors were encountered: