Skip to main content

A simple library or gallery for Streamlit made from widgets.

Project description

Streamlit Uploads Library

Open in Streamlit

A simple uploads library and gallery for use in Streamlit projects. Check out the demo using the Streamlit Cloud button above. This package provides a simple wrapper around st.file_uploader with a save function included and also provides library and gallery views for use in Streamlit projects.

Installation

Installation is available via pip:

pip install streamlit-uploads-library

Usage

Using any of the provided views is easy, import streamlit_uploads_library and then instantiate the class with the required directory variable. Other options can be configured by passing in different variables when instantiating the class.

Library View

  • directory (required): A str() of the path to the folder containing the library images, for example, "assets".
  • file_extensions (optional): A tuple() containing strings of the file extensions to include in the library, default is (".png", ".jpg", ".jpeg").
  • image_alignment (optional): A str() with the CSS keyword used to align the images and details columns.
  • number_of_columns (optional): An int() defining the number of required columns, default is 5.
  • show_details (optional): A bool() to show or hide the file and edit details, False hides them, default is True to show them.
  • uid (optional): A str() containing a unique identifier allowing you to create multiple libraries on the same page containing the same images.
import streamlit as st
from streamlit_uploads_library.library import Library

st.set_page_config(page_title="Streamlit Uploads Library", layout="wide")
library = Library(directory="assets/landscape/")
library_columns = Library(directory="assets/portrait/", number_of_columns=4, uid="library-columns")
library_mixed = Library(directory="assets/mixed/", uid="mixed-library")

Gallery View

  • directory (required): A str() of the path to the folder containing the gallery images, for example, "assets".
  • file_extensions (optional): A tuple() containing strings of the file extensions to include in the gallery, default is (".png", ".jpg", ".jpeg").
  • image_alignment (optional): A str() with the CSS keyword used to align the images and details columns.
  • number_of_columns (optional): An int() defining the number of required columns, default is 5.
  • show_details (optional): A bool() to show or hide the file and edit details, True shows them, default is False to hide them and create a gallery.
  • uid (optional): A str() containing a unique identifier allowing you to create multiple galleries on the same page containing the same images.
import streamlit as st
from streamlit_uploads_library.gallery import Gallery

st.set_page_config(page_title="Streamlit Uploads Library", layout="wide")
default_gallery = Gallery(directory="assets/landscape/")
columns_gallery = Gallery(directory="assets/portrait/", number_of_columns=4, uid="gallery-columns")
mixed_gallery = Gallery(directory="assets/mixed/", uid="mixed-gallery")

Upload View

The file uploader comes with multiple options able to be configured including 2 different view types. It is not required to use this and you can easily replace it with your own, it is provided as a convenience so you don't need to create the code yourself or replicate it across multiple projects.

  • save_location (required): A str() of the path to the folder you wish to save images to, for example, "assets".
  • expander (optional): A bool() used to set the initial state of the expander, only used when using the "expander" widget_type.
  • file_extensions (optional): A list() containing strings of the file extensions to include in the library, default is (".png", ".jpg", ".jpeg").
  • info_msg (optional): A str() used to set an info message above the uploader, default is "Upload new files here.".
  • header (optional): A str() used to set the header of the "expander" or the header in the "container" type widget, default is "Upload Files", can be set to None to not display it.
  • uid (optional): A str() containing a unique identifier allowing you to create multiple file uploaders on the same page.
  • upload_label (optional): A str() used to set the label of the file uploader widget, default is "Upload Files", can be set to None to display an empty string instead.
  • widget_type (optional): A str() defining the type of widget to use to display the file uploader, options are "container" or "expander", default is "container".
import streamlit as st
from streamlit_uploads_library.uploads import UploadFiles

st.set_page_config(page_title="Streamlit Uploads Library", layout="wide")
default_uploader = UploadFiles(save_location="assets")
expander_uploader = UploadFiles(save_location="assets", widget_type="expander")

Caching

Streamlit Uploads Library makes use of the st.cache_resource decorator so the library and gallery on this page will load from the cache instead of reloading the images each time the app is run. You will probably want to clear your cache after uploading new files to your app, the file uploader view provided by this package takes care of that for you but if you use your own file uploader and save function then to clear the cache you can use the st.cache_resource.clear() function provided by Streamlit.

Example App (Demo)

To run the example application provided in the repository:

git clone https://github.com/hreikin/streamlit-uploads-library
cd streamlit-uploads-library/
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
streamlit run Home.py

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_uploads_library-0.1.2.tar.gz (9.1 kB view details)

Uploaded Source

Built Distribution

streamlit_uploads_library-0.1.2-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file streamlit_uploads_library-0.1.2.tar.gz.

File metadata

File hashes

Hashes for streamlit_uploads_library-0.1.2.tar.gz
Algorithm Hash digest
SHA256 932718a04add53e576a08cc05e23edb433aedaa3406b2d3c6660949240777ef1
MD5 76f01f587e1a2b2fa44198c93804e6f3
BLAKE2b-256 22f818a1893c4e45dab9bd50427599ef68558d3ed6089325c22ab69ee9f762c5

See more details on using hashes here.

File details

Details for the file streamlit_uploads_library-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_uploads_library-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d7537048909b1b4294795cb7bf10718fc1bab8de26798b395025a0397109e94b
MD5 0e6081719fd9a2f9bc0d05f7d153765c
BLAKE2b-256 55a9103cda122cb39834ab39ab3794ad649c303e5512ca2a042fa68c467fec66

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