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

8 statements  

1"""Pathlib API extended to use fsspec backends.""" 

2 

3import sys 

4 

5try: 

6 from upath._version import __version__ 

7except ImportError: 

8 __version__ = "not-installed" 

9 

10from upath.core import UPath 

11 

12__all__ = ["UPath"]