forked from zarr-developers/zarr-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdtype.py
More file actions
87 lines (86 loc) · 1.69 KB
/
dtype.py
File metadata and controls
87 lines (86 loc) · 1.69 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
from zarr.core.dtype import (
Bool,
Complex64,
Complex128,
DataTypeValidationError,
DateTime64,
DateTime64JSON_V2,
DateTime64JSON_V3,
FixedLengthUTF32,
FixedLengthUTF32JSON_V2,
FixedLengthUTF32JSON_V3,
Float16,
Float32,
Float64,
Int8,
Int16,
Int32,
Int64,
NullTerminatedBytes,
NullterminatedBytesJSON_V2,
NullTerminatedBytesJSON_V3,
RawBytes,
RawBytesJSON_V2,
RawBytesJSON_V3,
Structured,
StructuredJSON_V2,
StructuredJSON_V3,
TimeDelta64,
TimeDelta64JSON_V2,
TimeDelta64JSON_V3,
UInt8,
UInt16,
UInt32,
UInt64,
VariableLengthBytes,
VariableLengthBytesJSON_V2,
VariableLengthUTF8,
VariableLengthUTF8JSON_V2,
ZDType,
data_type_registry,
parse_dtype,
)
__all__ = [
"Bool",
"Complex64",
"Complex128",
"DataTypeValidationError",
"DateTime64",
"DateTime64JSON_V2",
"DateTime64JSON_V3",
"FixedLengthUTF32",
"FixedLengthUTF32JSON_V2",
"FixedLengthUTF32JSON_V3",
"Float16",
"Float32",
"Float64",
"Int8",
"Int16",
"Int32",
"Int64",
"NullTerminatedBytes",
"NullTerminatedBytesJSON_V3",
"NullterminatedBytesJSON_V2",
"RawBytes",
"RawBytesJSON_V2",
"RawBytesJSON_V3",
"Structured",
"StructuredJSON_V2",
"StructuredJSON_V3",
"TimeDelta64",
"TimeDelta64",
"TimeDelta64JSON_V2",
"TimeDelta64JSON_V3",
"UInt8",
"UInt16",
"UInt32",
"UInt64",
"VariableLengthBytes",
"VariableLengthBytesJSON_V2",
"VariableLengthUTF8",
"VariableLengthUTF8JSON_V2",
"ZDType",
"data_type_registry",
"data_type_registry",
"parse_dtype",
]