simple CLI program and high-level python API to interact with the second life texture cache
- output the entire texture cache in a commonly readable format
- support all platforms that support python
- be as fast as it is practical to be
- use few dependencies
- no gui, no bells and whistles
- no option to transform outputs into other formats, as i believe this is better covered by other programs
install texture-courier with pip, or if you're feeling fancy, pipx
pip install texture-courier
then, run it on the command line like
texture-courier
texture-courier will attempt to find any texture caches on the system automatically. if this does not work, find your texture cache and provide it like so
texture-courier /Users/meri/Library/Caches/Firestorm_x64/texturecache
this dumps the contents of the cache to a directory (by default, to
./texturecache
).
see texture-courier --help
for other options.
i use pip install --editable .
to install texture-courier as an editable
package, which allows the cli to be used like it was installed from pip.