вторник, 29 мая 2018 г.

Запуск Jupyter notebook внутри другого ноутбука


import io
from nbformat import current
def execute_notebook(nbfile):
 
    with io.open(nbfile) as f:
        nb = current.read(f, 'json')
 
    ip = get_ipython()
 
    for cell in nb.worksheets[0].cells:
        if cell.cell_type != 'code':
            continue
        ip.run_cell(cell.input)

execute_notebook("ntbk.ipynb")

Комментариев нет:

Отправить комментарий