aboutsummaryrefslogtreecommitdiff
path: root/venv/lib/python3.8/site-packages/dash/__init__.py
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2025-07-31 17:27:24 -0400
committersotech117 <michael_foiani@brown.edu>2025-07-31 17:27:24 -0400
commit5bf22fc7e3c392c8bd44315ca2d06d7dca7d084e (patch)
tree8dacb0f195df1c0788d36dd0064f6bbaa3143ede /venv/lib/python3.8/site-packages/dash/__init__.py
parentb832d364da8c2efe09e3f75828caf73c50d01ce3 (diff)
add code for analysis of data
Diffstat (limited to 'venv/lib/python3.8/site-packages/dash/__init__.py')
-rw-r--r--venv/lib/python3.8/site-packages/dash/__init__.py93
1 files changed, 93 insertions, 0 deletions
diff --git a/venv/lib/python3.8/site-packages/dash/__init__.py b/venv/lib/python3.8/site-packages/dash/__init__.py
new file mode 100644
index 0000000..92d9e45
--- /dev/null
+++ b/venv/lib/python3.8/site-packages/dash/__init__.py
@@ -0,0 +1,93 @@
+# pylint: disable=C0413
+# __plotly_dash is for the "make sure you don't have a dash.py" check
+# must come before any other imports.
+__plotly_dash = True
+from .dependencies import ( # noqa: F401,E402
+ Input, # noqa: F401,E402
+ Output, # noqa: F401,E402,
+ State, # noqa: F401,E402
+ ClientsideFunction, # noqa: F401,E402
+ MATCH, # noqa: F401,E402
+ ALL, # noqa: F401,E402
+ ALLSMALLER, # noqa: F401,E402
+) # noqa: F401,E402
+from . import development # noqa: F401,E402
+from . import exceptions # noqa: F401,E402
+from . import resources # noqa: F401,E402
+from . import dcc # noqa: F401,E402
+from . import html # noqa: F401,E402
+from . import dash_table # noqa: F401,E402
+from .version import __version__ # noqa: F401,E402
+from ._callback_context import callback_context, set_props # noqa: F401,E402
+from ._callback import callback, clientside_callback # noqa: F401,E402
+from ._get_app import get_app # noqa: F401,E402
+from ._get_paths import ( # noqa: F401,E402
+ get_asset_url,
+ get_relative_path,
+ strip_relative_path,
+)
+from .background_callback import ( # noqa: F401,E402
+ CeleryManager,
+ DiskcacheManager,
+)
+
+
+from ._pages import register_page, PAGE_REGISTRY as page_registry # noqa: F401,E402
+from .dash import ( # noqa: F401,E402
+ Dash,
+ no_update,
+ page_container,
+)
+from ._patch import Patch # noqa: F401,E402
+from ._jupyter import jupyter_dash # noqa: F401,E402
+
+from ._hooks import hooks # noqa: F401,E402
+
+ctx = callback_context
+
+
+def _jupyter_nbextension_paths():
+ return [
+ {
+ "section": "notebook",
+ "src": "nbextension",
+ "dest": "dash",
+ "require": "dash/main",
+ }
+ ]
+
+
+__all__ = [
+ "Input",
+ "Output",
+ "State",
+ "clientside_callback",
+ "ClientsideFunction",
+ "MATCH",
+ "ALLSMALLER",
+ "ALL",
+ "development",
+ "exceptions",
+ "dcc",
+ "html",
+ "dash_table",
+ "__version__",
+ "callback_context",
+ "set_props",
+ "callback",
+ "get_app",
+ "get_asset_url",
+ "get_relative_path",
+ "strip_relative_path",
+ "CeleryManager",
+ "DiskcacheManager",
+ "register_page",
+ "page_registry",
+ "Dash",
+ "no_update",
+ "page_container",
+ "Patch",
+ "jupyter_dash",
+ "ctx",
+ "hooks",
+]