Tags custom component for Streamlit
Project description
Streamlit-tags
A custom component to have Tags in Streamlit.
Please star⭐ the repo and share the usage if you liked it.
Check out docs here: https://streamlit-tags.readthedocs.io/en/latest/
Install
PyPi
pip install streamlit-tags
The installation can also be found on PyPi
Anaconda
conda install -c gagan3012 streamlit-tags
The installation can also be found on Anaconda
Usage
This library has two main functions to display and use tags:
st_tags
to display the tags featurest_tags_sidebar
to display the tags in the sidebar
Check the examples/
folder of the project a quick start.
Check out demo here: https://share.streamlit.io/gagan3012/streamlit-tags/examples/app.py
Definition
def st_tags(label: str,
text: str,
value: list,
suggestions: list = [],
key=None) -> list:
'''
:param suggestions: (List) List of possible suggestions
:param label: (Str) Label of the Function
:param text: (Str) Instructions for entry
:param value: (List) Initial Value
:param key: (Str)
An optional string to use as the unique key for the widget.
Assign a key so the component is not remount every time the script is rerun.
:return: (List) Tags
'''
Note: the suggestion field is optional
We also have a function now to embed the tags function to the sidebar:
def st_tags_sidebar(label: str,
text: str,
value: list,
suggestions: list = [],
key=None) -> list:
'''
:param suggestions: (List) List of possible suggestions
:param label: (Str) Label of the Function
:param text: (Str) Instructions for entry
:param value: (List) Initial Value
:param key: (Str)
An optional string to use as the unique key for the widget.
Assign a key so the component is not remount every time the script is rerun.
:return: Tags
'''
Note: the suggestion field is optional
Example Usage
keywords = st_tags(label='# Enter Keywords:',
text='Press enter to add more',
value=['Zero', 'One', 'Two'],
suggestions=['five', 'six', 'seven', 'eight', 'nine', 'three', 'eleven', 'ten', 'four'],
key='1')
keyword = st_tags_sidebar(label='# Enter Keywords:',
text='Press enter to add more',
value=['Zero', 'One', 'Two'],
suggestions=['five', 'six', 'seven', 'eight', 'nine', 'three', 'eleven', 'ten', 'four'])
Sample Images:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
streamlit_tags-1.1.6.tar.gz
(559.1 kB
view details)