├── .gitignore ├── LICENSE ├── README.md ├── jupyter-lab └── .gitkeep ├── jupyter-notebok └── .gitkeep ├── web-django └── .gitkeep ├── web-flask └── .gitkeep ├── web-sanic └── .gitkeep └── web-tornado └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | .idea 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .coverage 43 | .coverage.* 44 | .cache 45 | nosetests.xml 46 | coverage.xml 47 | *.cover 48 | .hypothesis/ 49 | 50 | # Translations 51 | *.mo 52 | *.pot 53 | 54 | # Django stuff: 55 | *.log 56 | .static_storage/ 57 | .media/ 58 | local_settings.py 59 | 60 | # Flask stuff: 61 | instance/ 62 | .webassets-cache 63 | 64 | # Scrapy stuff: 65 | .scrapy 66 | 67 | # Sphinx documentation 68 | docs/_build/ 69 | 70 | # PyBuilder 71 | target/ 72 | 73 | # Jupyter Notebook 74 | .ipynb_checkpoints 75 | 76 | # pyenv 77 | .python-version 78 | 79 | # celery beat schedule file 80 | celerybeat-schedule 81 | 82 | # SageMath parsed files 83 | *.sage.py 84 | 85 | # Environments 86 | .env 87 | .venv 88 | env/ 89 | venv/ 90 | ENV/ 91 | env.bak/ 92 | venv.bak/ 93 | 94 | # Spyder project settings 95 | .spyderproject 96 | .spyproject 97 | 98 | # Rope project settings 99 | .ropeproject 100 | 101 | # mkdocs documentation 102 | /site 103 | 104 | # mypy 105 | .mypy_cache/ 106 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) chenjiandongx 2019~now 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## pyecharts User Cases 2 | 3 | 本仓库放置 pyecharts 的一些使用示例,这些示例均要求 pyecharts 版本为 v1.4.0+。 4 | 5 | ## 🔖 Demo 6 | 7 | ### Web 8 | 9 | #### Flask 10 | 11 | #### Django 12 | 13 | #### Sanic 14 | 15 | #### Tornado 16 | 17 | ### Jupyter 18 | 19 | #### Jupyter Notebook 20 | 21 | #### Jupyter Lab 22 | 23 | ## 📃 License 24 | 25 | MIT [©chenjiandongx](https://github.com/chenjiandongx) 26 | -------------------------------------------------------------------------------- /jupyter-lab/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyecharts/pyecharts-users-cases/c5225392d6b6e8280b102b78e31e20b09a48cdba/jupyter-lab/.gitkeep -------------------------------------------------------------------------------- /jupyter-notebok/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyecharts/pyecharts-users-cases/c5225392d6b6e8280b102b78e31e20b09a48cdba/jupyter-notebok/.gitkeep -------------------------------------------------------------------------------- /web-django/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyecharts/pyecharts-users-cases/c5225392d6b6e8280b102b78e31e20b09a48cdba/web-django/.gitkeep -------------------------------------------------------------------------------- /web-flask/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyecharts/pyecharts-users-cases/c5225392d6b6e8280b102b78e31e20b09a48cdba/web-flask/.gitkeep -------------------------------------------------------------------------------- /web-sanic/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyecharts/pyecharts-users-cases/c5225392d6b6e8280b102b78e31e20b09a48cdba/web-sanic/.gitkeep -------------------------------------------------------------------------------- /web-tornado/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyecharts/pyecharts-users-cases/c5225392d6b6e8280b102b78e31e20b09a48cdba/web-tornado/.gitkeep --------------------------------------------------------------------------------