├── .coveragerc ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.rst ├── docs ├── _static │ └── css │ │ └── theme_overrides.css ├── api.rst ├── conf.py ├── index.rst ├── license.rst ├── requirements.txt └── versions.rst ├── flake.lock ├── flake.nix ├── setup.py ├── tests └── test_vsutil.py └── vsutil ├── __init__.py ├── _metadata.py ├── clips.py ├── func.py ├── info.py ├── py.typed └── types.py /.coveragerc: -------------------------------------------------------------------------------- 1 | 2 | [run] 3 | include = 4 | vsutil.py 5 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/README.rst -------------------------------------------------------------------------------- /docs/_static/css/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/docs/_static/css/theme_overrides.css -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/docs/versions.rst -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/flake.nix -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_vsutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/tests/test_vsutil.py -------------------------------------------------------------------------------- /vsutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/vsutil/__init__.py -------------------------------------------------------------------------------- /vsutil/_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/vsutil/_metadata.py -------------------------------------------------------------------------------- /vsutil/clips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/vsutil/clips.py -------------------------------------------------------------------------------- /vsutil/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/vsutil/func.py -------------------------------------------------------------------------------- /vsutil/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/vsutil/info.py -------------------------------------------------------------------------------- /vsutil/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vsutil/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irrational-Encoding-Wizardry/vsutil/HEAD/vsutil/types.py --------------------------------------------------------------------------------