1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
from __future__ import annotations
import sys
from typing import TYPE_CHECKING
from upath.core import UPath
from upath.types import JoinablePathLike
if TYPE_CHECKING:
from typing import Literal
if sys.version_info >= (3, 11):
from typing import Unpack
else:
from typing_extensions import Unpack
from upath._chain import FSSpecChainParser
from upath.types.storage_options import SFTPStorageOptions
__all__ = ["SFTPPath"]
class SFTPPath(UPath):
__slots__ = ()
if TYPE_CHECKING:
def __init__(
self,
*args: JoinablePathLike,
protocol: Literal["sftp"] | None = ...,
chain_parser: FSSpecChainParser = ...,
**storage_options: Unpack[SFTPStorageOptions],
) -> None: ...
@property
def path(self) -> str:
path = super().path
if len(path) > 1:
return path.removesuffix("/")
return path
def __str__(self) -> str:
path_str = super().__str__()
if path_str.startswith(("ssh:///", "sftp:///")):
return path_str.removesuffix("/")
return path_str
|