如何将display.Javascript(jscript)对象导出到桌面上的图像

时间:2016-03-29 19:10:19

标签: javascript save jupyter-notebook displayobject

在iPython中,我有一个googleAPI热图,它是从javascript中生成的,从Twitter流中查找地理数据:

    html_template = '<div id="%s" style="width: 500px; height: 300px"></div>'
    #This is to make sure the JS gets loaded before we try to load the maps

    time.sleep(1) 


    key = 'geo_english'

    jscript = gen_javascript(key, N=400)

    display.HTML(html_template % key)

    display.Javascript(jscript)

制作出漂亮的热图。我不确定如何将显示对象保存到文件中。 如何将此热图导出到png文件?

0 个答案:

没有答案