0
import ipynb 

As I m doing on data visualization programme in ipynb, how to import .ipynb to .py modules and how to present data visual charts in .py modules

VEERESH NB
  • 19
  • 5

1 Answers1

2

You can convert your notebook with this command

ipython nbconvert --to python namefile.ipynb

You might have to install mistune through pip for exmaple

If you want to import the code from your notebook to a .py file, you might want to check this out http://nbviewer.jupyter.org/github/jupyter/notebook/blob/master/docs/source/examples/Notebook/Importing%20Notebooks.ipynb

Hope this helps

TioneB
  • 468
  • 3
  • 12