readers.py 327 B

123456789101112
  1. """
  2. Compatibility shim for .resources.readers as found on Python 3.10.
  3. Consumers that can rely on Python 3.11 should use the other
  4. module directly.
  5. """
  6. from .resources.readers import (
  7. FileReader, ZipReader, MultiplexedPath, NamespaceReader,
  8. )
  9. __all__ = ['FileReader', 'ZipReader', 'MultiplexedPath', 'NamespaceReader']