Skip to main content

streamlit-option-menu is a simple Streamlit component that allows users to select a single item from a list of options in a menu.

Project description

streamlit-option-menu is a simple Streamlit component that allows users to select a single item from a list of options in a menu.
It is similar in function to st.selectbox(), except that:
- It uses a simple static list to display the options instead of a dropdown
- It has configurable icons for each option item and the menu title

It is built on [streamlit-component-template-vue](https://github.com/andfanilo/streamlit-component-template-vue), styled with [Bootstrap](https://getbootstrap.com/) and with icons from [bootstrap-icons](https://icons.getbootstrap.com/)

## Installation
```
pip install streamlit-option-menu
```

## Parameters
The `option_menu` function accepts the following parameters:
- menu_title (required): the title of the menu; pass None to hide the title
- options (required): list of (string) options to display in the menu; set an option to "---" if you want to insert a section separator
- default_index (optional, default=0): the index of the selected option by default
- menu_icon (optional, default="menu-up"): name of the [bootstrap-icon](https://icons.getbootstrap.com/) to be used for the menu title
- icons (optional, default=["caret-right"]): list of [bootstrap-icon](https://icons.getbootstrap.com/) names to be used for each option; its length should be equal to the length of options
- orientation (optional, default="vertical"): "vertical" or "horizontal"; whether to display the menu vertically or horizontally

The function returns the (string) option currently selected

## Example
```
import streamlit as st
from streamlit_option_menu import option_menu

with st.sidebar:
selected = option_menu("Main Menu", ["Home", 'Settings'],
icons=['house', 'gear'], menu_icon="cast", default_index=1)
selected

# horizontal Menu
selected2 = option_menu(None, ["Home", "Upload", "Tasks", 'Settings'],
icons=['house', 'cloud-upload', "list-task", 'gear'],
menu_icon="cast", default_index=0, orientation="horizontal")
selected2
```

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

streamlit_option_menu_patch-0.3.12.tar.gz (821.1 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file streamlit_option_menu_patch-0.3.12.tar.gz.

File metadata

File hashes

Hashes for streamlit_option_menu_patch-0.3.12.tar.gz
Algorithm Hash digest
SHA256 1bc211c06a44c035853c81a9f36fb9f93d6f4fdd945e5b584e803c8367eefe67
MD5 821e7ccbbe6adc32c1747d9039d801ce
BLAKE2b-256 c324ce8634bd004a8990142751cd09dbac8048531ff3724bcf22d6ebb7418202

See more details on using hashes here.

File details

Details for the file streamlit_option_menu_patch-0.3.12-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_option_menu_patch-0.3.12-py3-none-any.whl
Algorithm Hash digest
SHA256 90aecb9b8360a5ddfbf87713b626c8f3ad182e82a6176304bfd7960b1be00757
MD5 02416a1f5b05c4206aeb4dae1bff581a
BLAKE2b-256 f6ae77b6024e68220a84c92ac56ded4d35966f63d4b242d4fa94aab6ff27091d

See more details on using hashes here.

Supported by

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