__init__.py 217 B

123456789101112
  1. """Pathlib API extended to use fsspec backends."""
  2. import sys
  3. try:
  4. from upath._version import __version__
  5. except ImportError:
  6. __version__ = "not-installed"
  7. from upath.core import UPath
  8. __all__ = ["UPath"]