Skip to content

Copy functions #217

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 25 commits into from
Jan 2, 2018
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
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
4 changes: 4 additions & 0 deletions docs/api/convenience.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ Convenience functions (``zarr.convenience``)
.. autofunction:: load
.. autofunction:: save_array
.. autofunction:: save_group
.. autofunction:: copy
.. autofunction:: copy_all
.. autofunction:: copy_store
.. autofunction:: tree
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Cython==0.27.2
docopt==0.6.2
fasteners==0.14.1
flake8==3.5.0
h5py==2.7.1
idna==2.6
mccabe==0.6.1
monotonic==1.3
Expand Down
3 changes: 2 additions & 1 deletion zarr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
from zarr.hierarchy import group, open_group, Group
from zarr.sync import ThreadSynchronizer, ProcessSynchronizer
from zarr.codecs import *
from zarr.convenience import open, save, save_array, save_group, load
from zarr.convenience import (open, save, save_array, save_group, load, copy_store,
copy, copy_all, tree)
from zarr.version import version as __version__
Loading