File tree Expand file tree Collapse file tree 5 files changed +10
-77
lines changed Expand file tree Collapse file tree 5 files changed +10
-77
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ coverage.xml
51
51
52
52
# Sphinx documentation
53
53
docs /_build /
54
+ docs /_autoapi /
54
55
55
56
# PyBuilder
56
57
target /
Original file line number Diff line number Diff line change 1
1
The Array class (``zarr.core ``)
2
2
===============================
3
- .. module :: zarr.core
4
3
5
- .. autoclass :: Array
6
-
7
- .. automethod :: __getitem__
8
- .. automethod :: __setitem__
9
- .. automethod :: get_basic_selection
10
- .. automethod :: set_basic_selection
11
- .. automethod :: get_mask_selection
12
- .. automethod :: set_mask_selection
13
- .. automethod :: get_block_selection
14
- .. automethod :: set_block_selection
15
- .. automethod :: get_coordinate_selection
16
- .. automethod :: set_coordinate_selection
17
- .. automethod :: get_orthogonal_selection
18
- .. automethod :: set_orthogonal_selection
19
- .. automethod :: digest
20
- .. automethod :: hexdigest
21
- .. automethod :: resize
22
- .. automethod :: append
23
- .. automethod :: view
24
- .. automethod :: astype
4
+ .. automodapi :: zarr.core
5
+ :no-heading:
Original file line number Diff line number Diff line change 42
42
"sphinx.ext.autosummary" ,
43
43
"sphinx.ext.viewcode" ,
44
44
"sphinx.ext.intersphinx" ,
45
+ "sphinx_automodapi.automodapi" ,
45
46
"numpydoc" ,
46
47
"sphinx_issues" ,
47
48
"sphinx_copybutton" ,
52
53
numpydoc_class_members_toctree = False
53
54
issues_github_path = "zarr-developers/zarr-python"
54
55
56
+ automodapi_inheritance_diagram = False
57
+ automodapi_toctreedirnm = "_autoapi"
58
+
55
59
# Add any paths that contain templates here, relative to this directory.
56
60
templates_path = ["_templates" ]
57
61
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ jupyter = [
45
45
]
46
46
docs = [
47
47
' sphinx' ,
48
+ ' sphinx-automodapi' ,
48
49
' sphinx_design' ,
49
50
' sphinx-issues' ,
50
51
' sphinx-copybutton' ,
Original file line number Diff line number Diff line change 60
60
ensure_ndarray_like ,
61
61
)
62
62
63
+ __all__ = ["Array" ]
64
+
63
65
64
66
# noinspection PyUnresolvedReferences
65
67
class Array :
@@ -110,62 +112,6 @@ class Array:
110
112
to users. Use `numpy.empty(())` by default.
111
113
112
114
.. versionadded:: 2.13
113
-
114
-
115
- Attributes
116
- ----------
117
- store
118
- path
119
- name
120
- read_only
121
- chunk_store
122
- shape
123
- chunks
124
- dtype
125
- compression
126
- compression_opts
127
- dimension_separator
128
- fill_value
129
- order
130
- synchronizer
131
- filters
132
- attrs
133
- size
134
- itemsize
135
- nbytes
136
- nbytes_stored
137
- cdata_shape
138
- nchunks
139
- nchunks_initialized
140
- is_view
141
- info
142
- vindex
143
- oindex
144
- blocks
145
- write_empty_chunks
146
- meta_array
147
-
148
- Methods
149
- -------
150
- __getitem__
151
- __setitem__
152
- get_basic_selection
153
- set_basic_selection
154
- get_orthogonal_selection
155
- set_orthogonal_selection
156
- get_mask_selection
157
- set_mask_selection
158
- get_coordinate_selection
159
- set_coordinate_selection
160
- get_block_selection
161
- set_block_selection
162
- digest
163
- hexdigest
164
- resize
165
- append
166
- view
167
- astype
168
-
169
115
"""
170
116
171
117
def __init__ (
You can’t perform that action at this time.
0 commit comments