Skip to main content

Business Intelligence as Configuration

Project description

StreamLana

'Business Intelligence as Configuration' 🚀

Motivation

Think of Streamlit in Grafana style...

Build your BI dashboards with ease, using simple configuration files.

Streamlana Flow

Live App & Examples:

Its deployed live at https://streamlana.streamlit.app/

For the live app - refer to 'demo' branch of this repo. (refer 'streamlana_demo.py')

Lets do Hello World app

  1. Install streamlana
pip install streamlana
mkdir page_configs
touch hello_world_app.yaml
touch hello_world_app.py
touch page_configs/stats.json
touch page_configs/about.json
  1. Define your pages in hello_world_app.yaml
#hello_world_app.yaml
side_bar:
  - heading: "Hello StreamLana"
    pages:
      - name: "Stats page"
        enabled: True
        anonymous: False
        config_file_path: "page_configs/stats.json"
      - name: "About page"
        config_file_path:  "page_configs/about.json"
        enabled: True
        anonymous: False
  1. Lets define page1 layout - number of rows, the widgets in each row, Query powering the widget, widget settings.

Lets do 1 row with 2 widgets in it -> page_configs/stats.json

{
    "page_title": "Hello StreamLana",
    "page_rows": [
        {
            "widgets_width_spec": [
                0.4,0.6
            ],
            "widgets_border": true,
            "with_expander": {
                "label": "2 widgets in 1st row, 40/60% width",
                "expanded": true
            },
            "widgets_gap": "small",
            "widgets_vertical_alignment": "top",
            "widgets": [
              {
                    "type": "dataframe",
                    "widget_enabled": true,
                    "query": "SELECT avg_spend,order_date FROM (SELECT order_date, RANDOM() * 1000 AS avg_spend FROM generate_series(CURRENT_DATE - INTERVAL 30 DAY, CURRENT_DATE, INTERVAL 1 DAY) AS t(order_date)) as sub",
                    "config": {
                        "column_order": [
                            "avg_spend",
                            "order_date"
                        ]
                    }
                },
                {
                    "type": "line_chart",
                    "widget_enabled": true,
                    "query": "SELECT avg_spend,order_date FROM (SELECT order_date, RANDOM() * 1000 AS avg_spend FROM generate_series(CURRENT_DATE - INTERVAL 30 DAY, CURRENT_DATE, INTERVAL 1 DAY) AS t(order_date)) as sub",
                    "config": {
                        "x": "order_date",
                        "y": ["avg_spend"],
                        "title": "avgSpend Over Time"
                    }
                }
            ]
        }
    ]
}
  1. Lets define page2 layout - number or rows, the widgets in each row, query powering the widget, widget settings.

Lets keep this simple 1 widget and 1 row -> page_configs/about.json

{
    "page_title": "About StreamLana",
    "page_rows": [
        {
            "widgets_width_spec": [1],
            "widgets": [{"type": "title", "config": {"body": "Business Intelligence as Configuration"}}]
        }
    ]
}
  1. Few lines of code for the main app -> hello_world_app.py
# hello_world_app.py
import logging
import duckdb
from streamlana import side_bar_util
from streamlana.side_bar_util import load_side_bar_config_yaml, render_side_bar_pages

# ✅ First thing to do, set page layout of streamlit
side_bar_util.set_page_layout(layout="wide")

# logging level
logging.basicConfig(level=logging.INFO)

# ✅ Load side bar configuration from YAML file
side_bar_config = load_side_bar_config_yaml("hello_world_app.yaml")

# ✅ Create DuckDB connection (do your setup with it)
con = duckdb.connect()

# ✅ Render side bar pages based on the configuration
try:
    render_side_bar_pages(side_bar_config, con)
finally:
    # ✅ Close the DuckDB connection
    con.close()
    logging.info("DuckDB connection closed.")
  1. Run the app
streamlit run hello_world_app.py

Widget Library

Currently, we support the following widgets: (see examples with their configs in live demo)

  • st.dataframe
  • st.line_chart
  • st.area_chart
  • st.bar_chart
  • st.pie_chart
  • st.json
  • st.title
  • st.metric
  • st.text
  • st.markdown
  • st.image
  • st.map
  • st.empty
  • st.selectbox
  • st.header

Adding new widgets is easy, just add a new widget type in the chart_helpers.py.

ex: implement 'render_<chart_name>(data:pd.DataFrame, config_dict: dict)'

data comes from the duckdb sql query u configure.

The Design

  1. Streamlana supports Multipage app (based on st.navigation).
  2. We start off with the side bar configuration file, which defines the pages and their corresponding configuration files.
  3. In the sidebar configuration file, each page can be enabled or disabled, and it can have a title. Optionally it can have anonymous page id. (refer to demo)
  4. The page configuration file defines the layout of the page.
  5. The page layout is defined in terms of rows, each row can have multiple widgets + a page can have optional title.
  6. Each row has "widgets_width_spec", which is a list of widths for each widget in the row, summing up to 1.0 (100%) - similar to st.columns 'spec'.
  7. Each row can have "widgets_border" to add a border around the widgets in the row. (similar to st.columns with border)
  8. Each row can have a Expander (similar to st.expander) to group widgets together in the row, with optional label and expanded state. (Set to null if not needed)
  9. Each Row can have a gap between widgets, and vertical alignment of widgets. (similar to st.columns with gap and vertical alignment)
  10. Each row has a list of widgets.
  11. Each widget has a type, query (duckdb), and configuration. It can be enabled/disabled too.
  12. Most of the configuration parameters for a widget are the same as those provided by Streamlit. (see examples in live demo)

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

streamlana-0.1.4.tar.gz (45.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

streamlana-0.1.4-py3-none-any.whl (43.3 kB view details)

Uploaded Python 3

File details

Details for the file streamlana-0.1.4.tar.gz.

File metadata

  • Download URL: streamlana-0.1.4.tar.gz
  • Upload date:
  • Size: 45.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.13 Darwin/24.5.0

File hashes

Hashes for streamlana-0.1.4.tar.gz
Algorithm Hash digest
SHA256 43db1646e82d8a14dae3efe4e36f7a29d2aa2232e9bba9617e39d6cba4f21905
MD5 e79f7e181dea15986e0f3f005f7a8124
BLAKE2b-256 a12961ed22bb94acd6c4a14f989cdd6d3cbdba41c3e2d7dd725979cbd0599d63

See more details on using hashes here.

File details

Details for the file streamlana-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: streamlana-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 43.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.13 Darwin/24.5.0

File hashes

Hashes for streamlana-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 bd89babcf145e722e824bd4b13630049c4dd72a9e4287f4f8dfd08b8a2d2b643
MD5 bb27280d126238bb570a037219a4ae01
BLAKE2b-256 961dc664cefebd4218cfc4fd707f621f616ba363a8096ae7656623b51ae06d22

See more details on using hashes here.

Supported by

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