├── .github └── workflows │ └── pypi_action.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── pyproject.toml ├── requirements.txt ├── streamlit_app.py ├── streamlit_faker ├── __init__.py ├── chart.py ├── common.py ├── data_display.py ├── input.py ├── media.py ├── status.py └── text.py ├── tests ├── __init__.py ├── conftest.py ├── test_altex_import.py └── test_chart_provider.py └── uv.lock /.github/workflows/pypi_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/.github/workflows/pypi_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/requirements.txt -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_app.py -------------------------------------------------------------------------------- /streamlit_faker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_faker/__init__.py -------------------------------------------------------------------------------- /streamlit_faker/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_faker/chart.py -------------------------------------------------------------------------------- /streamlit_faker/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_faker/common.py -------------------------------------------------------------------------------- /streamlit_faker/data_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_faker/data_display.py -------------------------------------------------------------------------------- /streamlit_faker/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_faker/input.py -------------------------------------------------------------------------------- /streamlit_faker/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_faker/media.py -------------------------------------------------------------------------------- /streamlit_faker/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_faker/status.py -------------------------------------------------------------------------------- /streamlit_faker/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/streamlit_faker/text.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests package 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_altex_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/tests/test_altex_import.py -------------------------------------------------------------------------------- /tests/test_chart_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/tests/test_chart_provider.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaudmiribel/streamlit-faker/HEAD/uv.lock --------------------------------------------------------------------------------