Metadata-Version: 1.0
Name: echarts-python
Version: 0.1.3
Summary: Echarts binding for Python
Home-page: https://github.com/yufeiminds/echarts-python
Author: Hsiaoming Yang
Author-email: me@lepture.com
License: BSD
Description: Echarts for Python
        ==================
        
        An unofficial Echarts options generator with Python.
        
        .. image:: https://img.shields.io/pypi/v/echarts-python.svg
           :target: https://pypi.python.org/pypi/echarts-python/
           :alt: Latest Version
        .. image:: https://travis-ci.org/yufeiminds/echarts-python.svg?branch=develop
           :target: https://travis-ci.org/yufeiminds/echarts-python
           :alt: Travis CI Status
        .. image:: https://codecov.io/github/yufeiminds/echarts-python/coverage.svg?branch=develop
           :target: https://codecov.io/github/yufeiminds/echarts-python?branch=master
           :alt: Codecov Status
        .. image:: https://readthedocs.org/projects/echarts-python/badge/?version=latest
           :target: http://echarts-python.readthedocs.org/en/latest/?badge=latest
           :alt: Doc Status
        
        -  Free software: MIT license
        -  Documentation: http://echarts-python.readthedocs.io/en/stable/ (NOT Ready)
        -  Online demo: https://yufeiminds.github.io/echarts-python/ (NOT Ready)
        
        This repo still on developing (ALPHA), DON'T USE IT IN PRODUCTION.
        
        Installation
        ------------
        
        Installing **echarts-python** with pip ::
        
          $ pip install echarts-python
        
        Current version for `Echarts 3.1.6 <http://echarts.baidu.com/option.html>`_
        
        Basic Usage
        -----------
        
        .. code-block:: python
        
            from echarts import Echart, Legend, Bar, Axis
        
            chart = Echart('GDP', 'This is a fake chart')
            chart.use(Bar('China', [2, 3, 4, 5]))
            chart.use(Legend(['GDP']))
            chart.use(Axis('category', 'bottom', data=['Nov', 'Dec', 'Jan', 'Feb']))
        
        The `chart.json` property will be
        
        .. code-block:: javascript
        
            {
                "title": {
                    "text": "GDP",
                    "subtext": "This is a fake chart"
                },
                "series": [
                    {
                        "type": "bar",
                        "data": [
                            2,
                            3,
                            4,
                            5
                        ],
                        "name": "China"
                    }
                ],
                "legend": {
                    "y": "top",
                    "x": "center",
                    "data": [
                        "GDP"
                    ],
                    "orient": "horizontal"
                },
                "xAxis": [
                    {
                        "position": "bottom",
                        "data": [
                            "Nov",
                            "Dec",
                            "Jan",
                            "Feb"
                        ],
                        "type": "category"
                    }
                ],
                "yAxis": {}
            }
        
        on Mac OSX, you also can execute ::
        
            chart.plot()
        
        and invoke a browser to display the chart.
        
        
        Contribution
        ------------
        
        This package authored by Hsiaoming Yang <me@lepture.com> in 2014.
        
        If you have any question or want to improve this repository, welcome to create
        an `issue <https://github.com/yufeiminds/echarts-python/issues>`__
        or `pull requests <https://github.com/yufeiminds/echarts-python/pulls>`__ .
        
        This repo is maintained by Yufei Li <yufeiminds@gmail.com> now,
        you can also send a email to me.
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
