Metadata-Version: 2.1
Name: dash_multipage
Version: 1.0.0
Summary: A framework to simplify some of the challenges in setting up multipage dash pages.
Home-page: https://github.com/axlan/dash-multipage
Author: Jonathan Diamond
Maintainer: Jonathan Diamond
License: MIT
Project-URL: Documentation, https://github.com/axlan/dash-multipage
Project-URL: Code, https://github.com/axlan/dash-multipage
Project-URL: Issue tracker, https://github.com/axlan/dash-multipage/issues
Description: # dash-multipage
        A framework to simplify some of the challenges in setting up multipage dash pages
        
        This can be used as is to reduce the boilerplate for a multipage app, or used as a template.
        
        The basic structure is to create an instance of dash_multipage.MultiPageDashController.
        
        This adds the layout and callbacks to the dash app passed in as an argument. It provides the
        nav buttons on top, and handles selecting the page based on the URL.
        
        It expects that the app will load Bootstrap CSS for pretty navigation tabs.
        
        Each page is an implementation of dash_multipage.ControllerBase. The implementation gives the
        link information, layout and callbacks.
        
        To handle loading a page with specific selections, the from dash_multipage.URLArgs provides
        a way to generate links with the current input, dropdown, etc. selection preserved. This is
        not required, and you can generate a multipage app without this functionality.
        
        As a minor note, there is also a set of classes that override dash's Input, Output, and State.
        These are merely a convenience wrapper to allow them to be initialized directly from the
        components.
        
        # Example
        An example app is found in example/
        
        To run with flask:
        FLASK_DEBUG=1 FLASK_APP=example/multipage_app.py:SERVER flask run
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
