Skip to content

WIP documentation for 2.2 release #185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Nov 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c5f0e36
tidy doc
alimanfoo Nov 14, 2017
2fd992e
tweak tutorial
alimanfoo Nov 14, 2017
a54337c
WIP storage doc
alimanfoo Nov 17, 2017
b2fc007
work on doco, move test data
alimanfoo Nov 17, 2017
76a0f2d
fix doc bugs
alimanfoo Nov 17, 2017
632b7f2
doc tweaks
alimanfoo Nov 17, 2017
23613e1
work on tutorial
alimanfoo Nov 17, 2017
7f377b0
work on storage options docs
alimanfoo Nov 17, 2017
fd56491
doc save/load
alimanfoo Nov 17, 2017
3414c62
doc edits
alimanfoo Nov 17, 2017
8278c4b
add string docs
alimanfoo Nov 18, 2017
6e3746c
reorganise headings in tutorial
alimanfoo Nov 18, 2017
07686a6
reorder attributes in tutorial
alimanfoo Nov 18, 2017
2a46e7a
fix test failures
alimanfoo Nov 18, 2017
556a672
document pickle support
alimanfoo Nov 18, 2017
8f04451
clarify position re datetime and timedelta
alimanfoo Nov 19, 2017
e3ea8e3
fix doctest failure
alimanfoo Nov 19, 2017
6cfa478
fix title#
alimanfoo Nov 19, 2017
9704d1f
use sphinx-issues
alimanfoo Nov 19, 2017
0190d7d
WIP release notes
alimanfoo Nov 19, 2017
5695ff5
wip release notes
alimanfoo Nov 19, 2017
cc16794
WIP doco
alimanfoo Nov 20, 2017
534cf72
wip release notes
alimanfoo Nov 20, 2017
397171c
release notes up to date
alimanfoo Nov 20, 2017
f088b53
doc spec changes
alimanfoo Nov 20, 2017
dddea1d
more release notes
alimanfoo Nov 20, 2017
287de00
more release notes
alimanfoo Nov 20, 2017
3ffdf29
more release notes
alimanfoo Nov 20, 2017
a2451d8
more release notes
alimanfoo Nov 20, 2017
be0a53e
use :user:
alimanfoo Nov 20, 2017
d5d89af
fix targets
alimanfoo Nov 20, 2017
5b7bdb9
doco fixes
alimanfoo Nov 20, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,13 @@ target/
# setuptools-scm
zarr/version.py

# test data
*.zarr
# emacs
*~
*.zip
example*
doesnotexist
test_sync*

# test data
#*.zarr
#*.zip
#example*
#doesnotexist
#test_sync*
data/*
1 change: 1 addition & 0 deletions data/donotdelete
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This directory is used for data files created during testing.
4 changes: 2 additions & 2 deletions docs/api/convenience.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Array creation (``zarr.convenience``)
=====================================
Convenience functions (``zarr.convenience``)
============================================
.. automodule:: zarr.convenience
.. autofunction:: open
.. autofunction:: save
Expand Down
11 changes: 7 additions & 4 deletions docs/api/storage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,20 @@ Storage (``zarr.storage``)
==========================
.. automodule:: zarr.storage

.. autofunction:: init_array
.. autofunction:: init_group

.. autoclass:: DictStore
.. autoclass:: DirectoryStore
.. autoclass:: TempStore
.. autoclass:: NestedDirectoryStore
.. autoclass:: ZipStore
.. autoclass:: DBMStore

.. automethod:: close
.. automethod:: flush

.. autoclass:: DBMStore

.. automethod:: close
.. automethod:: sync

.. autofunction:: init_array
.. autofunction:: init_group
.. autofunction:: migrate_1to2
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __getattr__(cls, name):


sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)


# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand All @@ -55,10 +55,12 @@ def __getattr__(cls, name):
'sphinx.ext.autosummary',
'sphinx.ext.viewcode',
'numpydoc',
'sphinx_issues',
]

numpydoc_show_class_members = False
numpydoc_class_members_toctree = False
issues_github_path = 'alimanfoo/zarr'

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down
24 changes: 14 additions & 10 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Highlights

* Create N-dimensional arrays with any NumPy dtype.
* Chunk arrays along any dimension.
* Compress and/or filter chunks using any numcodecs_ codec.
* Compress and/or filter chunks using any NumCodecs_ codec.
* Store arrays in memory, on disk, inside a Zip file, on S3, ...
* Read an array concurrently from multiple threads or processes.
* Write to an array concurrently from multiple threads or processes.
Expand Down Expand Up @@ -65,15 +65,19 @@ Contents
Acknowledgments
---------------

The following people have contributed to the development of Zarr, by contributing code and/or
providing ideas, feedback and advice:
The following people have contributed to the development of Zarr by contributing code,
documentation, code reviews, comments and/or ideas:

* `Francesc Alted <https://github.com/FrancescAlted>`_
* `Stephan Hoyer <https://github.com/shoyer>`_
* `John Kirkham <https://github.com/jakirkham>`_
* `Alistair Miles <https://github.com/alimanfoo>`_
* `Matthew Rocklin <https://github.com/mrocklin>`_
* `Vincent Schut <https://github.com/vincentschut>`_
* :user:`Francesc Alted <FrancescAlted>`
* :user:`Martin Durant <martindurant>`
* :user:`Stephan Hoyer <shoyer>`
* :user:`John Kirkham <jakirkham>`
* :user:`Alistair Miles <alimanfoo>`
* :user:`Mamy Ratsimbazafy <mratsim>`
* :user:`Matthew Rocklin <mrocklin>`
* :user:`Vincent Schut <vincentschut>`
* :user:`Anthony Scopatz <scopatz>`
* :user:`Prakhar Goel <newt0311>`

Zarr is inspired by `HDF5 <https://www.hdfgroup.org/HDF5/>`_, `h5py
<http://www.h5py.org/>`_ and `bcolz <http://bcolz.blosc.org/>`_.
Expand All @@ -88,4 +92,4 @@ Indices and tables
* :ref:`modindex`
* :ref:`search`

.. _numcodecs: http://numcodecs.readthedocs.io/
.. _NumCodecs: http://numcodecs.readthedocs.io/
Loading