Metadata-Version: 2.4
Name: pinky-streamlit
Version: 0.1.0.dev1
Summary: Reusable Streamlit in Snowflake components for the pinky suite
Project-URL: Homepage, https://github.com/pinky-and-co/pinky-streamlit
Project-URL: Repository, https://github.com/pinky-and-co/pinky-streamlit
Project-URL: Issues, https://github.com/pinky-and-co/pinky-streamlit/issues
Author: pinky-and-co
License: MIT License
        
        Copyright (c) 2026 pinky-and-co
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: dashboard,data-engineering,snowflake,streamlit,streamlit-in-snowflake
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: openpyxl
Requires-Dist: pinky-core
Requires-Dist: plotly==5.24.1
Requires-Dist: snowflake-snowpark-python
Requires-Dist: streamlit==1.52.2
Provides-Extra: dev
Requires-Dist: bandit; extra == 'dev'
Requires-Dist: mkdocs-material>=9.0; extra == 'dev'
Requires-Dist: mkdocstrings[python]>=0.25; extra == 'dev'
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Description-Content-Type: text/markdown

# pinky-streamlit

*Update date : 2026-06-04*

Reusable Streamlit in Snowflake components for the pinky suite — session, data loading, palette, UI components.

Part of the [pinky-and-co](https://github.com/pinky-and-co) suite.

## Install

```bash
pip install pinky-streamlit
```

## Quick start

```python
from pinky_streamlit import get_session, setup_page, PALETTES
from pinky_streamlit import load_analytic as sks_load_analytic

session = get_session()
messages, main, df = setup_page(
    session=session,
    loaders=[sks_load_analytic],
    palette=PALETTES.PYTHIA,
)
```

## Docs

**Explanation**

- [Design](docs/explanation/design.md)
- [Features & roadmap](docs/explanation/features.md)

**Design system**

- [Overview](docs/reference/design_system.md)
- [Palette & tokens](docs/reference/design_system_palette.md)
- [Core (session, db, page)](docs/reference/design_system_core.md)
- [UI components](docs/reference/design_system_ui.md)

**API reference**

- [Generated API docs](docs/reference/generated/api/)

**Decisions**

- [ADRs](docs/adr/)

______________________________________________________________________

MIT License
