Skip to content

Instantly share code, notes, and snippets.

@phaustin
Last active January 16, 2016 02:54
Show Gist options
  • Select an option

  • Save phaustin/020b99f5620b155af143 to your computer and use it in GitHub Desktop.

Select an option

Save phaustin/020b99f5620b155af143 to your computer and use it in GitHub Desktop.
ipython snippets
for i in *ipynb;do
ipython nbconvert --nbformat=4 --to=notebook --ClearOutputPreprocessor.enabled=True $i --out $i
done
* markdown from file
from IPython.display import Markdown
Markdown(filename='mdfile.md’)
* include graphics
from IPython.display import Image
Image("img/picture.png",width="50%")
* convert notebooks
[[file:~/repos/atsc500/a500_code/a500_utils/convert_notebooks.py]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment