https://github.com/m-rossi/hdf5widget
This is hdf5widget, a widget for viewing the contents of a HDF5-file in Jupyter Notebooks using ipywidgets.
https://github.com/m-rossi/hdf5widget
hdf5 ipywidgets jupyter-notebook python
Last synced: about 1 year ago
JSON representation
This is hdf5widget, a widget for viewing the contents of a HDF5-file in Jupyter Notebooks using ipywidgets.
- Host: GitHub
- URL: https://github.com/m-rossi/hdf5widget
- Owner: m-rossi
- License: mit
- Created: 2017-08-08T17:29:48.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-31T14:10:16.000Z (about 8 years ago)
- Last Synced: 2025-06-24T06:53:00.831Z (about 1 year ago)
- Topics: hdf5, ipywidgets, jupyter-notebook, python
- Language: Python
- Size: 8.79 KB
- Stars: 19
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HDF5-Widget
[](https://pypi.python.org/pypi/hdf5widget)
[](https://anaconda.org/mrossi/hdf5widget)
This is hdf5widget, a widget for viewing the contents of a [HDF5](https://support.hdfgroup.org/HDF5/)-file in [Jupyter](http://jupyter.org/) Notebooks using [ipywidgets](https://github.com/jupyter-widgets/ipywidgets).
## Install
### Installing with pip
```
pip install hdf5widget
```
### Installing with conda
```
conda install -c mrossi hdf5widget
```
## Usage
Assume you have a HDF-file `file.hdf5`.
```python
from hdf5widget import HDF5Widget
HDF5Widget('file.hdf5').widget
```