No description
Find a file
Ethan Dalool b88450b567 Add pathclass.Extension class to enrich extension operations.
I often found myself writing code like if a.extension == 'png' and
trying to remember if I'm supposed to compare against 'png' or '.png',
and then it would trip up on files like A.PNG because I forgot to
lower() it.

So this class handles all that for you. You can == against it and it
will use os.path.normcase to give you OS-appropriate case sens,
and == works whether you include the dot or not. Then you can use
ext.with_dot or ext.no_dot to get reliably dotted strings.
2020-01-27 21:33:09 -08:00
voussoirkit Add pathclass.Extension class to enrich extension operations. 2020-01-27 21:33:09 -08:00
pypi_upload.bat Update pypi upload script to use twine. 2019-08-05 17:35:53 -07:00
README.md Add the readme content into the pypi description. 2020-01-20 18:10:03 -08:00
setup.py Bump to version 0.0.42. 2020-01-20 18:10:12 -08:00
voussoirkit_logo.svg Add voussoirkit_logo.svg. 2020-01-18 22:40:48 -08:00

voussoirkit

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

Install

pip install voussoirkit