fs.wrapcifs
is a PyFileSystem2 wrapper which makes path lookups case insensitive.
- Python 3.11
>>> from fs.wrapcifs import WrapCaseInsensitive
>>> from fs.zipfs import ReadZipFS
>>> WrapCaseInsensitive(ReadZipFS('example.zip')).getinfo('abc').name == 'ABC'
....
True
This module is published under the MIT license.