2024-03-21 04:01:24 +01:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import os
|
2023-04-21 04:12:48 +02:00
|
|
|
from typing import Protocol
|
|
|
|
from typing import Any, Dict, Iterator, List, Optional, TypeVar, Union, overload
|
2021-05-02 23:03:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
_T = TypeVar("_T")
|
|
|
|
|
|
|
|
|
|
|
|
class PackageMetadata(Protocol):
|
2024-03-21 04:01:24 +01:00
|
|
|
def __len__(self) -> int: ... # pragma: no cover
|
2021-05-02 23:03:40 +02:00
|
|
|
|
2024-03-21 04:01:24 +01:00
|
|
|
def __contains__(self, item: str) -> bool: ... # pragma: no cover
|
2021-05-02 23:03:40 +02:00
|
|
|
|
2024-03-21 04:01:24 +01:00
|
|
|
def __getitem__(self, key: str) -> str: ... # pragma: no cover
|
2021-05-02 23:03:40 +02:00
|
|
|
|
2024-03-21 04:01:24 +01:00
|
|
|
def __iter__(self) -> Iterator[str]: ... # pragma: no cover
|
2021-05-02 23:03:40 +02:00
|
|
|
|
2023-04-21 04:12:48 +02:00
|
|
|
@overload
|
2024-03-21 04:01:24 +01:00
|
|
|
def get(
|
|
|
|
self, name: str, failobj: None = None
|
|
|
|
) -> Optional[str]: ... # pragma: no cover
|
2023-04-21 04:12:48 +02:00
|
|
|
|
|
|
|
@overload
|
2024-03-21 04:01:24 +01:00
|
|
|
def get(self, name: str, failobj: _T) -> Union[str, _T]: ... # pragma: no cover
|
2023-04-21 04:12:48 +02:00
|
|
|
|
|
|
|
# overload per python/importlib_metadata#435
|
|
|
|
@overload
|
2024-03-21 04:01:24 +01:00
|
|
|
def get_all(
|
|
|
|
self, name: str, failobj: None = None
|
|
|
|
) -> Optional[List[Any]]: ... # pragma: no cover
|
2023-04-21 04:12:48 +02:00
|
|
|
|
|
|
|
@overload
|
|
|
|
def get_all(self, name: str, failobj: _T) -> Union[List[Any], _T]:
|
2021-05-02 23:03:40 +02:00
|
|
|
"""
|
|
|
|
Return all values associated with a possibly multi-valued key.
|
|
|
|
"""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def json(self) -> Dict[str, Union[str, List[str]]]:
|
|
|
|
"""
|
|
|
|
A JSON-compatible form of the metadata.
|
|
|
|
"""
|
2021-05-26 19:40:05 +02:00
|
|
|
|
|
|
|
|
2024-03-21 04:01:24 +01:00
|
|
|
class SimplePath(Protocol):
|
2021-05-26 19:40:05 +02:00
|
|
|
"""
|
2024-03-21 04:01:24 +01:00
|
|
|
A minimal subset of pathlib.Path required by Distribution.
|
2021-05-26 19:40:05 +02:00
|
|
|
"""
|
|
|
|
|
2024-03-21 04:01:24 +01:00
|
|
|
def joinpath(
|
|
|
|
self, other: Union[str, os.PathLike[str]]
|
|
|
|
) -> SimplePath: ... # pragma: no cover
|
2021-05-26 19:40:05 +02:00
|
|
|
|
2024-03-21 04:01:24 +01:00
|
|
|
def __truediv__(
|
|
|
|
self, other: Union[str, os.PathLike[str]]
|
|
|
|
) -> SimplePath: ... # pragma: no cover
|
2021-05-26 19:40:05 +02:00
|
|
|
|
2023-04-21 04:12:48 +02:00
|
|
|
@property
|
2024-03-21 04:01:24 +01:00
|
|
|
def parent(self) -> SimplePath: ... # pragma: no cover
|
|
|
|
|
|
|
|
def read_text(self, encoding=None) -> str: ... # pragma: no cover
|
|
|
|
|
|
|
|
def read_bytes(self) -> bytes: ... # pragma: no cover
|
2021-05-26 19:40:05 +02:00
|
|
|
|
2024-03-21 04:01:24 +01:00
|
|
|
def exists(self) -> bool: ... # pragma: no cover
|