0018_fastai_pt2_2019_exports

28:09 - how to build a library with jupyter notebook with export and notebook2script.py (fastforward to 2022, we use #| export, nbdev_export, #| default_exp) Jupyter notebook is just a json data file

#export
TEST = 'test'

Export

!python notebook2script.py 00_exports.ipynb

How it works:

import json
d = json.load(open('00_exports.ipynb','r'))['cells']
d[0]