示例#1
0
def editNotebook(start=1, end=10):
    nb = nbformat.read("3danalysis.ipynb", as_version=4)

    nb.cells[0]["source"] = nb.cells[0]["source"].format(start, end)
    nb.cells[3]["source"] = nb.cells[3]["source"].format(start, end, end + 1)

    pp = ExecutePreprocessor()
    pp.timeout = 300  # seconds
    pp.interrupt_on_timeout = True

    nb_executed, resources = pp.preprocess(nb, resources={})
    directory = "static/"
    filename = str(start) + str(end) + "export"
    #    nbconvert.HTMLExporter.default_template("toggle.tpl")
    #    nbconvert.export_html(filename)

    with open(directory + filename + ".ipynb", 'w') as f:
        f.write(nbformat.v4.writes_json(nb_executed))

    os.system(
        'ipython nbconvert {0} --to html --template toggle --profile Gitzalytics --output {1}'
        .format(directory + filename + ".ipynb",
                directory + filename + ".html"))

    return filename + ".html"
示例#2
0
def editNotebook(start=1,end=10):
    nb = nbformat.read("3danalysis.ipynb", as_version=4)

    nb.cells[0]["source"]=nb.cells[0]["source"].format(start,end)
    nb.cells[3]["source"]=nb.cells[3]["source"].format(start,end,end+1)

    pp = ExecutePreprocessor()
    pp.timeout = 300  # seconds
    pp.interrupt_on_timeout = True

    nb_executed, resources = pp.preprocess(nb, resources={})
    directory="static/"
    filename=str(start)+str(end)+"export"
#    nbconvert.HTMLExporter.default_template("toggle.tpl")
#    nbconvert.export_html(filename)

    with open(directory+filename+".ipynb", 'w') as f:
        f.write(nbformat.v4.writes_json(nb_executed))

    os.system('ipython nbconvert {0} --to html --template toggle --profile Gitzalytics --output {1}'.format(directory
    + filename+".ipynb", directory+ filename+".html"))

    return filename+".html"
示例#3
0
def run(notebook):
    executor = ExecutePreprocessor()
    notebook, resources = executor.preprocess(notebook, resources={})
示例#4
0
def run(notebook):
    executor = ExecutePreprocessor()
    notebook, resources = executor.preprocess(notebook, resources={})