
Convert a IPython Notebook into a Python file via command line
by bernt & torsten
There are several ways to convert, start a notebook with –script flag will save .py file alongside .ipynb on every save. You can also (as ipynb is JSON), load it, loop through it and eval code cell in the current namespace.
If you don’t want to output a Python script every time you save, or you don’t want to restart the IPython kernel:
On the command line, you can use nbconvert:
$ ipython nbconvert --to=python [YOUR_NOTEBOOK].ipynb
As a bit of a hack, you can even call the above command in an IPython notebook by pre-pending! (used for any command-line argument). Inside a notebook:
!ipython nbconvert --to=python config_template.ipynb

Tech Disillusionment
For four decades, I have worked in the tech industry. I started in the 1980s when computing...

A Poem: The Consultant's Message
On a Friday, cold and gray,
The message came, sharp as steel,
Not from those we...

Using AI to Plan Wall Repair and Gutter Installation
In this article, I will share my experience using AI to plan the work required to fix a wall...