dash useful components is a Dash component library. It provides the following components:
Get started with:
python usage.py
See CONTRIBUTING.md
If you have selected install_dependencies during the prompt, you can skip this part.
Install npm packages
$ npm install
Create a virtual env and activate.
$ virtualenv venv
$ . venv/bin/activate
Note: venv\Scripts\activate for windows
Install python packages required to build components.
$ pip install -r requirements.txt
Install the python packages for testing (optional)
$ pip install -r tests/requirements.txt
src/lib/components/DashUsefulComponents.react.js
.src/demo
and you will import your example component code into your demo app.$ npm run build
usage.py
sample dash app:
$ python usage.py
tests/test_usage.py
, it will load usage.py
and you can then automate interactions with selenium.$ pytest tests
.dash_useful_components
).
MANIFEST.in
so that they get properly included when you're ready to publish your component._css_dist
dict in dash_useful_components/__init__.py
so dash will serve them automatically when the component suite is requested.Build your code:
$ npm run build
Create a Python tarball
$ python setup.py sdist
This distribution tarball will get generated in the dist/
folder
Test your tarball by copying it into a new environment and installing it locally:
$ pip install dash_useful_components-0.1.0.tar.gz
If it works, then you can publish the component to NPM and PyPI:
$ twine upload dist/*
$ rm -rf dist
publish_on_npm
)
$ npm publish
_Publishing your component to NPM will make the JavaScript bundles available on the unpkg CDN. By default, Dash serves the component library's CSS and JS locally, but if you choose to publish the package to NPM you can set serve_locally
to False
and you may see faster load times._
Share your component with the community! https://community.plotly.com/c/dash