fs-wrapcifs

Pyfilesystem2 wrapper for case insensitive access to a filesystem


Keywords
filesystem, Pyfilesystem2
License
MIT
Install
pip install fs-wrapcifs==0.1.0

Documentation

fs.wrapcifs

fs.wrapcifs is a PyFileSystem2 wrapper which makes path lookups case insensitive.

Supported Python versions

  • Python 3.11

Usage

>>> from fs.wrapcifs import WrapCaseInsensitive
>>> from fs.zipfs import ReadZipFS

>>> WrapCaseInsensitive(ReadZipFS('example.zip')).getinfo('abc').name == 'ABC'
....
True

License

This module is published under the MIT license.