{"id":13532091,"url":"https://github.com/yufeiminds/echarts-python","last_synced_at":"2025-04-13T04:59:04.910Z","repository":{"id":19226955,"uuid":"22461414","full_name":"yufeiminds/echarts-python","owner":"yufeiminds","description":"Deprecated. Use PyEcharts instead. https://github.com/pyecharts/pyecharts","archived":false,"fork":false,"pushed_at":"2021-10-01T00:39:53.000Z","size":44,"stargazers_count":417,"open_issues_count":21,"forks_count":125,"subscribers_count":37,"default_branch":"develop","last_synced_at":"2025-04-13T04:58:59.889Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"zelic91/ZAlertView","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yufeiminds.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-31T08:02:26.000Z","updated_at":"2025-03-07T09:20:00.000Z","dependencies_parsed_at":"2022-08-01T03:08:49.791Z","dependency_job_id":null,"html_url":"https://github.com/yufeiminds/echarts-python","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yufeiminds%2Fecharts-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yufeiminds%2Fecharts-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yufeiminds%2Fecharts-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yufeiminds%2Fecharts-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yufeiminds","download_url":"https://codeload.github.com/yufeiminds/echarts-python/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248665759,"owners_count":21142123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T07:01:08.142Z","updated_at":"2025-04-13T04:59:04.886Z","avatar_url":"https://github.com/yufeiminds.png","language":"Python","readme":"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 \u003chttp://echarts.baidu.com/option.html\u003e`_\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 \u003cme@lepture.com\u003e in 2014.\n\nIf you have any question or want to improve this repository, welcome to create\nan `issue \u003chttps://github.com/yufeiminds/echarts-python/issues\u003e`__\nor `pull requests \u003chttps://github.com/yufeiminds/echarts-python/pulls\u003e`__ .\n\nThis repo is maintained by Yufei Li \u003cyufeiminds@gmail.com\u003e now,\nyou can also send a email to me.\n","funding_links":[],"categories":["Languages"],"sub_categories":["Python"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyufeiminds%2Fecharts-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyufeiminds%2Fecharts-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyufeiminds%2Fecharts-python/lists"}