-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathio.pyi
More file actions
35 lines (32 loc) · 878 Bytes
/
io.pyi
File metadata and controls
35 lines (32 loc) · 878 Bytes
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
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright the Vortex contributors
from ..type_aliases import IntoArrayIterator
from .arrays import Array
from .expr import Expr
from .store import ObjectStore
def read_url(
url: str,
*,
store: ObjectStore | None = None,
projection: list[str] | list[int] | None = None,
row_filter: Expr | None = None,
indices: Array | None = None,
) -> Array: ...
def write(
iter: IntoArrayIterator,
path: str,
*,
store: ObjectStore | None = None,
) -> None: ...
class VortexWriteOptions:
@staticmethod
def default() -> VortexWriteOptions: ...
@staticmethod
def compact() -> VortexWriteOptions: ...
@staticmethod
def write(
iter: IntoArrayIterator,
path: str,
*,
store: ObjectStore | None = None,
) -> VortexWriteOptions: ...