pyecharts 生成 html 文件的减肥办法

本文针对旧版本 pyecharts-0.5.11-py2.py3-none-any.whl ,

pip install pyecharts

D:\Python37\Lib\site-packages\pyecharts\templates\
edit simple_chart.html 修改为:




    
    {{ chart.page_title }}
  
  


    {{ echarts_container(chart) }}
    {{ echarts_js_content(chart) }}


D:\Python37\Lib\site-packages\jupyter_echarts_pypkg\resources\echarts\ 有 js

echarts.min.js , echarts-gl.min.js , echarts-liquidfill.min.js , echarts-wordcloud.min.js , main.js

将 echarts 整个目录 copy to 你的工作目录

生成 html 文件大小由 74x KB 降为 4x KB , 因为 echarts.min.js 占用 701KB.

你可能感兴趣的:(python)