{ "info": { "author": "Hsiaoming Yang", "author_email": "me@lepture.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved", "License :: OSI Approved :: BSD License", "Operating System :: MacOS", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: Implementation", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Echarts for Python\n==================\n\nAn unofficial Echarts options generator with Python.\n\n.. image:: https://img.shields.io/pypi/v/echarts-python.svg\n :target: https://pypi.python.org/pypi/echarts-python/\n :alt: Latest Version\n.. image:: https://travis-ci.org/yufeiminds/echarts-python.svg?branch=develop\n :target: https://travis-ci.org/yufeiminds/echarts-python\n :alt: Travis CI Status\n.. image:: https://codecov.io/github/yufeiminds/echarts-python/coverage.svg?branch=develop\n :target: https://codecov.io/github/yufeiminds/echarts-python?branch=master\n :alt: Codecov Status\n.. image:: https://readthedocs.org/projects/echarts-python/badge/?version=latest\n :target: http://echarts-python.readthedocs.org/en/latest/?badge=latest\n :alt: Doc Status\n\n- Free software: MIT license\n- Documentation: http://echarts-python.readthedocs.io/en/stable/ (NOT Ready)\n- Online demo: https://yufeiminds.github.io/echarts-python/ (NOT Ready)\n\nThis repo still on developing (ALPHA), DON'T USE IT IN PRODUCTION.\n\nInstallation\n------------\n\nInstalling **echarts-python** with pip ::\n\n $ pip install echarts-python\n\nCurrent version for `Echarts 3.1.6 `_\n\nBasic Usage\n-----------\n\n.. code-block:: python\n\n from echarts import Echart, Legend, Bar, Axis\n\n chart = Echart('GDP', 'This is a fake chart')\n chart.use(Bar('China', [2, 3, 4, 5]))\n chart.use(Legend(['GDP']))\n chart.use(Axis('category', 'bottom', data=['Nov', 'Dec', 'Jan', 'Feb']))\n\nThe `chart.json` property will be\n\n.. code-block:: javascript\n\n {\n \"title\": {\n \"text\": \"GDP\",\n \"subtext\": \"This is a fake chart\"\n },\n \"series\": [\n {\n \"type\": \"bar\",\n \"data\": [\n 2,\n 3,\n 4,\n 5\n ],\n \"name\": \"China\"\n }\n ],\n \"legend\": {\n \"y\": \"top\",\n \"x\": \"center\",\n \"data\": [\n \"GDP\"\n ],\n \"orient\": \"horizontal\"\n },\n \"xAxis\": [\n {\n \"position\": \"bottom\",\n \"data\": [\n \"Nov\",\n \"Dec\",\n \"Jan\",\n \"Feb\"\n ],\n \"type\": \"category\"\n }\n ],\n \"yAxis\": {}\n }\n\non Mac OSX, you also can execute ::\n\n chart.plot()\n\nand invoke a browser to display the chart.\n\n\nContribution\n------------\n\nThis package authored by Hsiaoming Yang in 2014.\n\nIf you have any question or want to improve this repository, welcome to create\nan `issue `__\nor `pull requests `__ .\n\nThis repo is maintained by Yufei Li now,\nyou can also send a email to me.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/yufeiminds/echarts-python", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "echarts-python", "package_url": "https://pypi.org/project/echarts-python/", "platform": "any", "project_url": "https://pypi.org/project/echarts-python/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/yufeiminds/echarts-python" }, "release_url": "https://pypi.org/project/echarts-python/0.1.3/", "requires_dist": null, "requires_python": null, "summary": "Echarts binding for Python", "version": "0.1.3" }, "last_serial": 2538653, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "84b741d36f577a5f2601c35205f86351", "sha256": "9cd17ca2a35b23e2805fbe749ecc94d87d192fbb73e23568c803df9dff1c53d5" }, "downloads": -1, "filename": "echarts_python-0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "84b741d36f577a5f2601c35205f86351", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7483, "upload_time": "2016-05-27T02:35:28", "url": "https://files.pythonhosted.org/packages/a3/99/26b9758416d9642d8a30cc09b0db9da58c36a601dea218610a8678875650/echarts_python-0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4efa21ddff52c57ebdf8ac3e812a78ce", "sha256": "b97ae15624391fc45efed6efff7fb633782ce6bbdc2e531082c20ff2cfc17b8f" }, "downloads": -1, "filename": "echarts-python-0.1.tar.gz", "has_sig": false, "md5_digest": "4efa21ddff52c57ebdf8ac3e812a78ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5460, "upload_time": "2016-05-27T02:35:18", "url": "https://files.pythonhosted.org/packages/05/02/93ca1a3c0d2961438aafcd0056db4d8116b7beebd66d626228b6e1a2f5ce/echarts-python-0.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "102a74f234bca16d71e5c2dbab7b2091", "sha256": "b5d9f4c3c873cf56771d1fa6090652fdff14551056646ddefe527b1300ff2d81" }, "downloads": -1, "filename": "echarts_python-0.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "102a74f234bca16d71e5c2dbab7b2091", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8378, "upload_time": "2016-06-02T07:55:54", "url": "https://files.pythonhosted.org/packages/e9/6b/7baf88571c6becd5d4068b186bc2a106e06d60e6e02d4b45ddbbdfbae679/echarts_python-0.1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3122a93e327ddae7ded7db186347c7a2", "sha256": "bd4088e5877f5a0ddef087b4ff777d34ff5fa35f8346b0e56e42678337ab1577" }, "downloads": -1, "filename": "echarts-python-0.1.2.tar.gz", "has_sig": false, "md5_digest": "3122a93e327ddae7ded7db186347c7a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6125, "upload_time": "2016-06-02T07:55:38", "url": "https://files.pythonhosted.org/packages/df/d9/81b5521d35cea81bac644067b504d8734543b9692497dbb0e7c7af644a9c/echarts-python-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "0735f3ec808189de27b5eee19f98427e", "sha256": "1f7c79117a287f0bf5ad8468680b429d48093afce1d9e930e3ffd75a7a021eab" }, "downloads": -1, "filename": "echarts_python-0.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "0735f3ec808189de27b5eee19f98427e", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 8576, "upload_time": "2016-12-25T10:35:45", "url": "https://files.pythonhosted.org/packages/fc/54/0c2f0fbc6f7b98f9410049a47817430fb000343b639b1c3afd2fc4f5cab8/echarts_python-0.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb5a1ddd717f95d43da00cf1f9bf2f17", "sha256": "089fd8307c42ea47722cac25185465a962ca21231bb0e1a6737c19e2ba73578b" }, "downloads": -1, "filename": "echarts-python-0.1.3.tar.gz", "has_sig": false, "md5_digest": "bb5a1ddd717f95d43da00cf1f9bf2f17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6504, "upload_time": "2016-12-25T10:34:44", "url": "https://files.pythonhosted.org/packages/ad/d7/258cbe09217d62c225e4f797112493f87382a40d7c4679768ae45ed9d78e/echarts-python-0.1.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0735f3ec808189de27b5eee19f98427e", "sha256": "1f7c79117a287f0bf5ad8468680b429d48093afce1d9e930e3ffd75a7a021eab" }, "downloads": -1, "filename": "echarts_python-0.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "0735f3ec808189de27b5eee19f98427e", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 8576, "upload_time": "2016-12-25T10:35:45", "url": "https://files.pythonhosted.org/packages/fc/54/0c2f0fbc6f7b98f9410049a47817430fb000343b639b1c3afd2fc4f5cab8/echarts_python-0.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb5a1ddd717f95d43da00cf1f9bf2f17", "sha256": "089fd8307c42ea47722cac25185465a962ca21231bb0e1a6737c19e2ba73578b" }, "downloads": -1, "filename": "echarts-python-0.1.3.tar.gz", "has_sig": false, "md5_digest": "bb5a1ddd717f95d43da00cf1f9bf2f17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6504, "upload_time": "2016-12-25T10:34:44", "url": "https://files.pythonhosted.org/packages/ad/d7/258cbe09217d62c225e4f797112493f87382a40d7c4679768ae45ed9d78e/echarts-python-0.1.3.tar.gz" } ] }