Hey,

You should be able to inspect your `h5py.File` object in an interactive
shell to learn more about it. Just open up `python` ( or `ipython` ) and
start playing around. Here's an example of how I inspected an hdf5 file's
structure:

```python
    import hdf5
    f = hdf5.File("test.hdf5", "r")
    dir(f)
    vars(f)
    list(f.keys())
    help(f.visit)
    f.visit(print)
```

Best,
 - Martin

-- 
You received this message because you are subscribed to the Google Groups 
"pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyqtgraph/CAD_p8v2cpHq37UDHtrxfFnR4V6trnw8NN8ia1G7VjwrGyEC8fQ%40mail.gmail.com.

Reply via email to