├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── improvement.yml │ └── other.yml └── workflows │ ├── linting.yml │ ├── publish_docs.yml │ ├── pypi_action.yml │ └── testing.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── assets │ └── logo.png ├── components.md ├── contributing.md ├── generate.py ├── getting_started.md ├── index.md └── requirements.txt ├── gallery ├── kitty.jpeg ├── requirements.txt └── streamlit_app.py ├── mkdocs.yml ├── netlify.toml ├── overrides ├── custom.css └── main.html ├── pyproject.toml ├── runtime.txt ├── src └── streamlit_extras │ ├── __init__.py │ ├── add_vertical_space │ └── __init__.py │ ├── altex │ └── __init__.py │ ├── annotated_text │ └── __init__.py │ ├── app_logo │ └── __init__.py │ ├── avatar │ └── __init__.py │ ├── badges │ └── __init__.py │ ├── bottom_container │ └── __init__.py │ ├── button_selector │ └── __init__.py │ ├── buy_me_a_coffee │ └── __init__.py │ ├── camera_input_live │ └── __init__.py │ ├── capture │ └── __init__.py │ ├── card │ └── __init__.py │ ├── chart_annotations │ └── __init__.py │ ├── chart_container │ └── __init__.py │ ├── colored_header │ └── __init__.py │ ├── concurrency_limiter │ └── __init__.py │ ├── customize_running │ └── __init__.py │ ├── dataframe_explorer │ └── __init__.py │ ├── echo_expander │ └── __init__.py │ ├── embed_code │ └── __init__.py │ ├── exception_handler │ └── __init__.py │ ├── faker │ └── __init__.py │ ├── floating_button │ └── __init__.py │ ├── function_explorer │ └── __init__.py │ ├── great_tables │ └── __init__.py │ ├── grid │ └── __init__.py │ ├── image_coordinates │ └── __init__.py │ ├── image_in_tables │ └── __init__.py │ ├── image_selector │ └── __init__.py │ ├── jupyterlite │ └── __init__.py │ ├── keyboard_text │ └── __init__.py │ ├── keyboard_url │ └── __init__.py │ ├── let_it_rain │ └── __init__.py │ ├── mandatory_date_range │ └── __init__.py │ ├── markdownlit │ └── __init__.py │ ├── mention │ └── __init__.py │ ├── metric_cards │ └── __init__.py │ ├── no_default_selectbox │ └── __init__.py │ ├── pdf_viewer │ └── __init__.py │ ├── prometheus │ ├── __init__.py │ └── example │ │ ├── README.md │ │ ├── app.py │ │ └── metrics.py │ ├── row │ └── __init__.py │ ├── sandbox │ └── __init__.py │ ├── skeleton │ └── __init__.py │ ├── snowflake │ ├── __init__.py │ └── connection.py │ ├── st_keyup │ └── __init__.py │ ├── star_rating │ └── __init__.py │ ├── stateful_button │ └── __init__.py │ ├── stateful_chat │ └── __init__.py │ ├── stodo │ └── __init__.py │ ├── stoggle │ └── __init__.py │ ├── streaming_write │ └── __init__.py │ ├── streamlit_notify │ └── __init__.py │ ├── stylable_container │ └── __init__.py │ ├── switch_page_button │ └── __init__.py │ ├── tags │ └── __init__.py │ ├── theme │ └── __init__.py │ ├── toggle_switch │ └── __init__.py │ ├── version.py │ ├── vertical_slider │ └── __init__.py │ └── word_importances │ └── __init__.py ├── tests ├── __init__.py ├── test_extras.py └── test_no_default_selectbox.py └── uv.lock /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.github/ISSUE_TEMPLATE/improvement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.github/ISSUE_TEMPLATE/other.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.github/workflows/publish_docs.yml -------------------------------------------------------------------------------- /.github/workflows/pypi_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.github/workflows/pypi_action.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/docs/components.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/docs/generate.py -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- 1 | As easy as... 2 | 3 | ``` 4 | pip install streamlit-extras 5 | ``` -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /gallery/kitty.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/gallery/kitty.jpeg -------------------------------------------------------------------------------- /gallery/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/gallery/requirements.txt -------------------------------------------------------------------------------- /gallery/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/gallery/streamlit_app.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/netlify.toml -------------------------------------------------------------------------------- /overrides/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/overrides/custom.css -------------------------------------------------------------------------------- /overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/overrides/main.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /src/streamlit_extras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/add_vertical_space/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/add_vertical_space/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/altex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/altex/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/annotated_text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/annotated_text/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/app_logo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/app_logo/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/avatar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/avatar/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/badges/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/badges/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/bottom_container/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/bottom_container/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/button_selector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/button_selector/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/buy_me_a_coffee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/buy_me_a_coffee/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/camera_input_live/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/camera_input_live/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/capture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/capture/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/card/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/card/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/chart_annotations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/chart_annotations/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/chart_container/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/chart_container/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/colored_header/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/colored_header/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/concurrency_limiter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/concurrency_limiter/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/customize_running/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/customize_running/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/dataframe_explorer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/dataframe_explorer/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/echo_expander/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/echo_expander/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/embed_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/embed_code/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/exception_handler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/exception_handler/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/faker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/faker/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/floating_button/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/floating_button/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/function_explorer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/function_explorer/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/great_tables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/great_tables/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/grid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/grid/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/image_coordinates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/image_coordinates/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/image_in_tables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/image_in_tables/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/image_selector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/image_selector/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/jupyterlite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/jupyterlite/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/keyboard_text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/keyboard_text/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/keyboard_url/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/keyboard_url/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/let_it_rain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/let_it_rain/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/mandatory_date_range/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/mandatory_date_range/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/markdownlit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/markdownlit/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/mention/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/mention/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/metric_cards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/metric_cards/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/no_default_selectbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/no_default_selectbox/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/pdf_viewer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/pdf_viewer/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/prometheus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/prometheus/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/prometheus/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/prometheus/example/README.md -------------------------------------------------------------------------------- /src/streamlit_extras/prometheus/example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/prometheus/example/app.py -------------------------------------------------------------------------------- /src/streamlit_extras/prometheus/example/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/prometheus/example/metrics.py -------------------------------------------------------------------------------- /src/streamlit_extras/row/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/row/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/sandbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/sandbox/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/skeleton/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/skeleton/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/snowflake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/snowflake/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/snowflake/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/snowflake/connection.py -------------------------------------------------------------------------------- /src/streamlit_extras/st_keyup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/st_keyup/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/star_rating/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/star_rating/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/stateful_button/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/stateful_button/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/stateful_chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/stateful_chat/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/stodo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/stodo/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/stoggle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/stoggle/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/streaming_write/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/streaming_write/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/streamlit_notify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/streamlit_notify/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/stylable_container/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/stylable_container/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/switch_page_button/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/switch_page_button/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/tags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/tags/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/theme/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/toggle_switch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/toggle_switch/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/version.py -------------------------------------------------------------------------------- /src/streamlit_extras/vertical_slider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/vertical_slider/__init__.py -------------------------------------------------------------------------------- /src/streamlit_extras/word_importances/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/src/streamlit_extras/word_importances/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/tests/test_extras.py -------------------------------------------------------------------------------- /tests/test_no_default_selectbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/tests/test_no_default_selectbox.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-extras/HEAD/uv.lock --------------------------------------------------------------------------------