
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
streamlit-simple-gallery
Advanced tools
A simple gallery for use in Streamlit projects. Check out the demo using the Streamlit Cloud button above.
Installation is available via pip:
pip install streamlit-simple-gallery
Using the gallery is simple, import streamlit_simple_gallery
and then instantiate the class with the
required directory
variable. Other options can be configured by passing in different variables
when instantiating the class.
directory
(required): A str()
of the path to the folder containing the gallery images, for example, "assets"
.expanded
(optional): A bool()
, passing False
starts the expander type gallery closed, default is open and True
.file_extensions
(optional): A tuple()
containing strings of the file extensions to include in the gallery, default is (".png", ".jpg", ".jpeg")
.gallery_type
(optional): A str()
with either "container" or "expander" used as the keyword, the default is "
container"`.label
(optional): A str()
containing the name of the gallery, passing None
disables the label. The default value is "Gallery"
.number_of_columns
(optional): An int()
defining the number of required columns, default is 5
.show_filenames
(optional): A bool()
, passing True
displays the filenames, the default is False
which hides them.import streamlit as st
from streamlit_simple_gallery import ImageGallery
st.set_page_config(page_title="Streamlit Gallery", layout="wide")
default_gallery = ImageGallery(directory="assets")
gallery_with_columns = ImageGallery(directory="assets", label="**Gallery - Columns**", number_of_columns=3)
expander_gallery = ImageGallery(directory="assets", expanded=True, gallery_type="expander", label="**Gallery - Expander**")
multiple_options_gallery = ImageGallery(directory="assets", gallery_type="expander", label="**Gallery - Multiple Options**", number_of_columns=3, show_filename=False)
To run the example application provided in the repository:
git clone https://github.com/hreikin/streamlit-simple-gallery
cd streamlit-simple-gallery/example/
python -m venv .venv
source .venv/bin/activate
pip install streamlit-simple-gallery
streamlit run Home.py
FAQs
Simple gallery for use in Streamlit projects.
We found that streamlit-simple-gallery demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.