Go to file
Ethan Dalool 3ff49e1a44 Improve spinal performance with os.walk, sacrificing breadth first.
Previously, os.path.isdir was one of the biggest time sinks in spinal.
Switching from my custom code to os.walk, thanks to its use of scandir,
saves a lot of time. For searching my 2TB drive with a hot cache, time
shrank from 70s to 35s.
However, os.walk doesn't support breadth first search, so that's gone
unless I reimplement os.walk myself to support it.
2020-01-31 20:25:47 -08:00
voussoirkit Improve spinal performance with os.walk, sacrificing breadth first. 2020-01-31 20:25:47 -08:00
README.md Add the readme content into the pypi description. 2020-01-20 18:10:03 -08:00
pypi_upload.bat Update pypi upload script to use twine. 2019-08-05 17:35:53 -07:00
setup.py Bump to version 0.0.43. 2020-01-30 23:21:29 -08:00
voussoirkit_logo.svg Add voussoirkit_logo.svg. 2020-01-18 22:40:48 -08:00

README.md

voussoirkit

This is a collection of tools that I use often and import into my other projects.

Install

pip install voussoirkit