Last active
January 16, 2016 02:54
-
-
Save phaustin/020b99f5620b155af143 to your computer and use it in GitHub Desktop.
ipython snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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