Skip to content
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

feat: 2 and 3d async chunked loading #22

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
12 changes: 6 additions & 6 deletions src/ndv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

from . import data
from .util import imshow
from .viewer._data_wrapper import DataWrapper
from .viewer._viewer import NDViewer
from .viewer2._data_wrapper import DataWrapper
from .viewer2._viewer import NDViewer

__all__ = ["NDViewer", "DataWrapper", "imshow", "data"]

Expand All @@ -23,7 +23,7 @@
# these may be used externally, but are not guaranteed to be available at runtime
# they must be used inside a TYPE_CHECKING block

from .viewer._dims_slider import DimKey as DimKey
from .viewer._dims_slider import Index as Index
from .viewer._dims_slider import Indices as Indices
from .viewer._dims_slider import Sizes as Sizes
from .viewer2._dims_slider import DimKey as DimKey
from .viewer2._dims_slider import Index as Index
from .viewer2._dims_slider import Indices as Indices
from .viewer2._dims_slider import Sizes as Sizes
Loading
Loading