-
Notifications
You must be signed in to change notification settings - Fork 8
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
Support h5py-like objects #10
Comments
I'd be open to supporting other similar interfaces with a couple of significant conditions:
If you think it's feasible to support other packages within those constraints, PRs welcome. I suspect it's probably feasible so long as they have a very similar set of features, but I don't know how similar they are. If not, you are of course welcome to reuse parts of the code to build similar tools for other purposes. |
The result is not very convenient cause it enforce dependency to third party libraries.
I will check what i can do, maybe with |
IPython's pretty-printing has a mechanism for registering classes by module name and class name, to avoid having to import them. It's a bit more work to check objects against this allowing for subclasses, but it might be something we could use here. Here's the core of the lookup code in IPython ('deferred' in this module means deferred import, i.e. referenced by name): |
Here is a proposal #11. Maybe it is close to the same as what you was thinking about. |
Hi,
I would like to know if you want to support
h5py
-like API.For example it could be used to display data from
h5pyd
,exdir
or oursilx
project.There is maybe a convenient way to check if an object is a file, a group or a dataset. Maybe a patch to apply to
h5py
. Do you have any idea?The text was updated successfully, but these errors were encountered: