Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 month 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-31T14:10:16.000Z (over 6 years ago)
- Last Synced: 2024-09-30T09:26:02.068Z (about 2 months ago)
- Topics: hdf5, ipywidgets, jupyter-notebook, python
- Language: Python
- Size: 8.79 KB
- Stars: 18
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HDF5-Widget
[![PyPi Version](https://img.shields.io/pypi/v/hdf5widget.svg)](https://pypi.python.org/pypi/hdf5widget)
[![Conda Version](https://img.shields.io/conda/vn/mrossi/hdf5widget.svg)](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 HDF5WidgetHDF5Widget('file.hdf5').widget
```