├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── demo.py ├── examples ├── kmeans.py ├── linear-demo.py └── pca-demo.py ├── img.png ├── pyproject.toml ├── tests ├── conftest.py ├── rich-fail.py ├── rich-script.py ├── some_script.py ├── test_basics.py └── test_examples.py ├── uv.lock └── uvtrick └── __init__.py /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/demo.py -------------------------------------------------------------------------------- /examples/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/examples/kmeans.py -------------------------------------------------------------------------------- /examples/linear-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/examples/linear-demo.py -------------------------------------------------------------------------------- /examples/pca-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/examples/pca-demo.py -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/img.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/rich-fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/tests/rich-fail.py -------------------------------------------------------------------------------- /tests/rich-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/tests/rich-script.py -------------------------------------------------------------------------------- /tests/some_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/tests/some_script.py -------------------------------------------------------------------------------- /tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/tests/test_basics.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/uv.lock -------------------------------------------------------------------------------- /uvtrick/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koaning/uvtrick/HEAD/uvtrick/__init__.py --------------------------------------------------------------------------------