Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/upath/__init__.py: 62%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""Pathlib API extended to use fsspec backends."""
3import sys
5try:
6 from upath._version import __version__
7except ImportError:
8 __version__ = "not-installed"
10from upath.core import UPath
12__all__ = ["UPath"]