An open API service indexing awesome lists of open source software.

https://github.com/jwkvam/piecharts

:pizza: echarts python library
https://github.com/jwkvam/piecharts

Last synced: 4 months ago
JSON representation

:pizza: echarts python library

Awesome Lists containing this project

README

          

# piecharts
echarts python library

Javascript [API](http://echarts.baidu.com/echarts2/doc/option-en.html).

```python
import piecharts

chart = piecharts.line(list(range(10)))
chart.title('hello')
chart.subtext('world')
chart.show()
```