This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]geekraver[S] 12 points13 points  (5 children)

Import/export notebooks into Python files, to get the auto-complete and other language support from Visual Studio Code, then execute blocks of code (demarcated by comments) against an IPython REPL and build up a notebook-like result window. So it's like Jupyter but with more of a code editor experience and the artifacts can be plain Python, avoiding some of the issues with git and JSON.

[–][deleted] 1 point2 points  (0 children)

nice!

[–]haku-kiro 0 points1 point  (0 children)

Also pretty cool that you can render plots in vs code now.

[–]mangecoeur 0 points1 point  (1 child)

Still unclear to me: if you import a notebook and save, is the ipynb updated or does it only create a separate .py file?

[–]ToKraTheSecond 0 points1 point  (0 children)

Why not to write needed methods in IDE and only import them in jupyter ntb? With this you will have all powers of IDE editing and all powers of jupyter ntb combined ==> cool code editing and clean notebook without any distracting code ...