All Projects â†’ plotly â†’ Dash Core Components

plotly / Dash Core Components

Licence: mit
A dash component starter pack 🌠

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Dash Core Components

Jupyter Dash
Develop Dash apps in the Jupyter Notebook and JupyterLab
Stars: ✭ 453 (+91.95%)
Mutual labels:  plotly-dash
Plotly.py
The interactive graphing library for Python (includes Plotly Express) ✨
Stars: ✭ 10,701 (+4434.32%)
Mutual labels:  plotly-dash
Dash Detr
A User Interface for DETR built with Dash. 100% Python.
Stars: ✭ 154 (-34.75%)
Mutual labels:  plotly-dash
Dash Bootstrap Components
Bootstrap components for Plotly Dash
Stars: ✭ 626 (+165.25%)
Mutual labels:  plotly-dash
Fitly
Self hosted web analytics for endurance athletes
Stars: ✭ 65 (-72.46%)
Mutual labels:  plotly-dash
Ml board
a machine learning dashboard that displays hyperparameter settings alongside visualizations, and logs the scientist's thoughts throughout the training process
Stars: ✭ 128 (-45.76%)
Mutual labels:  plotly-dash
Crypto Whale Watching App
Python Dash app that tracks whale activity in cryptocurrency markets.
Stars: ✭ 389 (+64.83%)
Mutual labels:  plotly-dash
Slapdash
Boilerplate for bootstrapping scalable multi-page Dash applications
Stars: ✭ 225 (-4.66%)
Mutual labels:  plotly-dash
Dash Renderer
OBSOLETE has been merged into dash
Stars: ✭ 88 (-62.71%)
Mutual labels:  plotly-dash
Dash Component Boilerplate
Get started creating your own Dash components here.
Stars: ✭ 149 (-36.86%)
Mutual labels:  plotly-dash
Plotly express
Plotly Express - Simple syntax for complex charts. Now integrated into plotly.py!
Stars: ✭ 633 (+168.22%)
Mutual labels:  plotly-dash
Front End
Coronavirus COVID19 US Cases Dashboard
Stars: ✭ 42 (-82.2%)
Mutual labels:  plotly-dash
Docker Flask Gunicorn Nginx
Bootstrap example of a Flask app served via Gunicorn and Nginx using Docker conteiners
Stars: ✭ 138 (-41.53%)
Mutual labels:  plotly-dash
Hexapod Robot Simulator
A hexapod robot simulator built from first principles
Stars: ✭ 577 (+144.49%)
Mutual labels:  plotly-dash
Dtale
Visualizer for pandas data structures
Stars: ✭ 2,864 (+1113.56%)
Mutual labels:  plotly-dash
Socialsentiment
Sentiment Analysis application created with Python and Dash, hosted at socialsentiment.net
Stars: ✭ 402 (+70.34%)
Mutual labels:  plotly-dash
Dash Sample Apps
Open-source demos hosted on Dash Gallery
Stars: ✭ 2,090 (+785.59%)
Mutual labels:  plotly-dash
Dash
Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.
Stars: ✭ 15,592 (+6506.78%)
Mutual labels:  plotly-dash
Plotly.js
Open-source JavaScript charting library behind Plotly and Dash
Stars: ✭ 14,268 (+5945.76%)
Mutual labels:  plotly-dash
Dash Svm
Interactive SVM Explorer, using Dash and scikit-learn
Stars: ✭ 147 (-37.71%)
Mutual labels:  plotly-dash

Dash Core Components

This package provides the core React component suite for Dash.

CircleCI

Development

The dash package contains some tools to build components and drive the bundles build process. To avoid the circular dependency situation, we don't add dash as a required install in the dash-core-components setup. But, in order to do development locally, you need to install dash before everything.

  1. Install the dependencies with:
# it's recommended to install your python packages in a virtualenv
# python 2
$ pip install virtualenv --user && virtualenv venv && . venv/bin/activate
# python 3
$ python -m venv venv && . venv/bin/activate

# make sure dash is installed with dev and testing dependencies
$ pip install dash[dev,testing]  # in some shells you need \ to escape []

# run the build process
$ npm i --ignore-scripts && npm run build

# install dcc in editable mode
$ pip install -e .

Demo server

You can start up a demo development server to see a demo of the rendered components:

$ npm start

You have to maintain the list of components in demo/Demo.react.js.

Code quality and tests

To run integration tests (test_integration.py)

You can run the Selenium integration tests with the

npm test

command, and the Jest unit tests with the

npm run test-unit

Testing your components in Dash

  1. Run the build watcher by running $ npm run build:watch

  2. Run the dash layout you want to test

     # Import dash_core_components to your layout, then run it:
     $ python my_dash_layout.py
    

Uninstalling python package locally

$ npm run uninstall-local

Publishing

There's an npm script that will handle publish, provided you have the right credentials. You can run it by running

$ npm run publish-all

See the Publishing New Components/Features section of the Contributing guide for step-by-step instructions on publishing new components.

Dash Component Boilerplate

See the dash-component-boilerplate repo for more information.

Big Thanks

Cross-browser Testing Powered by image

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].