Metadata-Version: 2.1
Name: dj-plotly-dash
Version: 0.8.2
Summary: A Python framework for building reactive web-apps. Developed by Plotly.
Home-page: https://github.com/pikhovkin/dj-plotly-dash
Author: Sergei Pikhovkin
Author-email: s@pikhovkin.ru
License: MIT
Description: # dj-plotly-dash
        
        [![CircleCI](https://img.shields.io/circleci/project/github/pikhovkin/dj-plotly-dash.svg)](https://circleci.com/gh/pikhovkin/dj-plotly-dash)
        [![PyPI](https://img.shields.io/pypi/v/dj-plotly-dash.svg)](https://pypi.org/project/dj-plotly-dash/)
        ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/dj-plotly-dash.svg)
        [![framework - Django](https://img.shields.io/badge/framework-Django-0C3C26.svg)](https://www.djangoproject.com/)
        ![PyPI - Django Version](https://img.shields.io/pypi/djversions/dj-plotly-dash.svg)
        [![PyPI - License](https://img.shields.io/pypi/l/dj-plotly-dash.svg)](./LICENSE)
        
        
        #### Dash is a Python framework for building analytical web applications. No JavaScript required.
        
        It's fork of Plotly [Dash](https://github.com/plotly/dash).
        
        Here’s [a example of view of Django Dash App](https://gist.github.com/pikhovkin/6ec23d425b12b720651942fd6a5cdf13) ([original example with Flask](https://gist.github.com/chriddyp/3d2454905d8f01886d651f207e2419f0)) that ties a Dropdown to a D3.js Plotly Graph.
        As the user selects a value in the Dropdown, the application code dynamically
        exports data from Google Finance into a Pandas DataFrame.
        
        ![Sample Dash App](https://user-images.githubusercontent.com/1280389/30086128-9bb4a28e-9267-11e7-8fe4-bbac7d53f2b0.gif)
        
        Dash app code is declarative and reactive, which makes it easy to build complex apps that contain many interactive elements. Here’s an example ([original example with Flask](https://gist.github.com/chriddyp/9b2b3e8a6c67697279d3724dce5dab3c)) with 5 inputs, 3 outputs, and cross filtering. This app was composed in just 160 lines of code, all of which were Python.
        
        ![crossfiltering dash app](https://user-images.githubusercontent.com/1280389/30086123-97c58bde-9267-11e7-98a0-7f626de5199a.gif)
        
        Dash uses [Plotly.js](https://github.com/plotly/plotly.js) for charting. Over 35 chart types are supported, including maps.
        
        Dash isn't just for dashboards. You have full control over the look and feel of your applications. Here's a Dash app that's styled to look like a PDF report.
        
        To learn more about Dash, read the [extensive announcement letter](https://medium.com/@plotlygraphs/introducing-dash-5ecf7191b503) or [jump in with the user guide](https://plot.ly/dash).
        
        ### Usage
        
        See examples of usage in `tests/django_project`
        
        ### Installation
        
        ```bash
        $ pip install "dash_renderer>=0.14.1"
        $ pip install dj-plotly-dash
        $ pip install "dash_core_components>=0.35.1" --no-deps
        $ pip install "dash_html_components>=0.12.0rc3" --no-deps
        ```
        
        ### Documentation
        
        View the [Dash User Guide](https://plot.ly/dash). It's chock-full of examples, pro tips, and guiding principles.
        
        ### License
        
        MIT
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Manufacturing
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Widget Sets
Description-Content-Type: text/markdown
