From c8c620bbfdfb3daa0c82aa769a1fb466b489c5a9 Mon Sep 17 00:00:00 2001 From: Marc Skov Madsen Date: Sun, 20 Feb 2022 17:08:19 +0100 Subject: [PATCH] Add docstring to panel module (#3177) --- panel/__init__.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/panel/__init__.py b/panel/__init__.py index 75ba51eba9..f5682cb181 100644 --- a/panel/__init__.py +++ b/panel/__init__.py @@ -1,3 +1,17 @@ +"""Panel is a high level app and dashboarding framework +==================================================== + +Panel is an open-source Python library that lets you create custom +interactive web apps and dashboards by connecting user-defined widgets +to plots, images, tables, or text. + +Panel works with the tools you know and ❤️. + +.. figure:: https://user-images.githubusercontent.com/42288570/152672367-6c239073-0ea0-4a2b-a4c0-817e8090e877.gif + :alt: Panel Dashboard + + Panel Dashboard +""" from . import layout # noqa from . import links # noqa from . import pane # noqa