Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.64 KB

README.md

File metadata and controls

54 lines (40 loc) · 1.64 KB

django-dash-plotly

The purpose of django-plotly-dash is to enable Plotly Dash applications to be served up as part of a Django application, in order to provide these features:

  1. Multiple dash applications can be used on a single page
  2. Separate instances of a dash application can persist along with internal state
  3. Leverage user management and access control and other parts of the Django infrastructure
  4. Consolidate into a single server process to simplify scaling

Installing

  1. Install Python
https://www.python.org/downloads/
  1. Install Django
pip install django
  1. Install Plotly
pip install plotly
  1. Install Django Potly Dash
pip install django_plotly_dash
  1. Install channels daphne redis django-redis channels-redis
pip install channels daphne redis django-redis channels-redis

Deployment

Run this code on local host using 127.0.0.1:8000

Built With

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

  • Thank you Creators of Django Dash Plotly for an integration library for python data visualization using Django and Plotly.