Skip to main content

A web-based dashboard to analyzing your data with Python

Project description

boardify

A web-based dashboard to analyzing your data with Python

PyPI Requirements Status

Screenshot

Installation

pip3 install boardify

Usage

from boardify import BaseDashboard, BaseBlock, BarChart


# Class for the dashboard
class FruitDashboard(BaseDashboard):
    def config(self):
        self.name = "Fruit Company"

        # Add Blocks to the dashboard
        self.add_block(Products)
        self.add_block(NicestFruit)


# Block contains HTML Code
class Products(BaseBlock):
    def config(self):
        self.name = "Products"
        self.description = "A list of our products"

    def generate(self):
        return """<ul>
        <li>Apple</li>
        <li>Orange</li>
        <li>Banana</li>
        <li>Kiwifruit</li>
        <li>Blueberry</li>
        <li>Grapes</li>
        </ul>"""


# Block renders a bar chart
class NicestFruit(BarChart):
    def config(self):
        self.name = "Nicest Fruit"
        self.description = ("A survey of 145 people asked them "
                            "\"Which is the nicest fruit?\"")

    def data(self):
        return {
            "datasets": {
                "Survey One": [35, 20, 45, 10, 30, 5],
                "Survey Two": [30, 25, 60, 5, 35, 0],
            },
            "labels": ["Apple",
                       "Orange",
                       "Banana",
                       "Kiwifruit",
                       "Blueberry",
                       "Grapes"],
            "background_color": ["rgb(128, 18, 2)",
                                 "rgb(244, 132, 0)",
                                 "rgb(246, 221, 0)",
                                 "rgba(83, 65, 25, 0.97)",
                                 "rgb(35, 123, 214)",
                                 "rgb(99, 74, 161)"]
        }


# Run the server
dashboard = FruitDashboard()
dashboard.run()

Open the dashboard at http://localhost:7000

Made with

Meta

Lucas Hild - https://lucas-hild.de
This project is licensed under the MIT License - see the LICENSE file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

boardify-0.5.1.tar.gz (4.2 kB view details)

Uploaded Source

File details

Details for the file boardify-0.5.1.tar.gz.

File metadata

  • Download URL: boardify-0.5.1.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for boardify-0.5.1.tar.gz
Algorithm Hash digest
SHA256 8ecf299d192c75aca52a65be4de05f8ef4f6989b7b385b3344c7b6d33da588ab
MD5 ea946b5efacf903639fdde9e3d5aba07
BLAKE2b-256 10a7a38fe3e47977d783954c4819c4d0ffc2885d6f2c6a1f8873d847aa4b9a23

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page