$ git clone https://github.com/tpwnny/Charts-graphs.git
$ cd Charts-graphs
$ pip install -r requirements.txt
$ python setup.py install
from pyecharts.charts import Bar
from pyecharts import options as opts
bar = (
Bar()
.add_xaxis(["衬衫", "毛衣", "领带", "裤子", "风衣", "高跟鞋", "袜子"])
.add_yaxis("商家A", [114, 55, 27, 101, 125, 27, 105])
.add_yaxis("商家B", [57, 134, 137, 129, 145, 60, 49])
.set_global_opts(title_opts=opts.TitleOpts(title="某商场销售情况"))
)
bar.render()
from pyecharts.render import make_snapshot
# needs to configure selenium
make_snapshot(bar.render(), "bar.png")