时间:2023-07-21 03:48:01 | 来源:网站运营
时间:2023-07-21 03:48:01 来源:网站运营
pyecharts 采用本地静态资源生成html,离线可访问。:# 通过 git clone$ git clone https://github.com/pyecharts/pyecharts-assets.git# 或者直接下载压缩包$ wget https://github.com/pyecharts/pyecharts-assets/archive/master.zip
Localhost-Server$ cd pyecharts-assets$ python -m http.server
设置 host# 只需要在顶部声明 CurrentConfig.ONLINE_HOST 即可from pyecharts.globals import CurrentConfigCurrentConfig.ONLINE_HOST = "http://127.0.0.1:8000/assets/"# 接下来所有图形的静态资源文件都会来自刚启动的服务器from pyecharts.charts import Barbar = Bar()
再次运行生成html源代码如下,离线断网情况也可以正常打开:# 只需要在顶部声明 CurrentConfig.ONLINE_HOST 即可from pathlib import Pathfrom pyecharts.globals import CurrentConfig# 本地静态资源assets 目录路径static_resource = Path(__file__).parents[1] / 'pyecharts' / 'pyecharts-assets' / 'assets'# windows环境下 / 替换为 /, *nix环境请按需修改CurrentConfig.ONLINE_HOST = str(static_resource).replace("//", r'/') + '/'# 接下来所有图形的静态资源文件都会来自本地指定的静态资源from pyecharts.charts import Barbar = Bar()
生成的html源代码如下,不启用http.server情况下断网时可正常打开:$ cd pyecharts-assets# 安装并激活插件$ jupyter nbextension install assets$ jupyter nbextension enable assets/main
设置 host # 只需要在顶部声明 CurrentConfig.ONLINE_HOST 即可from pyecharts.globals import CurrentConfig, OnlineHostType# OnlineHostType.NOTEBOOK_HOST 默认值为 http://localhost:8888/nbextensions/assets/CurrentConfig.ONLINE_HOST = OnlineHostType.NOTEBOOK_HOST# 接下来所有图形的静态资源文件都会来自刚启动的服务器from pyecharts.charts import Barbar = Bar()
关键词:访问,采用,本地,静态,资源