https://github.com/roeap/dash-ant-design-components
Ant Design (v5) components for Plotly Dash
https://github.com/roeap/dash-ant-design-components
ant-design plotly-dash python
Last synced: 9 months ago
JSON representation
Ant Design (v5) components for Plotly Dash
- Host: GitHub
- URL: https://github.com/roeap/dash-ant-design-components
- Owner: roeap
- License: mit
- Created: 2022-05-03T18:57:34.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T19:34:20.000Z (over 3 years ago)
- Last Synced: 2025-04-12T18:11:58.389Z (about 1 year ago)
- Topics: ant-design, plotly-dash, python
- Language: TypeScript
- Homepage:
- Size: 1010 KB
- Stars: 13
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dash Ant Design Components
Ant Design components for Plotly Dash.
## Install
to install in your python environment.
```shell
poetry add dash-antd
```
or via pip.
```shell
pip install dash-antd
```
## Development
We use [just](https://github.com/casey/just) as command runner, if you prefer not to install
just, have a look at the `justfile` for detailed commands.
To manage python dependencies, we utilize [poetry](python-poetry.org/).
### Getting Started
Install python and node dependencies.
```sh
just install
```
Build the Dash packages.
```sh
just build
```
See all commands with `just -l`
### Example app
An example app is contained in the `example` folder. To run it execute:
```sh
just run
```