streamlit-image-select
πΌοΈ An image select component for Streamlit
File Explorer
- requirements.txt
- streamlit_app.py
- .DS_Store
- cat1.jpeg
- cat2.jpeg
- cat3.jpeg
- cat4.jpeg
- demo.gif
- red_sunglasses.png
- index.html
- styles.css
- index.tsx
- react-app-env.d.ts
- .env
- .prettierrc
- package-lock.json
- package.json
- tsconfig.json
- __init__.py
- .gitignore
- LICENSE
- poetry.lock
- pyproject.toml
- README.md
# Use via CDN
jsDelivrjsDelivr 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 βΌ
git clone
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 βΌ
npm install
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 βΌ
npm run
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 βΌ
npm start
This command is an alias of `npm run start`.
tldr npm run
View documentation for the original command:
pip install
View Details βΌ
pip install
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 βΌ
poetry build
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 βΌ
poetry install
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 βΌ
poetry publish
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 βΌ
poetry shell
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 βΌ
streamlit
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
-
PyPI Visit
