0

我想使用Travis等持续集成工具为我的 jupyter notebook 生成陈列室页面。

一个完美的例子是Shogun 的陈列室页面,但我不知道他们在使用什么。

4

1 回答 1

1

我们正在使用 buildbot 来生成它;这是它的工作:http: //buildbot.shogun-toolbox.org/builders/nightly_default/builds/44

生成笔记本的内容非常简单:

#!/bin/bash

export PYTHONPATH=$PWD/build_install/lib/python2.7/dist-packages:$PYTHONPATH
export LD_LIBRARY_PATH=$PWD/build_install/lib:$LD_LIBRARY_PATH

find $1 -type f \( -name '*.ipynb' ! -name 'template.ipynb' \) | xargs -I{} cp '{}' $3
find $1 -type f \( -name '*.ipynb' ! -name 'template.ipynb' \) | xargs -P $2 -I{} jupyter nbconvert --ExecutePreprocessor.timeout=600 --to html --output-dir $3 --execute '{}'
find $3 -type f -name '*.html' | xargs -P $2 -I{} python extract_image_from_html.py '{}'
于 2017-02-05T10:05:41.967 回答