Metadata-Version: 2.4
Name: streamlit-plugins
Version: 0.7.4
Summary: Components and Frameworks to give new features to streamlit
Home-page: https://github.com/quiradev/streamlit-plugins
Author: Victor Quilon Ranera
Author-email: v.quilonr@gmail.com
License: MIT
Keywords: streamlit,plugins,framework,components,navbar,loader,multilit
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit<2,>=1.38.0
Requires-Dist: compress-pickle>=2.1.0
Requires-Dist: bokeh>=3.1.1
Requires-Dist: validators>=0.22.0
Requires-Dist: pandas>=2.2.0
Requires-Dist: htbuilder
Requires-Dist: webcolors
Requires-Dist: pydantic
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Streamlit Plugins

Components and frameworks to extend Streamlit's capabilities with advanced features and customizations.

![Demo Multipage with Navbar](https://raw.githubusercontent.com/quiradev/streamlit-plugins/main/resources/navbar_change_theme.gif)

- `Framework` Multilit: https://plugins-framework-multilit.streamlit.app/
- `Component` Theme Changer: https://plugins-component-theme-changer.streamlit.app/
- `Component` Navbar: https://plugins-navbar.streamlit.app/

---

## Table of Contents

1. [Introduction](#introduction)
2. [Features](#features)
   - [Frameworks](#frameworks)
   - [Components](#components)
3. [Usage](#usage)
   - [Quickstart](#quickstart)
   - [Example Code](#example-code)
4. [Roadmap](#roadmap)
5. [Contributing](#contributing)
6. [License](#license)

---

## Introduction

Welcome to **Streamlit Plugins**, a collection of tools designed to enhance your Streamlit apps with features like:
- A customizable **Navbar** with multiple positioning options (including lateral mode!).
- A **Loader** for better user feedback.
- Advanced integrations like **LabelStudio** and **SnakeViz**.

---

## Features

### Frameworks

#### Multilit (Inherits from Hydralit)
This is a fork of [Hydralit](https://github.com/TangleSpace/hydralit) with updated compatibility for the latest Streamlit version.

- Improved interface and user experience.
- Respects Streamlit's active theme, with support for user overrides.
- Future plans to integrate native Streamlit multipage functionality.

**Key Features:**
- Built-in buttons or programmatic page navigation.

![Change Page with button](https://raw.githubusercontent.com/quiradev/streamlit-plugins/main/resources/demo2.gif)

---

### Components

#### Change Theme (As simple button)
> [More info](/streamlit_plugins/components/theme_changer/README.md)

![Navbar Component](https://raw.githubusercontent.com/quiradev/streamlit-plugins/main/resources/theme_changer_example.gif)

Internally it uses the underlying pills component that streamlit uses to render the real pills component. So it has even more flexibility than the native streamlit pills button, and we add some radio button capabilities to it.

#### Examples: Change Theme with Button
```python
from streamlit_plugins.components.theme_changer import st_theme_changer

st_theme_changer()
```

If you want to use more than one theme changer in your app, you will have to enable rerun comlpete application in order to update the state of buttons, this is because streamlit is not prepare to rerun other fragments, seperatlly, when the streamlit dev team enable this, we can improve the performance of the component.

> Note that if tou rerun the whole app, depending or what tasks are you doing, it can be slow, so use it with caution. We recommend set to `rerun_whole_st=True` and use only one st_theme_changer in your app.

```python
st_theme_changer(rerun_whole_st=True)

with st.sidebar:
    st_theme_changer(render_mode="pills", rerun_whole_st=True)
```

The above code only will change between the light/dark themes by default in streamlit. But here is the `game changer`, on in that case the `theme changer`, not only you can change between the defaults, YOU CAN DEFINE YOUR OWN THEMES, yes, more than 2. All the properties you can change are defined here. [Theme props](/streamlit_plugins/components/theme_changer/README.md)

![Customize Theme App](https://raw.githubusercontent.com/quiradev/streamlit-plugins/main/resources/theme_changer_customizable_small.gif)

```python
from streamlit_plugins.components.theme_changer import st_theme_changer
from streamlit_plugins.components.theme_changer.entity import ThemeInfo, ThemeInput, ThemeBaseLight, ThemeBaseDark
theme_data = dict(
    soft_light=ThemeInput(
        name="Soft Sunrise",
        icon=":material/sunny_snowing:",
        order=0,
        themeInfo=ThemeInfo(
            base=ThemeBaseLight.base,
            primaryColor="#6100FF",
            backgroundColor="#EFF4FF",
            secondaryBackgroundColor="#E7EEF5",
            textColor="#000000",
            widgetBackgroundColor="#F3F5F7",
            widgetBorderColor="#9000FF",
            skeletonBackgroundColor="#E0E0E0",
            bodyFont=ThemeBaseLight.bodyFont,
            codeFont=ThemeBaseLight.codeFont,
            fontFaces=ThemeBaseLight.fontFaces,
        )
    ),
    soft_dark=ThemeInput(
        name="Dark Midnight",
        icon=":material/nights_stay:",
        order=1,
        themeInfo=ThemeInfo(
            base=ThemeBaseDark.base,
            primaryColor="#7AF8FF",
            backgroundColor="#000000",
            secondaryBackgroundColor="#045367",
            textColor="#f0f8ff",
            widgetBackgroundColor="#092927",
            widgetBorderColor="#75D9FF",
            skeletonBackgroundColor="#365252",
            bodyFont=ThemeBaseDark.bodyFont,
            codeFont=ThemeBaseDark.codeFont,
            fontFaces=ThemeBaseDark.fontFaces,
        )
    ),
    sepia=ThemeInput(
        name="Sepia",
        icon=":material/gradient:",
        order=2,
        themeInfo=ThemeInfo(
            base=ThemeBaseLight.base,
            primaryColor="#FF0004",
            backgroundColor="#F9F9E0",
            secondaryBackgroundColor="#EFEFB4",
            textColor="#000000",
            widgetBackgroundColor="#F5F5D7",
            widgetBorderColor="#E2DEAD",
            skeletonBackgroundColor="#F5F5DC",
            bodyFont=ThemeBaseLight.bodyFont,
            codeFont=ThemeBaseLight.codeFont,
            fontFaces=ThemeBaseLight.fontFaces,
        )
    )
)
st_theme_changer(themes_data=theme_data, render_mode="init", default_init_theme_name="soft_dark")

st_theme_changer(themes_data=theme_data, rerun_whole_st=True)
with st._bottom:
   st_theme_changer(
      themes_data=theme_data, render_mode="pills",
      rerun_whole_st=True, key="first_pills"
   )

with st.sidebar:
    st_theme_changer(
        themes_data=theme_data, render_mode="pills",
        rerun_whole_st=True, key="secondary_pills"
    )
```

There is another parameter that you can customize, is a sleep parameter, because the time it costs javascript to send the message in other to change the change, maybe in some cases your javascript streamlit page is slowly and the change theme doesn't queue your request to change the theme, so you can customize this sleep in order to wait for the javascript to be ready to change the theme.

```python
# Parameter in seconds
st_theme_changer(timeout_rendering_theme_change=0.3)
```

#### Navbar (Sidebar, Topbar, and Under Streamlit Header)

> [More info](/streamlit_plugins/components/navbar/README.md)

![Navbar Component](https://raw.githubusercontent.com/quiradev/streamlit-plugins/main/resources/navbar_position_modes.gif)

A versatile navbar component with support for:
- Native Streamlit multipage apps.
- Multilit framework.
- Multiple positions: top, under, and side.

**Responsive and Customizable:**
- Adjust themes and configurations dynamically.

#### Example: Multipage App with Native Streamlit Navbar
```python
st.set_page_config(layout="wide")
# Example Sidebar
with st.sidebar:
    st.radio("Navbar Position", ["top", "under", "side"])
    st.checkbox("Sticky Navbar")
# Example Navbar Integration
from streamlit_plugins.components.navbar import st_navbar
st_navbar(
    menu_definition=[{"name": "Home", "icon": "🏠", "page": "home.py"}],
    position_mode="top"
)
```

#### Loader (Inherit from Hydralit Components)

Enhance user experience with loaders for transitions and long-running tasks.

#### AnnotatedText (Inspired by SpaCy Annotated Text)

> [More info](/streamlit_plugins/components/annotated_text/README.md)

Display annotated text inline with your app for NLP tasks.

#### LabelStudio (In Development)

> [More info](/streamlit_plugins/components/label_studio/README.md)

Adapter for integrating LabelStudio into Streamlit for NER and annotation tasks.

#### SnakeViz

Visualize and analyze bottlenecks in your Python code directly within Streamlit.

---

## Usage

### Quickstart
1. Install the package:
   ```bash
   pip install streamlit-plugins
   ```
2. Import and use components in your Streamlit app.

### Example Code
See the [examples folder](examples/) for detailed implementations and usage scenarios.

---

## Roadmap

### Framework: Multilit
- [X] Use native streamlit multipage system
- [X] Working URL navigation
- [ ] Permanent cookies session
- [ ] Access levels to different pages
- [X] Account, Settings and Login system out-of-box

### Compontent: Navbar
- [x] Add Navbar with sidebar mode.
- [x] Support for dynamic theme changes.
- [X] Add more CSS customization options.
- [X] Improve documentation and examples.
- [X] Control Race conditions between python back and frontend COI (It will be nice if streamlit supports for custom messages customizations on custom components)

### Compontent: Theme Changer
- [X] Client native theme changer
- [X] Persisten browser cache

### Compontent: LabelStudio
- [ ] Expand LabelStudio integration.

---

## Contributing

We welcome contributions! Please refer to the [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on how to get started.

---

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

---

⭐ **If you find this project useful, please consider giving it a star!**
