-
Notifications
You must be signed in to change notification settings - Fork 372
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
Importing Jupyter notebooks #1300
Comments
Hi, Which type do you mean by Jupyter? If Does this solution satisfy you, or you would need an importer who would do something similar? We don't have any plans currently for this, but it seems like a nice feature, there is maybe some library that converts it, so we could use it to implement this. |
I tried the methods you suggested. Exporting from JupyterLab to HTML and then importing to BoostNote lost a lot of formatting. Doing the same with MD worked much better (as expected). The only major issue is that JupyterLab saves plots as separate png files which don't get imported automatically to BoostNote when importing the MD file. This isn't so much an issue with small notebooks, but when there are several dozen plots it can be a bit of a pain. |
Hi, Since they are separate PNG files, then I suppose you would need to give the Boost Note the whole zip containing PNGs as well as |
I would like to work on this issue. We can use existing file importer(allow to import jupyter notebooks as well).
|
https://ipython.org/ipython-doc/3/notebook/nbconvert.html Command : ipython nbconvert --to markdown notebook.ipynb |
Is it not implementable ? |
Hi, sorry for long await, It should be implementable, but maybe the best would be through dedicated server i.e. PDF exporter server which we use or something similar. Unfortunatelly you cannot work on it since backend is currently not accessible for community. Maybe @Rokt33r can give some insights into how achievable and prioritized this should be. |
Ok |
I'd like to have a CLI app to tackle this issue rather than implementing directly to our server. The CLI should:
Do you think you can tackle the 1st and 2nd ones? I'll check our API to figure out what I need to implement more for the 3rd and the 4th. |
I am building a cli in python. Because nbconvert module is available in Python for notebook to Markdown conversion. I was able to convert to markdown. If it is done I will make a c program file out of it using cython and compile it. |
even better way to get binary from python program is with pyinstaller python package. |
Is there any way, or any plans, to import Jupyter notebooks into boost note? I've noticed that R Markdown output files import reasonably well as an html file, but not sure about Jupyter.
The text was updated successfully, but these errors were encountered: