streamlit-image-select

(β˜… 124)

πŸ–ΌοΈ An image select component for Streamlit

File Explorer

ZIP Download
  • .gitignore
  • LICENSE
  • poetry.lock
  • pyproject.toml
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

πŸ”

git clone

View Details β–Ό

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

πŸ”

npm install

View Details β–Ό

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

πŸ”

npm run

View Details β–Ό

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

πŸ”

npm start

View Details β–Ό

This command is an alias of `npm run start`.

tldr npm run

View documentation for the original command:

πŸ”

pip install

View Details β–Ό

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

πŸ”

poetry build

View Details β–Ό

Build a Poetry package as a tarball and a wheel.

poetry build

Build a tarball and a wheel for the project:

poetry build {{[-f|--format]}} wheel

Build a wheel package:

poetry build {{[-f|--format]}} sdist

Build a source distribution (sdist):

πŸ”

poetry install

View Details β–Ό

Install all dependencies for a Python project as defined in the pyproject.toml file.

poetry install

Install dependencies:

poetry install --no-root

Skip installing the project itself as a dependency:

poetry install --without dev

Install only production dependencies:

πŸ”

poetry publish

View Details β–Ό

Publish a package to a remote repository.

poetry publish

Publish the current package to PyPI:

poetry publish --build

Build the package before publishing:

poetry publish {{[-r|--repository]}} {{repository_name}}

Publish to a specific repository:

πŸ”

poetry shell

View Details β–Ό

Spawn a shell within the virtual environment.
Note: The `shell` command was moved to a plugin: `poetry-plugin-shell`.

poetry shell

Spawn a shell within the virtual environment:

πŸ”

streamlit

View Details β–Ό

Framework for creating interactive, data-driven web apps in Python.

streamlit hello

Check for the Streamlit installation:

streamlit run {{project_name}}

Run a Streamlit application:

streamlit --help

Display help:

# Project Badges

// repository documentation