First Commit

This commit is contained in:
2026-05-31 10:17:09 +07:00
commit 17a9c69379
4547 changed files with 1170384 additions and 0 deletions
@@ -0,0 +1,30 @@
from _typeshed import OpenBinaryMode, OpenTextMode
from pathlib import Path
from typing import IO, Any, TypeAlias
_Mode: TypeAlias = OpenBinaryMode | OpenTextMode
###
# exported in numpy.lib.nppyio
class DataSource:
def __init__(self, /, destpath: Path | str | None = ".") -> None: ...
def __del__(self, /) -> None: ...
def abspath(self, /, path: str) -> str: ...
def exists(self, /, path: str) -> bool: ...
# Whether the file-object is opened in string or bytes mode (by default)
# depends on the file-extension of `path`
def open(self, /, path: str, mode: _Mode = "r", encoding: str | None = None, newline: str | None = None) -> IO[Any]: ...
class Repository(DataSource):
def __init__(self, /, baseurl: str, destpath: str | None = ".") -> None: ...
def listdir(self, /) -> list[str]: ...
def open(
path: str,
mode: _Mode = "r",
destpath: str | None = ".",
encoding: str | None = None,
newline: str | None = None,
) -> IO[Any]: ...